main.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. @charset "utf-8";
  2. [class^="iconfont-"], [class*=" iconfont-"] {
  3. /* use !important to prevent issues with browser extensions that change fonts */
  4. font-family: 'iconfont' !important;
  5. speak: none;
  6. font-style: normal;
  7. font-weight: normal;
  8. font-variant: normal;
  9. text-transform: none;
  10. line-height: 1;
  11. /* Better Font Rendering =========== */
  12. -webkit-font-smoothing: antialiased;
  13. -moz-osx-font-smoothing: grayscale;
  14. }
  15. @media (min-width: 680px){
  16. .modal-content {
  17. top: 0;
  18. right: 0;
  19. bottom: 0;
  20. left: 0;
  21. height: 100%;
  22. width: 100%;
  23. max-width: 20.5rem;
  24. margin:0 auto;
  25. /*height:100%;*/
  26. }
  27. }
  28. .mod-body {
  29. padding-top:0;
  30. padding-bottom:0;
  31. -webkit-filter: blur(0px);
  32. -webkit-transition: all .3s ease .2s;
  33. }
  34. .mod-body.blur {
  35. -webkit-filter: blur(3px);
  36. -webkit-transition: all .3s ease;
  37. }
  38. .topBanner{
  39. height: 5.6rem;
  40. width: 100%;
  41. overflow: hidden;
  42. position: relative;
  43. background: -webkit-linear-gradient(left, #26bfff, #0374ff); /* Safari 5.1 - 6.0 */
  44. background: -o-linear-gradient(right, #26bfff, #0374ff); /* Opera 11.1 - 12.0 */
  45. background: -moz-linear-gradient(right, #26bfff, #0374ff); /* Firefox 3.6 - 15 */
  46. background: linear-gradient(to right, #26bfff, #0374ff); /* 标准的语法 */
  47. }
  48. .topBanner .leftInfos>h3>.taps {
  49. position: absolute;
  50. font-size: .2133rem;
  51. color: #d47800;
  52. text-align: center;
  53. width: 1.5rem;
  54. line-height: .56rem;
  55. height: .7rem;
  56. background: url("../img/topTapsBg.png") left top no-repeat;
  57. background-size: 100% 100%;
  58. top: -.2rem;
  59. right: .4rem;
  60. }
  61. .topBanner .rightImgs{
  62. width: 9.33rem;
  63. position: absolute;
  64. right: 0rem;
  65. top: 2.267rem;
  66. background: url(../img/bannerPhone.png) left bottom no-repeat;
  67. height: 100%;
  68. background-size: 100%;
  69. z-index: 1;
  70. }
  71. .topBanner .rightImgs >em{
  72. width: 100%;
  73. }
  74. .topBanner .leftInfos{
  75. position: absolute;
  76. top: 1.147rem;
  77. left: .853rem;
  78. z-index:99;
  79. }
  80. .topBanner .leftInfos>h3{
  81. font-size: .57rem;
  82. color: #fff;
  83. font-weight: normal;
  84. margin: 0px;
  85. padding: 0px;
  86. position: relative;
  87. }
  88. .topBanner .leftInfos>p{
  89. font-size: .4rem;
  90. color: #fff;
  91. }
  92. .topBanner .leftInfos>p>span{
  93. margin-left: 0;
  94. position: relative;
  95. top: 10px;
  96. font-size: 14px;
  97. margin-right: 10px;
  98. }
  99. .topBanner .leftInfos>a{
  100. display: block;
  101. line-height: 0.854rem;
  102. font-size: .373rem;
  103. width: 2.133rem;
  104. border-radius: 0.854rem;
  105. border: 1px solid #fff;
  106. color: #fff;
  107. text-align: center;
  108. margin-top: .32rem;
  109. }
  110. .estensionAll{
  111. background: #fff;
  112. padding-top: 1rem;
  113. padding-bottom: 1.067rem;
  114. z-index: 5;
  115. position: relative;
  116. }
  117. .estensionAll h3{
  118. color: #1dacff;
  119. font-size: .56rem;
  120. font-weight: normal;
  121. text-align: center;
  122. }
  123. .estensionAll p{
  124. font-size: .32rem;
  125. color: #666;
  126. line-height: .48rem;
  127. width: 6.67rem;
  128. margin: 0 auto;
  129. margin-top: .53rem;
  130. text-align: center;
  131. }
  132. .estensionAll .underImgs{
  133. width: 5.6rem;
  134. margin: 0 auto;
  135. margin-top: .933rem;
  136. }
  137. .estensionAll .underImgs>img{
  138. width: 100%;
  139. }
  140. .underMiniBanner{
  141. height: 3.7rem;
  142. width: 100%;
  143. background: -webkit-linear-gradient(left, #26bfff, #0374ff); /* Safari 5.1 - 6.0 */
  144. background: -o-linear-gradient(right, #26bfff, #0374ff); /* Opera 11.1 - 12.0 */
  145. background: -moz-linear-gradient(right, #26bfff, #0374ff); /* Firefox 3.6 - 15 */
  146. background: linear-gradient(to right, #26bfff, #0374ff); /* 标准的语法 */
  147. text-align: center;
  148. padding-top: .9rem;
  149. }
  150. .underMiniBanner h3{
  151. text-align: center;
  152. font-weight: normal;
  153. color: #fff;
  154. font-size: .48rem;
  155. }
  156. .underMiniBanner h3>span{
  157. margin-left: .8rem;
  158. }
  159. .underMiniBanner>a{
  160. display: block;
  161. width: 2.4rem;
  162. margin: 0 auto;
  163. height: .853rem;
  164. line-height: .85rem;
  165. border-radius: .853rem;
  166. background: rgba(255,255,255,.1);
  167. color: #fff;
  168. font-size: .373rem;
  169. border: .0133rem solid #fff;
  170. margin-top: .4rem;
  171. }
  172. .saleAll{
  173. padding-top: 1.5rem;
  174. }
  175. .topBanner .underWave {
  176. width: 100%;
  177. height: .467rem;
  178. background: url('../img/wave.png') left top no-repeat;
  179. background-size: 100% 100%;
  180. position: absolute;
  181. bottom: 0rem;
  182. left: 0rem;
  183. z-index: 2;
  184. }
  185. .backdrop {
  186. position: fixed;
  187. left: 0;
  188. top: 0;
  189. width: 100%;
  190. height: 100%;
  191. z-index: 1000;
  192. background: rgba(0, 0, 0, .8);
  193. display: none;
  194. }
  195. /*任务大厅相关*/
  196. .celerityButton{
  197. z-index: 5;
  198. position: absolute;
  199. bottom: 20px;
  200. right: 10px;
  201. width: 50px;
  202. height: 50px;
  203. }
  204. .celerityButton span{
  205. display:inline-block;
  206. text-align: center;
  207. height:100%;
  208. width: 100%;
  209. background-color: #3B8BD0;
  210. color:white;
  211. border-radius: 50%;
  212. box-shadow: 2px 3px 9px 1px rgba(216, 216, 216, 1);
  213. font-size: 14px;
  214. line-height: 50px;
  215. font-weight:bold;
  216. }
  217. .homepage-button{
  218. bottom:60px !important;
  219. }
  220. .task-holl-title{
  221. background-color: #5BABE6;
  222. max-width: 20.5rem;
  223. margin:0 auto;
  224. display:flex;
  225. color: #fff;
  226. justify-content: space-around;
  227. font-size: 16px;
  228. padding:20px 10px 10px;
  229. }
  230. .task-holl-titles{
  231. max-width: 20.5rem;
  232. margin:0 auto;
  233. display:flex;
  234. justify-content: space-around;
  235. font-size: 16px;
  236. background: #f0f0f0;
  237. cursor: pointer;
  238. /*box-shadow: 0 1px 3px #1DACE3;*/
  239. color: #2b2b2b;
  240. height: 35px
  241. }
  242. .taskholl-actives{
  243. border-bottom: 3px solid #3B8BD0;
  244. color:#3B8BD0 ;
  245. }
  246. .task-holl-title li{
  247. padding:5px 10px;
  248. cursor: pointer;
  249. }
  250. .taskholl-active{
  251. border-bottom: 3px solid #fff;
  252. }
  253. .task-android-header1{
  254. top:120px;
  255. }
  256. .task-android-header{
  257. top:155px;
  258. }
  259. .task-ios-header{
  260. top:175px;
  261. }
  262. .task-block,.swiper-slide .task-block{
  263. width: 95%;
  264. line-height: 20px;
  265. border-radius: 10px 10px 10px 10px;
  266. /*text-align: center;*/
  267. box-shadow: 2px 2px 6px 2px rgba(241, 241, 241, 1);
  268. border: 1px solid rgba(255, 255, 255, 0);
  269. margin:15px auto 0;
  270. display:flex;
  271. flex-direction:column;
  272. justify-content: space-around;
  273. padding:5px 10px;
  274. position:relative;
  275. }
  276. .task-block1,.swiper-slide .task-block1{
  277. width: 95%;
  278. height: 180px;
  279. line-height: 20px;
  280. border-radius: 10px 10px 10px 10px;
  281. /*text-align: center;*/
  282. box-shadow: 2px 2px 6px 2px rgba(241, 241, 241, 1);
  283. border: 1px solid rgba(255, 255, 255, 0);
  284. margin:15px auto 0;
  285. display:flex;
  286. flex-direction:column;
  287. justify-content: space-around;
  288. padding:5px 10px;
  289. position:relative;
  290. overflow: hidden;
  291. }
  292. .task-block2,.swiper-slide .task-block2{
  293. width: 95%;
  294. height: 100px;
  295. line-height: 20px;
  296. border-radius: 10px 10px 10px 10px;
  297. /*text-align: center;*/
  298. box-shadow: 2px 2px 6px 2px rgba(241, 241, 241, 1);
  299. border: 1px solid rgba(255, 255, 255, 0);
  300. margin:15px auto 0;
  301. display:flex;
  302. flex-direction:column;
  303. justify-content: space-around;
  304. padding:5px 10px;
  305. position:relative;
  306. overflow: hidden;
  307. }
  308. .task-block-notice,.swiper-slide .task-block-notice{
  309. width: 95%;
  310. line-height: 20px;
  311. border-radius: 10px 10px 10px 10px;
  312. /*text-align: center;*/
  313. box-shadow: 2px 2px 6px 2px rgba(241, 241, 241, 1);
  314. border: 1px solid rgba(255, 255, 255, 0);
  315. margin:15px auto 0;
  316. display:flex;
  317. flex-direction:column;
  318. padding:5px 10px;
  319. position:relative;
  320. overflow: hidden;
  321. }
  322. .interview-block{
  323. height: 140px !important;
  324. }
  325. .typein-block{
  326. height: 105px !important;
  327. }
  328. .task-abstract,.task-block-title{
  329. height:40px;
  330. line-height:20px;
  331. word-break:break-all;
  332. overflow:hidden;
  333. margin-bottom:5px;
  334. }
  335. .task-abstract{
  336. overflow: hidden;
  337. text-overflow: ellipsis;
  338. /* white-space: nowrap; */
  339. text-overflow: -o-ellipsis-lastline;
  340. text-overflow: ellipsis;
  341. display: -webkit-box;
  342. -webkit-line-clamp: 2;
  343. line-clamp: 2;
  344. -webkit-box-orient: vertical;
  345. }
  346. .task-block-title{
  347. display: flex;
  348. }
  349. .task-block-title>span{
  350. overflow:hidden;
  351. text-overflow:ellipsis;
  352. white-space: nowrap;
  353. }
  354. .task-block-title>img{
  355. width: 35px;
  356. height: 35px;
  357. border-radius: 50%;
  358. vertical-align: middle;
  359. margin-right:10px;
  360. }
  361. .task-block-bottom{
  362. border-top:1px solid #eee;
  363. display:flex;
  364. justify-content: space-between;
  365. padding-top:5px;
  366. }
  367. .task-block-bottom>i{
  368. font-size:16px;
  369. }
  370. .task-abstract-width{
  371. max-width:80%;
  372. }
  373. .swiper-container-newest-task .swiper-wrapper{
  374. /*padding:10px;*/
  375. /*display:flex;*/
  376. }
  377. .swiper-slide .task-block{
  378. height: 190px;
  379. width: 180px;
  380. cursor:pointer;
  381. }
  382. .swiper-container-newest-task{
  383. width:100%;
  384. height:260px;
  385. }
  386. .task-publisher{
  387. display:flex;
  388. align-items: center;
  389. }
  390. .task-block-photo{
  391. width: 30px !important;
  392. height:30px !important;
  393. border-radius:50%;
  394. overflow: hidden;
  395. margin-right:10px;
  396. }
  397. .task-block-photo>img{
  398. width:30px;
  399. }
  400. .new-task-block-photo{
  401. width: 30px !important;
  402. height:30px !important;
  403. border-radius:50%;
  404. overflow: hidden;
  405. margin-right:10px;
  406. float: left;
  407. }
  408. .task-block-label,.task-block-label-lishui{
  409. display:flex;
  410. flex-wrap: wrap;
  411. align-items: center;
  412. font-size: 12px;
  413. }
  414. .task-block-label-pr{
  415. /*transform: translateY(-20px);*/
  416. }
  417. .task-block-label-lishui>li{
  418. border-right: 2px solid #b1b1b1;
  419. padding: 0 5px;
  420. }
  421. .task-block-label-lishui>li:last-child{
  422. border: none;
  423. }
  424. .task-block-label1{
  425. flex-wrap: wrap;
  426. }
  427. .scroll-label{
  428. width:100%;
  429. margin-top:5px;
  430. /*height:25px;*/
  431. }
  432. .scroll-label span{
  433. display:inline-block;
  434. }
  435. .scroll-label .scroll{
  436. white-space: nowrap;
  437. /*text-align: center;*/
  438. }
  439. /*.task-block-label>li:last-child{*/
  440. /* border:none;*/
  441. /* color:#5babe6;*/
  442. /*}*/
  443. .task-block-label>li,.status-label,.scroll-label span{
  444. margin-right:10px;
  445. margin-bottom:5px;
  446. padding:0.08rem 0.2rem;
  447. border-radius: 8px;
  448. font-size:0.3rem;
  449. color: #868686;
  450. background: #EDF4FB;
  451. }
  452. .status-label{
  453. border:1px solid #FBCF7E;
  454. color:#FBCF7E;
  455. position:absolute ;
  456. top:0;
  457. left:0;
  458. }
  459. .task-block-label>li{
  460. color: #8b8a8a;
  461. background: #e6f4f5
  462. }
  463. /*.task-block-label>li:nth-child(1n),.scroll-label span:nth-child(1n){*/
  464. /* border:1px solid #7C81FB;*/
  465. /* color:#7C81FB;*/
  466. /*}*/
  467. /*.task-block-label1>li:nth-child(1n),.scroll-label span:nth-child(1n){*/
  468. /* border:1px solid #7C81FB;*/
  469. /* color:#8EB0FB;*/
  470. /*}*/
  471. /*.task-block-label>li:nth-child(2n),.scroll-label span:nth-child(2n){*/
  472. /* border:1px solid #8EB0FB;*/
  473. /* color:#8EB0FB;*/
  474. /*}*/
  475. /*.task-block-label1>li:nth-child(2n),.scroll-label span:nth-child(2n){*/
  476. /* border:1px solid #8EB0FB;*/
  477. /* color:#8EB0FB;*/
  478. /*}*/
  479. .task-block-title{
  480. font-size:16px;
  481. font-weight:bold;
  482. max-width:80%;
  483. height:20px;
  484. }
  485. .task-block-abstract{
  486. height:40px;
  487. line-height:20px;
  488. overflow: hidden;
  489. text-overflow:ellipsis;
  490. /*white-space:nowrap*/
  491. text-overflow: -o-ellipsis-lastline;
  492. text-overflow: ellipsis;
  493. display: -webkit-box;
  494. -webkit-line-clamp: 2;
  495. line-clamp: 2;
  496. -webkit-box-orient: vertical;
  497. }
  498. .task-block-gray{
  499. color:#999;
  500. }
  501. .task-block-orange{
  502. color:#FB9A6A;
  503. }
  504. .task-status{
  505. position:absolute;
  506. right:10px;
  507. top:10px;
  508. }
  509. .task-status>div:nth-child(1){
  510. padding:0 16px;
  511. border-radius: 5px;
  512. margin-bottom:5px;
  513. }
  514. .task-status-color1{
  515. border:1px solid #FAB37F;
  516. color:#FAB37F;
  517. }
  518. .task-status-color2{
  519. border:1px solid #9AA2E5;
  520. color:#9AA2E5;
  521. }
  522. .task-status-color3{
  523. border:1px solid #9C9FAA;
  524. color:#9C9FAA;
  525. }
  526. .task-evaluate,.task-interview{
  527. position: absolute;
  528. right: 10px;
  529. bottom:40px;
  530. padding:2px 8px;
  531. border-radius: 5px;
  532. color:#fff;
  533. background-color: #3B8BD0;
  534. cursor:pointer;
  535. /*font-size:14px;*/
  536. }
  537. .task-award{
  538. top:10px;
  539. bottom:auto;
  540. background-color:#B0E0FE;
  541. }
  542. .task-finish{
  543. bottom:70px;
  544. }
  545. .task-interview{
  546. bottom:10px !important;
  547. }
  548. .task-evaluate:hover{
  549. background-color:#1b9bff;
  550. }
  551. /*认证相关*/
  552. .pswp_button_arrow{
  553. text-shadow:0 0 5px red !important;
  554. background: none;
  555. font-size:30px;
  556. color:white;
  557. }
  558. .form-box{
  559. margin-bottom:20px;
  560. /*padding:0 10px;*/
  561. }
  562. .action-sheet-group.action-sheet-options{
  563. max-height: 300px;
  564. overflow-y: auto;
  565. }
  566. .notice-image{
  567. display:inline-block;
  568. width:30px;
  569. height:30px;
  570. background-image:url('img/entranceIcon.png');
  571. background-repeat:no-repeat;
  572. background-size: 170px auto;
  573. }
  574. .image1
  575. {
  576. background-position: -40px -45px;
  577. }
  578. .image2
  579. {
  580. background-position: -70px -45px;
  581. }
  582. .personal-notice{
  583. margin:10px;
  584. text-align: center;
  585. }
  586. .notice-box{
  587. /*margin:20px 0 20px 30%;*/
  588. display:inline-block;
  589. width:70%;
  590. /*margin:10px 20px;*/
  591. text-align: left;
  592. }
  593. .popup-container .popup{
  594. max-width:300px !important;
  595. }
  596. .notice-title{
  597. font-size:1.3em;
  598. /*font-weight:bold;*/
  599. margin:10px 0;
  600. }
  601. .notice-item{
  602. font-size:10px;
  603. }
  604. .opinion-section{
  605. padding:10px 20% 0;
  606. border-top:1px solid #ddd;
  607. margin-bottom:50px;
  608. font-size:0.35rem;
  609. }
  610. .submit-section{
  611. text-align: center;
  612. }
  613. .button-fixed{
  614. position: fixed;
  615. bottom:0px;
  616. left:0px;
  617. max-width:20.5rem;
  618. right: 0;
  619. margin:5px auto;
  620. background-color:#fff;
  621. }
  622. .button-fixed>div{
  623. width:100%;
  624. max-width:20.5rem;
  625. margin:auto;
  626. background-color:#f2f2f2;
  627. padding:10px 0;
  628. }
  629. .fixed-intaskDeitals{
  630. bottom:65px;
  631. }
  632. .submit-button,.edit-button{
  633. padding:10px 0;
  634. width:80%;
  635. border:0;
  636. outline: none;
  637. background-color: #F7F4F4;
  638. color:#B6B2B2;
  639. border-radius:5px;
  640. font-size:0.35rem;
  641. text-align: center;
  642. }
  643. .submit-button1,.edit-button{
  644. padding:10px 0;
  645. border:0;
  646. outline: none;
  647. background-color: #F7F4F4;
  648. color:#B6B2B2;
  649. border-radius:5px;
  650. font-size:0.35rem;
  651. text-align: center;
  652. position:absolute;
  653. bottom:0
  654. }
  655. .submit-button2,.edit-button{
  656. border:0;
  657. outline: none;
  658. background-color: #F7F4F4;
  659. color:#B6B2B2;
  660. border-radius:5px;
  661. font-size:0.35rem;
  662. text-align: center;
  663. /* position:absolute;
  664. bottom:0; */
  665. padding:3px
  666. }
  667. .edit-button{
  668. padding:3px 5px;
  669. width:48%;
  670. font-size:0.6rem;
  671. background-color: transparent;
  672. color:#B6B2B2;
  673. }
  674. .submit-button2{
  675. width:40%;
  676. margin-left:5px;
  677. }
  678. .submit-button3{
  679. width:30%;
  680. margin-left:5px;
  681. }
  682. .submit-button4{
  683. width:25%;
  684. margin-left:0px;
  685. }
  686. .submit-button5{
  687. width:15%;
  688. margin-left:5px;
  689. }
  690. .sbg-blue{
  691. background-color: #3B8BD0;
  692. color:#fff;
  693. }
  694. .sbg-red{
  695. background-color: #FF8A8E;
  696. color:#fff;
  697. }
  698. .submit-mark{
  699. display:inline-block;
  700. width:20px;
  701. height:20px;
  702. line-height:17px;
  703. background-color: #D7DADF;
  704. border-radius:5px;
  705. text-align: center;
  706. color:#fff;
  707. }
  708. .submit-marks{
  709. transform: translate(-12px, -18px);
  710. }
  711. .bg-blue{
  712. background-color:#3B8BD0;
  713. }
  714. .bg-bluepurple{
  715. background-color:#3B8BD0;
  716. }
  717. .drop-down-items{
  718. border:1px solid #ddd;
  719. position:absolute;
  720. top:33px;
  721. left:0;
  722. min-width:100%;
  723. z-index:1000;
  724. background-color:#fff;
  725. padding:5px 0;
  726. max-height:200px;
  727. overflow: auto;
  728. }
  729. .drop-down-items li{
  730. padding:5px;
  731. }
  732. .drop-down-box{
  733. position:relative;
  734. width:29.5%;
  735. display:inline-block;
  736. margin-right:5px;
  737. }
  738. .area-app{
  739. width:100%;
  740. margin-bottom:5px;
  741. }
  742. .drop-down-icon{
  743. position:absolute;
  744. top:0px;
  745. right:0px;
  746. width:30px;
  747. height:34px;
  748. line-height:34px;
  749. text-align: center;
  750. color:#A29D9D;
  751. }
  752. .hole-row{
  753. display:flex;
  754. /*margin-bottom:10px;*/
  755. border-bottom:1px solid #f2f2f2;
  756. padding:10px;
  757. background-color:#fff;
  758. }
  759. .input-title{
  760. /*text-align: right;*/
  761. line-height:34px;
  762. width:25%;
  763. margin-right:5px;
  764. font-size:0.35rem;
  765. }
  766. .input-box{
  767. position:relative;
  768. width:73%;
  769. font-size:0.32rem;
  770. color:#8C8E9B;
  771. }
  772. .lable-box{
  773. border-top:1px solid #eee;
  774. padding-top:5px;
  775. }
  776. .lable-box>span{
  777. display: inline-block;
  778. padding:2px 8px;
  779. border-radius:5px;
  780. border:1px solid #8C8E9B;
  781. margin-left:5px;
  782. margin-top:5px;
  783. }
  784. .position-fix{
  785. position:absolute;
  786. top:7px;
  787. right:3%;
  788. }
  789. .check-mark{
  790. display:inline-block;
  791. width:20px;
  792. height:20px;
  793. line-height:14px;
  794. border:3px solid #1CA8F6;
  795. border-radius:50%;
  796. }
  797. .icon-character{
  798. font-size:1.2em;
  799. }
  800. .color-blue{
  801. color:#1CA8F6;
  802. }
  803. .color-red{
  804. color:#FF8A8E;
  805. }
  806. .color-gray{
  807. color:#D7DADF;
  808. }
  809. .icon-number{
  810. display:inline-block;
  811. width:20px;
  812. height:20px;
  813. line-height:17px;
  814. border-radius:50%;
  815. margin:0 5px 5px 15px;
  816. }
  817. .blue-number{
  818. background-color:#1CA8F6;
  819. color:#fff;
  820. }
  821. .gray-number{
  822. color:#D7DADF;
  823. }
  824. .status-section{
  825. text-align: center;
  826. /*margin:10px 0;*/
  827. }
  828. .status-bar{
  829. display:inline-block;
  830. width:75%;
  831. }
  832. .upload-add{
  833. display:block;
  834. width: 80px;
  835. height: 80px;
  836. font-size: 26px;
  837. text-align: center;
  838. line-height: 75px;
  839. color: #9ca3ac;
  840. border: 1.5px dashed #b9c5cf;
  841. border-radius: 5px;
  842. text-decoration: none;
  843. vertical-align: middle;
  844. margin-bottom:10px;
  845. }
  846. .tech-top{
  847. top:5.05rem !important;
  848. }
  849. .other-top{
  850. top:270px;
  851. }
  852. .status-bar-top{
  853. display:flex;
  854. justify-content: center;
  855. padding:20px 0 10px;
  856. background-color:#fff;
  857. /*margin-bottom:10px;*/
  858. }
  859. .status-circle{
  860. display:flex;
  861. flex-direction: column;
  862. align-items: center;
  863. font-size:16px;
  864. position:relative;
  865. width:140px;
  866. }
  867. .status-circle>i{
  868. position: relative;
  869. z-index: 5;
  870. }
  871. .status-divider{
  872. position:absolute;
  873. top:12px;
  874. right:-58px;
  875. border-bottom:3px solid #CACACA;
  876. width:115px;
  877. }
  878. .status-circle>i{
  879. display:inline-block;
  880. width:25px;
  881. height:25px;
  882. border-radius: 50%;
  883. color:#fff;
  884. font-size:18px;
  885. line-height:25px;
  886. margin-bottom:5px;
  887. }
  888. .status-blue{
  889. color:#3B8BD0;
  890. }
  891. .status-blue>i{
  892. background-color: #3B8BD0;
  893. }
  894. .status-gray{
  895. color:#CACACA;
  896. }
  897. .status-gray>i{
  898. background-color: #CACACA;
  899. }
  900. .row-margin{
  901. margin:10px 0;
  902. }
  903. .row-margideclare{
  904. margin:10px 0;
  905. display: block;
  906. padding: 0 0 10px;
  907. }
  908. .declarewidth{
  909. width:100%;
  910. padding: 10px 10px 0 10px;
  911. }
  912. /*头部蓝色*/
  913. .bar-header-blue{
  914. /*background: -moz-linear-gradient(left,#7683FD 10%,#8EC2FC, #96D6FD) !important;*/
  915. /*background: -webkit-linear-gradient(left,#7683FD 10%,#8EC2FC, #96D6FD) !important;*/
  916. /*background: -o-linear-gradient(left,#7683FD 10%,#8EC2FC, #96D6FD) !important;*/
  917. background-color: #3B8BD0 !important;
  918. }
  919. .contentsty{
  920. background-color: #f5f5f5;
  921. max-width:20.5rem;
  922. margin: 0 auto
  923. }
  924. .toolbar-inside{
  925. background-color: #3B8BD0 !important;
  926. color: #fff;
  927. position: relative;
  928. }
  929. .toolbar-inside .toolbar-inside-lt,.toolbar-inside-middle,.toolbar-inside-rt{
  930. position: absolute;
  931. top: 50%;
  932. transform: translate(0,-50%);
  933. font-size: 20px;
  934. cursor: pointer;
  935. }
  936. .toolbar-inside .toolbar-inside-lt{
  937. left: 10px;
  938. }
  939. .toolbar-inside .toolbar-inside-middle{
  940. font-size: 18px;
  941. left: 50%;
  942. transform: translate(-50%,-50%);
  943. }
  944. .toolbar-inside .toolbar-inside-rt{
  945. right: 10px;
  946. }
  947. .bar-title{
  948. margin-left: 0.4rem;font-size: 0.4rem;
  949. font-weight: bold;height: 40px;line-height: 40px
  950. }
  951. .bar-header-blue>h3{
  952. color:#fff;
  953. }
  954. .audit-body{
  955. display: flex;
  956. flex-direction: column;
  957. align-items: center;
  958. padding:40px;
  959. font-size:0.35rem;
  960. background-color: #fff;
  961. }
  962. .audit-body>img{
  963. width:60%;
  964. max-width:300px;
  965. margin:15px;
  966. }
  967. .audit-body-sub{
  968. color:#CFCFCF;
  969. font-size:0.3rem;
  970. margin:15px;
  971. }
  972. .about-task{
  973. text-align:center;
  974. }
  975. .about-task>span{
  976. display:inline-block;
  977. margin:0 20px;
  978. padding:2px;
  979. border-bottom:1px solid #3B8BD0;
  980. color:#3B8BD0;
  981. cursor: pointer;
  982. }
  983. .task-link{
  984. background-color: #fff;
  985. margin-top:10px;
  986. width:100%;
  987. overflow: hidden;
  988. position: relative;
  989. }
  990. .task-link-title,.activity-detail-title{
  991. padding:3px 8px;
  992. /*display: inline-block;*/
  993. border-left:3px solid #3B8BD0;
  994. margin:15px 15px 0;
  995. font-size:0.35rem;
  996. }
  997. .activity-detail-title{
  998. margin:5px 0;
  999. }
  1000. .task-link-box>li{
  1001. display:flex;
  1002. flex-direction:column;
  1003. padding:10px;
  1004. }
  1005. .task-more{
  1006. float:right;
  1007. font-size:14px;
  1008. cursor:pointer;
  1009. color:#9C9FAA;
  1010. }
  1011. /*轮播图*/
  1012. .banner-box{
  1013. height:180px;
  1014. padding:20px 0;
  1015. }
  1016. .banner-box-web{
  1017. height:300px !important;
  1018. }
  1019. .swiper-container {
  1020. width: 100%;
  1021. height: 100%;
  1022. }
  1023. .swiper-container .swiper-slide {
  1024. text-align: center;
  1025. font-size: 18px;
  1026. /*background: #fff;*/
  1027. /* Center slide text vertically */
  1028. display: -webkit-box;
  1029. display: -ms-flexbox;
  1030. display: -webkit-flex;
  1031. display: flex;
  1032. -webkit-box-pack: center;
  1033. -ms-flex-pack: center;
  1034. -webkit-justify-content: center;
  1035. justify-content: center;
  1036. -webkit-box-align: center;
  1037. -ms-flex-align: center;
  1038. -webkit-align-items: center;
  1039. align-items: center;
  1040. width:80% !important;
  1041. /*height:80% !important;*/
  1042. transition:all 2.5s;
  1043. border-radius: 20px;
  1044. overflow: hidden;
  1045. }
  1046. .swiper-container .swiper-slide .banner-img{
  1047. width:100% !important;
  1048. height:100% !important;
  1049. }
  1050. .swiper-container .swiper-slide.swiper-slide-prev .banner-img,.swiper-slide.swiper-slide-next .banner-img{
  1051. width:85% !important;
  1052. height:85% !important;
  1053. border-radius: 10px;
  1054. overflow: hidden;
  1055. }
  1056. /*引导页*/
  1057. /*.mask-body{*/
  1058. /*position:relative;*/
  1059. /*}*/
  1060. .notice-mask{
  1061. position: fixed;
  1062. top:0;
  1063. left:0;
  1064. width:100%;
  1065. height:100%;
  1066. background-color: rgba(0,0,0,0.5);
  1067. z-index: 10000;
  1068. color:#fff;
  1069. font-size:20px;
  1070. }
  1071. .notice-mask>div{
  1072. text-align: center;
  1073. width:100%;
  1074. position:absolute;
  1075. top:260px;
  1076. }
  1077. .content-to-top{
  1078. font-size:16px !important;
  1079. }
  1080. .content-to-top>div{
  1081. top:140px !important;
  1082. }
  1083. .notice-mask>span{
  1084. position: absolute;
  1085. top:15px;
  1086. right:15px;
  1087. }
  1088. .show-notice{
  1089. z-index: 1000000 !important;
  1090. background-color:#fff;
  1091. border-radius: 50px;
  1092. box-shadow: 0 0 30px #fff,0 0 30px rgba(0,0,0,0.5) inset;
  1093. }
  1094. .notice-arrow{
  1095. position:absolute;
  1096. top:-40px;
  1097. left: 20px;
  1098. }
  1099. /*.notice-arrow>div{*/
  1100. /*width:400%;*/
  1101. /*color:#fff;*/
  1102. /*text-align: center;*/
  1103. /*margin-left:-200%;*/
  1104. /*font-size:16px;*/
  1105. /*}*/
  1106. .notice-arrow>img{
  1107. width:25px;
  1108. }
  1109. .task-icon{
  1110. font-size:30px;
  1111. color:#8DD6FD;
  1112. margin-right:10px;
  1113. vertical-align: middle;
  1114. }
  1115. .task-type-box{
  1116. background-color:#fff;
  1117. }
  1118. .task-type-box>div{
  1119. padding:8px;
  1120. font-size:0.35rem;
  1121. }
  1122. .task-type-box>ul{
  1123. font-size:0.3rem;
  1124. }
  1125. .notice-page{
  1126. width:100%;
  1127. height:100%;
  1128. position:relative;
  1129. z-index:10;
  1130. }
  1131. .notice-page>span{
  1132. position:absolute;
  1133. top:0;
  1134. left:0;
  1135. }
  1136. .icon-menulist{
  1137. /*background-repeat:url("../img/act_t.svg")no-repeat scroll center 65% !important;*/
  1138. background-repeat:no-repeat;
  1139. background-size: 80% !important;
  1140. margin:8px auto 3px !important;
  1141. }
  1142. .ion-content-style{
  1143. margin:0 auto;
  1144. max-width:20.5rem;
  1145. /*background-color: #f2f2f2;*/
  1146. }
  1147. /*资源库列表*/
  1148. .resource-library-box{
  1149. /*display: flex;*/
  1150. /*justify-content: space-between;*/
  1151. width: 100%;
  1152. padding:10px;
  1153. background: #E3F1F9;
  1154. /*flex-wrap: wrap;*/
  1155. /*-ms-flex-wrap: wrap;*/
  1156. /*-webkit-flex-wrap: wrap;*/
  1157. }
  1158. .resource-library-box>ul{
  1159. background: #ffffff;
  1160. color: #b7b7b7;
  1161. }
  1162. /*.resource-library-box>ul:nth-child(1n){*/
  1163. /* background-color:#8AA7ED;*/
  1164. /*}*/
  1165. /*.resource-library-box>ul:nth-child(2n){*/
  1166. /* background-color:#83BAFE;*/
  1167. /*}*/
  1168. /*.resource-library-box>ul:nth-child(3n){*/
  1169. /* background-color:#8DD6FD;*/
  1170. /*}*/
  1171. /*.resource-library-box>ul:nth-child(4n){*/
  1172. /* background-color:#B0DDF6;*/
  1173. /*}*/
  1174. .resource-library-box>ul:nth-child(1n) .Library-title{
  1175. background:#2E9D94 ;
  1176. }
  1177. .resource-library-box>ul:nth-child(2n) .Library-title{
  1178. background: #6cdcea;
  1179. }
  1180. .resource-library-box>ul:nth-child(3n) .Library-title{
  1181. background:#4D99CE ;
  1182. }
  1183. .resource-library-box>ul:nth-child(4n) .Library-title{
  1184. background: #62b3ec;
  1185. }
  1186. .resource-library-box>ul .Library-button{
  1187. border: 1px #3B8BD0 solid;color: #3B8BD0;
  1188. }
  1189. /*.resource-library-box>ul:nth-child(1n) .Library-button{*/
  1190. /* border: 1px #2E9D94 solid;color: #2E9D94*/
  1191. /*}*/
  1192. /*.resource-library-box>ul:nth-child(2n) .Library-button{*/
  1193. /* border: 1px #6cdcea solid;color: #6cdcea*/
  1194. /*}*/
  1195. /*.resource-library-box>ul:nth-child(3n) .Library-button{*/
  1196. /* border: 1px #4D99CE solid;color: #4D99CE*/
  1197. /*}*/
  1198. /*.resource-library-box>ul:nth-child(4n) .Library-button{*/
  1199. /* border: 1px #62b3ec solid;color: #62b3ec*/
  1200. /*}*/
  1201. .resource-library-items{
  1202. display:inline-block;
  1203. width:45%;
  1204. margin:0.2rem;
  1205. padding:0 10px;
  1206. border-radius: 10px;
  1207. box-sizing: border-box;
  1208. color:#fff;
  1209. font-size:0.3rem;
  1210. }
  1211. .resource-library-items>li{
  1212. margin-bottom:8px;
  1213. }
  1214. .resource-library-items-web{
  1215. width:23% !important;
  1216. }
  1217. .resource-library-items-web>li{
  1218. margin-bottom:20px;
  1219. }
  1220. .resource-library-title{
  1221. font-size:0.4rem;
  1222. text-align: center;
  1223. /*margin-bottom:0.2rem;*/
  1224. }
  1225. .resource-library-dot{
  1226. font-weight:bold;
  1227. }
  1228. .resource-library-logo-box{
  1229. /*margin:0.2rem 0;*/
  1230. }
  1231. .resource-library-logo-box>img{
  1232. width: 30px;
  1233. height: 30px;
  1234. border-radius: 50%;
  1235. margin-left:0.2rem;
  1236. }
  1237. .resource-library-checkbutton{
  1238. text-align: center;
  1239. /*margin-top:0.2rem;*/
  1240. }
  1241. .resource-library-checkbutton>button{
  1242. background-color:#fff;
  1243. border:none;
  1244. border-radius:20px;
  1245. padding:5px 20px;
  1246. }
  1247. .swiper-button-next, .swiper-button-prev{
  1248. top:92% !important;
  1249. background-size: 18px 44px !important;
  1250. }
  1251. .loading-container .loading{
  1252. background-color:transparent;
  1253. }
  1254. .spinner svg{
  1255. width:1.5rem !important;
  1256. height:1rem !important;
  1257. }
  1258. .selected-people{
  1259. position: absolute;
  1260. top:10px;
  1261. right:30px;
  1262. }
  1263. .selected-people>i{
  1264. font-size:0.4rem;
  1265. }
  1266. /*会员认证*/
  1267. .is-app{
  1268. top:100px;
  1269. }
  1270. .i-item{
  1271. height:125px;
  1272. min-width:90px;
  1273. margin:0 2% 20px;
  1274. border-radius:10px;
  1275. position:relative;
  1276. display:flex;
  1277. flex-direction:column;
  1278. align-items:center;
  1279. padding:0 1%;
  1280. /*background-color:#FBFBFB;*/
  1281. }
  1282. .item-app{
  1283. height:110px;
  1284. min-width:120px;
  1285. margin:0 4% 20px;
  1286. padding:0 2%;
  1287. }
  1288. .item-app1{
  1289. height:180px;
  1290. min-width:120px;
  1291. margin:0 4% 20px;
  1292. padding:0 2%;
  1293. }
  1294. .item-app-title{
  1295. height:110px;
  1296. }
  1297. .item-app-title1{
  1298. height:180px;
  1299. }
  1300. .i-fixed{
  1301. /*background:url('img/2018/1.png') no-repeat 0 0;*/
  1302. /*background-size:cover;*/
  1303. background-color:#869DFB;
  1304. }
  1305. .i-various{
  1306. /*background:url('img/2018/2.png') no-repeat 0 0;*/
  1307. /*background-size:cover;*/
  1308. background-color:#3B8BD0;
  1309. }
  1310. .inst-name{
  1311. width:100px;
  1312. position:absolute;
  1313. bottom:-19px;
  1314. left:0;
  1315. white-space: nowrap;
  1316. overflow: hidden;
  1317. text-overflow:ellipsis;
  1318. font-size:0.2rem;
  1319. }
  1320. .inst-name:hover{
  1321. overflow: visible;
  1322. }
  1323. .i-portrait{
  1324. width:40%;
  1325. height:60%;
  1326. margin:10px 0;
  1327. color:#fff;
  1328. text-align: center;
  1329. font-size:30px;
  1330. }
  1331. .i-personal{
  1332. background:url('../img/2018/13.png') no-repeat 0 0;
  1333. background-size:cover;
  1334. }
  1335. .i-tecBroker{
  1336. background:url('../img/2018/4.png') no-repeat 0 0;
  1337. background-size:cover;
  1338. }
  1339. .i-nodeManager{
  1340. background:url('../img/2018/6.png') no-repeat 0 0;
  1341. background-size:cover;
  1342. }
  1343. .i-enterprise{
  1344. background:url('../img/2018/6.png') no-repeat 0 0;
  1345. background-size:cover;
  1346. }
  1347. .i-colleges{
  1348. background:url('../img/2018/5.png') no-repeat 0 0;
  1349. background-size:cover;
  1350. }
  1351. .i-government{
  1352. background:url('../img/2018/4.png') no-repeat 0 0;
  1353. background-size:cover;
  1354. }
  1355. .i-service{
  1356. background:url('../img/2018/13.png') no-repeat 0 0;
  1357. background-size:cover;
  1358. }
  1359. .i-item-title{
  1360. font-size:0.4rem;
  1361. color:#fff;
  1362. /*font-weight:bold;*/
  1363. }
  1364. .i-size{
  1365. font-size:0.4rem;
  1366. }
  1367. .i-explain{
  1368. font-size:0.2rem;
  1369. color:#fff;
  1370. margin:10px 0;
  1371. }
  1372. .i-status{
  1373. position:absolute;
  1374. top:5px;
  1375. right:0;
  1376. transform:rotate(30deg);
  1377. font-size:0.2rem;
  1378. color:#fff;
  1379. }
  1380. .i-boxes{
  1381. display:flex;
  1382. justify-content: center;
  1383. flex-wrap:wrap;
  1384. }
  1385. .dividing-strip{
  1386. border-top:1px solid #ddd;
  1387. margin:30px 5% 20px;
  1388. position: relative;
  1389. /*text-align:center;*/
  1390. }
  1391. .app-divid{
  1392. margin:20px 5% 5px !important;
  1393. }
  1394. .strip-title{
  1395. font-size:0.35rem;;
  1396. padding:0 20px 0 10px;
  1397. background-color:#fff;
  1398. display:inline-block;
  1399. margin:auto;
  1400. position:relative;
  1401. top:-10px;
  1402. vertical-align: middle;
  1403. border-left:3px solid #869DFB;
  1404. }
  1405. .strip-title img{
  1406. vertical-align: middle;
  1407. }
  1408. .i-red{
  1409. color:red;
  1410. }
  1411. .i-gray{
  1412. color:#fff;
  1413. }
  1414. .i-rule{
  1415. padding:3px 5px;
  1416. border-radius:3px;
  1417. background-color:#67C23A;
  1418. position:absolute;
  1419. top:-15px;
  1420. left:-15px;
  1421. color:#fff;
  1422. box-shadow:2px 2px 5px #000;
  1423. font-size:0.2rem;
  1424. }
  1425. /*底部*/
  1426. .i-item-adv{
  1427. min-width:140px;
  1428. }
  1429. .i-advIcon{
  1430. width:40px;
  1431. height:40px;
  1432. margin:10px 0;
  1433. background:url('img/2018/sprite-identify.png') no-repeat;
  1434. background-size:130% auto;
  1435. }
  1436. .i-advtitle{
  1437. font-size:0.5em;
  1438. margin:5px 0;
  1439. font-weight:bold;
  1440. }
  1441. .i-advremark{
  1442. font-size:10px;
  1443. }
  1444. .i-exclusive{
  1445. background-position:0 0;
  1446. }
  1447. .i-authority{
  1448. background-position:0 -36px;
  1449. }
  1450. .i-prioritycooperation{
  1451. background-position:0 -74px;
  1452. }
  1453. .i-morewelfare{
  1454. background-position:0 -114px;
  1455. }
  1456. /*任务邀请*/
  1457. .invite-page-no-people{
  1458. color:#ccc;
  1459. text-align: center;
  1460. padding:5px 0;
  1461. }
  1462. .selected-invite-person{
  1463. padding-bottom:20px;
  1464. background-color: #f2f2f2;
  1465. }
  1466. .rj-list .list{
  1467. background-color: #fff !important;
  1468. margin:0 !important;
  1469. padding:1px 0 0 13px !important;
  1470. width: 100%;
  1471. }
  1472. /*任务详情页*/
  1473. .resource-detail-box{
  1474. margin-bottom:15px;
  1475. padding:20px 10px 0;
  1476. background-color: #fff;
  1477. color:#7D808F;
  1478. font-size:0.35rem;
  1479. }
  1480. .resource-detail-box>ul>li{
  1481. margin-bottom:8px;
  1482. }
  1483. .task-detail-basicinfo>div,.task-detail-basicinfo>ul{
  1484. padding-bottom:10px;
  1485. }
  1486. .task-detail-basicinfo>div:nth-child(1){
  1487. font-size:0.5rem;
  1488. height:auto;
  1489. line-height:1.3;
  1490. color:#434645;
  1491. }
  1492. .task-detail-basicinfo>div:nth-child(2){
  1493. font-size:0.35rem;
  1494. }
  1495. .task-detail-gray{
  1496. color:#7D808F;
  1497. }
  1498. .task-detail-red{
  1499. color:#FF8A8E !important;
  1500. }
  1501. .task-detail-yellow{
  1502. color:#FBAA32;
  1503. }
  1504. .privacy-color{
  1505. color:#7B81FB;
  1506. }
  1507. .task-detail-icon{
  1508. font-size:0.4rem;
  1509. }
  1510. .contact-box li,.task-share-box li{
  1511. display: inline-block;
  1512. width: 49%;
  1513. }
  1514. .contact-box li+li{
  1515. padding-left:20px;
  1516. border-left:1px solid #D6D6D6;
  1517. }
  1518. .task-share-box{
  1519. margin-top:5px;
  1520. padding:10px 0;
  1521. border-top:1px solid #F3F3F3;
  1522. }
  1523. .task-share-box li+li{
  1524. text-align: right;
  1525. }
  1526. .task-section-title{
  1527. color:#434645;
  1528. font-size:0.45rem;
  1529. padding-bottom:10px;
  1530. border-bottom:1px solid #F3F3F3;
  1531. margin-bottom:10px;
  1532. position: relative;
  1533. }
  1534. .task-section-title-tonglu{
  1535. color:#434645;
  1536. font-size:0.35rem;
  1537. padding-bottom:10px;
  1538. border-bottom:1px solid #F3F3F3;
  1539. margin-bottom:10px;
  1540. position: relative;
  1541. }
  1542. .close-big-image-button{
  1543. display: inline-block;
  1544. width:30px;
  1545. height:30px;
  1546. line-height: 30px;
  1547. text-align: center;
  1548. font-size:18px;
  1549. color:#fff;
  1550. position: absolute;
  1551. top:0;
  1552. right:0;
  1553. z-index: 10;
  1554. }
  1555. .task-detail-publisher{
  1556. position:relative;
  1557. /*padding:10px;*/
  1558. border-bottom:1px solid #F3F3F3;
  1559. }
  1560. .task-detail-publisher>li{
  1561. display: inline-block;
  1562. margin-left:10px;
  1563. margin-bottom:10px;
  1564. vertical-align: middle;
  1565. }
  1566. .task-detail-publisher>li>img{
  1567. width:40px;
  1568. height:40px;
  1569. border-radius: 50%;
  1570. }
  1571. .focus-publisher{
  1572. /*position: absolute;*/
  1573. /*top:-5px;*/
  1574. /*right:10px;*/
  1575. }
  1576. .unfold-list{
  1577. position: absolute;
  1578. top:0;
  1579. right:0;
  1580. }
  1581. .consult-box{
  1582. border-radius:10px;
  1583. padding:2px 15px;
  1584. color:#3B8BD0;
  1585. border:1px solid #3B8BD0;
  1586. margin-top:10px;
  1587. margin-left:10px;
  1588. display: inline-block;
  1589. }
  1590. .task-section-title>span{
  1591. position: absolute;
  1592. top:0;
  1593. right:0;
  1594. font-size:0.35rem;
  1595. color:#434645;
  1596. }
  1597. /*对接录入*/
  1598. .docking-list{
  1599. padding:10px;
  1600. border-bottom:1px solid #F3F3F3;
  1601. position: relative;
  1602. }
  1603. .docking-status{
  1604. position:absolute;
  1605. top:10px;
  1606. right:10px;
  1607. padding:2px 8px;
  1608. color:#FAB74D;
  1609. border:1px solid #FAB74D;
  1610. border-radius:5px;
  1611. }
  1612. .docking-title{
  1613. color:#4c4c4c;
  1614. }
  1615. /*最新任务*/
  1616. .search-label-box{
  1617. display:flex;
  1618. flex-wrap: wrap;
  1619. padding:10px 10px 0;
  1620. }
  1621. .search-label{
  1622. padding:3px 8px;
  1623. margin:5px;
  1624. border:1px solid #444;
  1625. color:#9C9FAA;
  1626. border-radius: 5px;
  1627. }
  1628. .search-label-selected{
  1629. color:#fff;
  1630. background-color: #3B8BD0;
  1631. border:none;
  1632. }
  1633. /*私密不可见*/
  1634. .no-suthority{
  1635. position: absolute;
  1636. top:-5px;
  1637. right:-5px;
  1638. border-radius:50%;
  1639. border:1px solid #F79F47;
  1640. color:#F79F47;
  1641. width: 40px;
  1642. height: 40px;
  1643. line-height: 40px;
  1644. text-align: center;
  1645. font-size: 20px;
  1646. }
  1647. .account-lables{
  1648. position:absolute;
  1649. left:120px;
  1650. bottom:5px;
  1651. /*height:30px;*/
  1652. display:flex;
  1653. }
  1654. .account-lables>i{
  1655. display:inline-block;
  1656. color:#fff;
  1657. width:30px;
  1658. height:30px;
  1659. line-height:30px;
  1660. text-align: center;
  1661. border:1px solid #fff;
  1662. border-radius: 50%;
  1663. margin-left:10px;
  1664. font-size:20px;
  1665. }
  1666. .account-stars{
  1667. position: absolute;
  1668. top: 20px;
  1669. right:20px;
  1670. color:#fff;
  1671. font-size:18px;
  1672. display: flex;
  1673. }
  1674. .right-slide{
  1675. width:0;
  1676. background-color:#fff;
  1677. position: absolute;
  1678. top:0;
  1679. right:-350px;
  1680. transition:all .5s;
  1681. border-right:1px solid #b1b1b1;
  1682. padding-top:50px;
  1683. overflow:hidden;
  1684. }
  1685. .close-slide{
  1686. position:absolute;
  1687. top:0;
  1688. right:0;
  1689. font-size:20px;
  1690. padding:10px 20px;
  1691. }
  1692. .filterlist-box{
  1693. margin:15px 20px;
  1694. width:78%;
  1695. }
  1696. .filterlist-title{
  1697. margin: 0.1rem;
  1698. font-size: 0.3rem;
  1699. font-weight: bold;
  1700. padding:1px 10px;
  1701. border-left:3px solid #3B8BD0;
  1702. }
  1703. .list-item{
  1704. display:inline-block;
  1705. padding:5px 20px;
  1706. border:1px solid #BBBBBB;
  1707. color:#6C6C6C;
  1708. margin:10px 20px 5px 0;
  1709. border-radius:5px;
  1710. }
  1711. .selected-item{
  1712. border:1px solid #3B8BD0;
  1713. color:#3B8BD0;
  1714. }
  1715. .submit-box,.submit-box-report{
  1716. position: fixed;
  1717. bottom:0;
  1718. left:0;
  1719. width:100%;
  1720. padding:20px 0;
  1721. display:flex;
  1722. justify-content: space-around;
  1723. background-color: #fff;
  1724. }
  1725. .submit-box-report{
  1726. position: absolute;
  1727. }
  1728. .filter-submit-button{
  1729. padding:3px 0 !important;
  1730. text-align: center;
  1731. margin:0 20px;
  1732. min-height:30px;
  1733. line-height:30px;
  1734. /*display: inline-block;*/
  1735. /*width:50% !important;*/
  1736. width:116px !important;
  1737. }
  1738. .modal-backdrop.active{
  1739. background-color: rgba(0,0,0,0.5);
  1740. }
  1741. .modal-content.modal.slide-in-left.ng-enter.active.ng-enter-active.half-modal{
  1742. background-color:rgba(0,0,0,0.5);
  1743. margin-left:20%;
  1744. }
  1745. .page-filterlist-box{
  1746. width:99%;
  1747. margin:auto;
  1748. }
  1749. .page-filterlist-box filterlist-title{
  1750. height:25px;
  1751. }
  1752. .page-filterlist-box .filter-items{
  1753. flex:1;
  1754. }
  1755. .page-filterlist-box .filter-items .list-item{
  1756. padding: 2px 5px;
  1757. margin: 0 8px 5px;
  1758. }
  1759. .jump-to-more{
  1760. text-align: right;
  1761. padding:0 30px;
  1762. /*font-size:10px;*/
  1763. color:#9C9FAA;
  1764. }
  1765. .jump-to-more span{
  1766. cursor:pointer;
  1767. }
  1768. .jump-to-more span:hover{
  1769. color:#7581FB;
  1770. }
  1771. .edit-list{
  1772. display: flex;
  1773. align-items: center;
  1774. justify-content: space-between;
  1775. padding:0.2rem;
  1776. border-bottom:2px solid #fff;
  1777. /*border-radius:5px;*/
  1778. margin:5px;
  1779. font-size:0.35rem;
  1780. height:1.2rem;
  1781. }
  1782. .edit-list div:last-child{
  1783. width:60px;
  1784. }
  1785. .edit-list div:first-child{
  1786. /*vertical-align: middle;*/
  1787. flex:1;
  1788. display: flex;
  1789. align-items: center;
  1790. }
  1791. .edit-list div:first-child label{
  1792. display: flex;
  1793. align-items: center;
  1794. width: 120px;
  1795. justify-content: space-around;
  1796. }
  1797. .edit-list div:first-child label span{
  1798. padding:5px 10px;
  1799. border-right: 1px solid #ddd;
  1800. }
  1801. .edit-apply-form{
  1802. display:inline-block;
  1803. box-sizing: border-box;
  1804. width:100%;
  1805. border-left:2px solid #fff;
  1806. vertical-align: top;
  1807. text-align: center;
  1808. padding:10px;
  1809. }
  1810. @media screen and (min-width: 900px) {
  1811. .edit-apply-form{
  1812. width:49.8%;
  1813. }
  1814. }
  1815. .edit-apply-form-title{
  1816. font-size:0.35rem;
  1817. color:#a6a6a6;
  1818. font-weight:bold;
  1819. display: inline-block;
  1820. padding:5px 10px;
  1821. border-bottom: 3px solid #fff;
  1822. }
  1823. .select-form-type{
  1824. background-color: #fff;
  1825. margin:10px 0;
  1826. }
  1827. .select-form-type i{
  1828. color:#a6a6a6;
  1829. }
  1830. .form-config-choice{
  1831. display:flex;
  1832. flex-wrap: wrap;
  1833. background-color: #f2f2f2;
  1834. margin-bottom:20px;
  1835. }
  1836. .form-config-choice>li{
  1837. padding:0.4rem;
  1838. font-size:0.35rem;
  1839. border:1px solid #d9dfe2;
  1840. /*margin-left:-1px;*/
  1841. /*margin-top:-1px;*/
  1842. margin:5px;
  1843. background-color: #fff;
  1844. cursor: pointer;
  1845. }
  1846. .has-chosen{
  1847. background-color: #f2f2f2 !important;
  1848. border-color: #fff !important;
  1849. }
  1850. .popup-buttons{
  1851. /*display:block;*/
  1852. display:flex;
  1853. padding:10px;
  1854. text-align: center;
  1855. }
  1856. .button.button-positive{
  1857. /*background-color:#7583FD !important;*/
  1858. /*display: inline-block;*/
  1859. width:100%;
  1860. }
  1861. .upload_add{
  1862. display: inline-block;
  1863. width: 25px;
  1864. height: 25px;
  1865. font-size: 21px;
  1866. text-align: center;
  1867. line-height: 16px;
  1868. color: #9ca3ac;
  1869. border: 1.5px dashed #b9c5cf;
  1870. border-radius: 5px;
  1871. text-decoration: none;
  1872. margin:8px 0;
  1873. }
  1874. .add-minus-button{
  1875. display:inline-block;
  1876. padding:3px 8px;
  1877. background-color:#3B8BD0;
  1878. color:#fff;
  1879. font-weight:bold;
  1880. outline: none;
  1881. border-radius:3px;
  1882. border:none;
  1883. /*float:right;*/
  1884. /*margin:0 5px 5px -10px;*/
  1885. }
  1886. .minus-button{
  1887. background-color:#f56c6c;
  1888. }
  1889. .add-button{
  1890. position: absolute;
  1891. top:-2px;
  1892. right:5px;
  1893. }
  1894. .ionic_datepicker_popup .popup-buttons{
  1895. display:flex;
  1896. }
  1897. .ionic_datepicker_popup .popup-body .selected_date_full,
  1898. .ionic_datepicker_popup .selected_date,
  1899. .ionic_datepicker_popup .popup-buttons button,
  1900. .popup-buttons .button:last-child{
  1901. background-color: #3B8BD0 !important;
  1902. }
  1903. .toggle-style{
  1904. border: none;
  1905. min-height: 48px;
  1906. line-height: 48px;
  1907. padding:0 0 0 5px;
  1908. background-color: #fff;
  1909. font-size: 100%;
  1910. color: #000;
  1911. }
  1912. .toggle-style>div{
  1913. width:60% !important;
  1914. overflow-x: auto !important;
  1915. }
  1916. .ionic_datepicker_popup .popup-body .month_select select, .ionic_datepicker_popup .popup-body .year_select select{
  1917. width:100%;
  1918. }
  1919. .item-select select{
  1920. direction: inherit;
  1921. }
  1922. /*时间选择器*/
  1923. .time-picker-mask{
  1924. position: fixed;
  1925. /*width:100%;*/
  1926. /*height:100%;*/
  1927. top:0;
  1928. left:0;
  1929. bottom:0;
  1930. right:0;
  1931. margin:auto;
  1932. }
  1933. .time-picker-box{
  1934. position: fixed;
  1935. width:300px;
  1936. height:180px;
  1937. top:0;
  1938. left:0;
  1939. bottom:0;
  1940. right:0;
  1941. margin:auto;
  1942. background-color:#fff;
  1943. }
  1944. .time-picker-box>div:nth-child(2){
  1945. display: flex;
  1946. justify-content: space-between;
  1947. }
  1948. .time-picker-box-title{
  1949. height:45px;
  1950. line-height:45px;
  1951. background-color:#3B8BD0;
  1952. font-size:18px;
  1953. color:#fff;
  1954. font-weight:bold;
  1955. text-align: center;
  1956. }
  1957. .time-picker-section{
  1958. flex:1;
  1959. text-align: center;
  1960. font-size:16px;
  1961. padding:10px;
  1962. border:1px solid #ddd;
  1963. }
  1964. .time-picker-section>div{
  1965. margin:10px;
  1966. }
  1967. .time-picker-section select{
  1968. width:80%;
  1969. text-align: center !important;
  1970. }
  1971. .time-picker-box>div:last-child{
  1972. margin:10px 0;
  1973. display: flex;
  1974. }
  1975. .time-picker-box>div:last-child button{
  1976. flex:1;
  1977. border-radius:0;
  1978. padding:5px 5px;
  1979. font-size:16px;
  1980. margin-left:1px;
  1981. }
  1982. /*活动*/
  1983. .activity-title{
  1984. position: relative;
  1985. color:#000;
  1986. }
  1987. .activity-title img{
  1988. width:100%;
  1989. height:4rem;
  1990. }
  1991. .activity-title span{
  1992. position:absolute;
  1993. top:0;
  1994. left:0;
  1995. bottom:0;
  1996. right:0;
  1997. margin:auto;
  1998. width:80%;
  1999. height:56px;
  2000. line-height:28px;
  2001. text-align: center;
  2002. color:#fff;
  2003. font-size:0.45rem;
  2004. /*font-weight:bold;*/
  2005. }
  2006. .activity-time-box{
  2007. display:flex;
  2008. background-color: #fff;
  2009. margin-top:8px;
  2010. }
  2011. .activity-time{
  2012. width:100%;
  2013. text-align: center;
  2014. line-height:1.5;
  2015. font-size:0.35rem;
  2016. padding:8px;
  2017. border-right:1px solid #f2f2f2;
  2018. }
  2019. .activity-favor{
  2020. flex:1;
  2021. text-align: center;
  2022. font-size:0.35rem;
  2023. }
  2024. .activity-favor i{
  2025. display:inline-block;
  2026. font-size:0.8rem;
  2027. margin:0.4rem 0;
  2028. cursor: pointer;
  2029. }
  2030. .data-box{
  2031. flex-wrap:wrap;
  2032. margin-top:10px;
  2033. background-color:#fff;
  2034. display:flex;
  2035. justify-content: space-around;
  2036. }
  2037. .data-box li{
  2038. padding:10px;
  2039. text-align: center;
  2040. font-size:0.35rem;
  2041. /*border:1px solid #718BFF;*/
  2042. margin-left:-1px;
  2043. /*width:25%;*/
  2044. }
  2045. /*.data-box li div{*/
  2046. /*color:#718BFF;*/
  2047. /*font-size:0.7rem;*/
  2048. /*font-weight:bold;*/
  2049. /*line-height:1.2;*/
  2050. /*margin-top:10px;*/
  2051. /*}*/
  2052. .data-box li span:first-child{
  2053. display: inline-block;
  2054. width:1.6rem;
  2055. height:1.6rem;
  2056. padding:0.3rem;
  2057. border-radius: 50%;
  2058. border:1px solid #3B8BD0;
  2059. font-size:0.35rem;
  2060. }
  2061. .data-box li span:last-child{
  2062. vertical-align: bottom;
  2063. display:inline-block;
  2064. padding:5px 10px;
  2065. border-bottom:1px solid #ddd;
  2066. font-size:0.5rem;
  2067. }
  2068. .rich-text-box{
  2069. background-color:#fff;
  2070. }
  2071. .rich-text-box>div:first-child{
  2072. font-size:0.35rem;
  2073. padding:10px;
  2074. height:50px;
  2075. line-height:34px;
  2076. }
  2077. .activity-content{
  2078. margin-top:10px;
  2079. background-color: #fff;
  2080. padding:10px;
  2081. }
  2082. .section-box{
  2083. margin-top:10px;
  2084. background-color: #fff;
  2085. }
  2086. .section-box-titles{
  2087. display: flex;
  2088. justify-content: space-around;
  2089. font-size:0.35rem;
  2090. padding:10px;
  2091. }
  2092. .section-box-titles>li{
  2093. padding:3px 8px;
  2094. cursor:pointer;
  2095. }
  2096. .selected-section{
  2097. color:#3B8BD0;
  2098. border-bottom:2px solid #3B8BD0;
  2099. }
  2100. .two-line-wrap{
  2101. /*position:relative;*/
  2102. /*overflow:hidden;*/
  2103. white-space: normal !important;
  2104. /*max-height:55px;*/
  2105. overflow : hidden;
  2106. text-overflow: ellipsis;
  2107. display: -webkit-box;
  2108. -webkit-line-clamp: 3;
  2109. -webkit-box-orient: vertical;
  2110. }
  2111. .two-line-wrap::after{
  2112. /*content:" ";*/
  2113. /*font-weight:bold;*/
  2114. /*position:absolute;*/
  2115. /*bottom:0;*/
  2116. /*right:0;*/
  2117. /*padding:0 20px 1px 45px;*/
  2118. /*background:url(http://newimg88.b0.upaiyun.com/newimg88/2014/09/ellipsis_bg.png) repeat-y;*/
  2119. }
  2120. .image-text-section{
  2121. background-color: #fff;
  2122. min-height:500px;
  2123. }
  2124. .activity-block-title{
  2125. font-weight: bold;
  2126. display: flex;
  2127. }
  2128. .activity-title{
  2129. font-size: 16px;
  2130. }
  2131. .activity-block-title img{
  2132. width:80px;
  2133. height:60px;
  2134. vertical-align: middle;
  2135. margin-right:10px;
  2136. }
  2137. .activity-block{
  2138. height:120px;
  2139. color:#999;
  2140. }
  2141. .activity-block-detail p{
  2142. margin:0 !important;
  2143. }
  2144. .top-other-icon{
  2145. font-size:20px !important;
  2146. color:#fff;
  2147. line-height:34px;
  2148. margin-right:10px;
  2149. cursor:pointer;
  2150. }
  2151. .activity-block-bottom{
  2152. display: flex;
  2153. justify-content: space-between;
  2154. padding-top:5px;
  2155. border-top:1px solid #f2f2f2;
  2156. }
  2157. .delete-activity-broadcast{
  2158. position:absolute;
  2159. top:0;
  2160. right:0;
  2161. padding:3px 10px;
  2162. margin:8px;
  2163. cursor: pointer;
  2164. border:1px solid #FF8A8E;
  2165. border-radius:5px;
  2166. color:#FF8A8E;
  2167. font-size:0.25rem;
  2168. }
  2169. .modal-box{
  2170. position: fixed;
  2171. top:0;
  2172. left:0;
  2173. right:0;
  2174. bottom:0;
  2175. background-color: rgba(0,0,0,0.3);
  2176. z-index: 10;
  2177. }
  2178. .modal-box>div{
  2179. background-color: #fff;
  2180. position: fixed;
  2181. top:0;
  2182. left:0;
  2183. right:0;
  2184. bottom:0;
  2185. margin:auto;
  2186. padding:15px;
  2187. }
  2188. .modal-box>div>i{
  2189. position: absolute;
  2190. top:0;
  2191. right:0;
  2192. font-size:24px;
  2193. padding:15px;
  2194. cursor: pointer;
  2195. }
  2196. .live-broadcast-modal{
  2197. width:100%;
  2198. max-width: 20.5rem;
  2199. height:300px;
  2200. }
  2201. .self-define-modal-title{
  2202. width:80%;
  2203. font-size:0.45rem;
  2204. font-weight:bold;
  2205. }
  2206. .image-text-section-publisher{
  2207. float:right;
  2208. }
  2209. .image-text-section-publisher>img{
  2210. width:35px;
  2211. height:35px;
  2212. border-radius: 50%;
  2213. vertical-align:middle;
  2214. }
  2215. .has-link{
  2216. cursor: pointer;
  2217. color:#718BFF;
  2218. }
  2219. .my-release-title{
  2220. font-size:0.35rem;
  2221. text-align: center;
  2222. padding:10px;
  2223. border-top:5px solid #f2f2f2;
  2224. }
  2225. .personal-homepage{
  2226. font-size:0.35rem;
  2227. padding:5px 10px;
  2228. }
  2229. .personal-homepage i{
  2230. font-size: 0.45rem;
  2231. color:#F7642D;
  2232. }
  2233. .table{
  2234. width: 100%;
  2235. }
  2236. .table tr th,.table tr td{
  2237. vertical-align: middle;
  2238. border: 1px solid #d9d9d9;
  2239. text-align: center;
  2240. margin: 10px;
  2241. font-size: 16px;
  2242. }
  2243. .table tr th{
  2244. padding: 20px;
  2245. background: #d9d9d9;
  2246. }
  2247. .table tr td{
  2248. padding: 10px;
  2249. }