task.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894
  1. i{
  2. font-style: normal;
  3. }
  4. .taskbox{
  5. padding: 10px;
  6. }
  7. .taskbox .panel{
  8. background: #FFFFFF;
  9. border: 1px solid #E6E6E6;
  10. box-shadow: 0 0 3px 1px rgba(0,0,0,0.05);
  11. border-radius: 5px;
  12. }
  13. .taskbox .panel+.panel{
  14. margin-top: 10px;
  15. }
  16. .single_s {
  17. padding: 20px 15px;
  18. }
  19. .single_s .head{
  20. width: 76px;
  21. height: 76px;
  22. border-radius: 50%;
  23. margin-right: 15px;
  24. }
  25. .single_s .head img{
  26. width: 76px;
  27. height: 76px;
  28. border: 1px solid #F5BA1A;
  29. border-radius: 50%;
  30. }
  31. .single_s .name{
  32. font-size: 18px;
  33. color: #000000;
  34. }
  35. .taskbox .school,.taskaddbox .school{
  36. font-size: 16px;
  37. color: #666666;
  38. }
  39. .taskbox .school img,.taskaddbox .school img{
  40. width: 17px;
  41. height: 17px;
  42. display: inline-block;
  43. vertical-align: middle;
  44. margin-top: -4px;
  45. margin-right: 5px;
  46. }
  47. .double_s {
  48. padding-bottom: 10px;
  49. padding-top: 15px;
  50. text-align: center;
  51. }
  52. .double_s .head{
  53. height: 60px;
  54. }
  55. .double_s img{
  56. width: 60px;
  57. height: 60px;
  58. border-radius: 50%;
  59. border: 1px solid #F5BA1A;
  60. display: inline-block;
  61. }
  62. .double_s .name{
  63. font-size: 15px;
  64. color: #000000;
  65. height: 21px;
  66. line-height: 21px;
  67. margin-top: 10px;
  68. }
  69. .double_s .dc_hd{
  70. opacity: 0.5;
  71. position: relative;
  72. }
  73. .double_s .dc_hd.active{
  74. opacity: 1;
  75. }
  76. .tooltip-arrow {
  77. position: absolute;
  78. width: 0;
  79. height: 0;
  80. border-color: transparent;
  81. border-top-color: transparent;
  82. border-style: solid;
  83. bottom: -16px;
  84. left: 50%;
  85. margin-left: -6px;
  86. border-width: 6px 6px 0;
  87. border-top-color: #fff;
  88. display: none;
  89. }
  90. .double_s .dc_hd.active .tooltip-arrow{
  91. display: block;
  92. }
  93. .taskbox .tagbox,.taskaddbox .tagbox{
  94. background: #48A3FE;
  95. height: 32px;
  96. line-height: 32px;
  97. border-radius: 0 4px 4px 0;
  98. display: inline-block;
  99. padding: 0 12px;
  100. color: #fff;
  101. font-size: 14px;
  102. margin-top: 15px;
  103. }
  104. .taskbox .tagbox img,.taskaddbox .tagbox img{
  105. width: 17px;
  106. height: 15px;
  107. display: inline-block;
  108. vertical-align: middle;
  109. margin-right: 5px;
  110. margin-top: -3px;
  111. }
  112. .taskbox .time_stepbox article section:before{
  113. left: 20px;
  114. background: none;
  115. border-left: 1px dashed #e6e6e6;
  116. top: -18px;
  117. }
  118. .taskbox .time_stepbox .point-time{
  119. width: 12px;
  120. height: 12px;
  121. background: url(../images/tasktime.png) no-repeat center center / 12px 12px;
  122. }
  123. .taskbox .time_stepbox article section aside{
  124. margin-left: 38px;
  125. }
  126. .taskbox .time_stepbox{
  127. padding-top: 18px;
  128. }
  129. .taskbox .pl_list{
  130. background: #F1F8FF;
  131. border-radius: 4px;
  132. padding: 10px;
  133. margin-right: 10px;
  134. font-size: 15px;
  135. color: #000000;
  136. line-height: 20px;
  137. }
  138. .taskbox .pl_list .link{
  139. text-align: right;
  140. }
  141. .taskbox .pl_list a{
  142. font-size: 13px;
  143. color: #48A3FE;
  144. }
  145. .nadate {
  146. padding: 100px 0;
  147. text-align: center;
  148. color: #999;
  149. font-size: 14px;
  150. }
  151. .nadate img{
  152. width: 100px;
  153. margin: 10px auto
  154. }
  155. .teacherTop{
  156. padding: 15px;
  157. }
  158. .teacherTop .btn a{
  159. background: #48A3FE;
  160. border-radius: 4px;
  161. font-size: 14px;
  162. color: #FFFFFF;
  163. display: inline-block;
  164. padding: 0 10px;
  165. height: 34px;
  166. line-height: 34px;
  167. }
  168. .teacherTop .btn a.disabled{
  169. background: #E6E6E6;
  170. color: #CCCCCC;
  171. }
  172. .teacherTop .btn a img{
  173. width: 15px;
  174. height: 15px;
  175. display: inline-block;
  176. vertical-align: middle;
  177. margin-right: 5px;
  178. margin-top: -3px;
  179. }
  180. .teacherTop .dateSelect img{
  181. display: inline-block;
  182. vertical-align: middle;
  183. margin-right: 5px;
  184. margin-top: -3px;
  185. width: 18px;
  186. height: 18px;
  187. }
  188. .teacherTop .dateSelect{
  189. font-size: 16px;
  190. color: #48A3FE;
  191. }
  192. .teacherTop .dateSelect i{
  193. margin-left: 3px;
  194. }
  195. .teacherTop .dateSelect span.c_black{
  196. color: #000;
  197. }
  198. .period {
  199. padding: 20px 0 14px;
  200. position: relative;
  201. }
  202. .period:after{
  203. position: absolute;
  204. content: '';
  205. height: 1px;
  206. left: 0px;
  207. right: 0;
  208. background: #E6E6E6;
  209. bottom: 0;
  210. -webkit-transform: scaleY(0.5);
  211. transform: scaleY(0.5);
  212. }
  213. .period .p_tab {
  214. height: 20px;
  215. line-height: 20px;
  216. font-size: 16px;
  217. color: #999999;
  218. }
  219. .period .p_tab .dc_hd{
  220. text-align: center;
  221. }
  222. .period .p_tab .dc_hd span{
  223. display: inline-block;
  224. height: 100%;
  225. position: relative;
  226. }
  227. .period .p_tab .dc_hd+.dc_hd{
  228. border-left: 1px solid #e6e6e6;
  229. }
  230. .period .p_tab .dc_hd.active{
  231. color: #48A3FE;
  232. }
  233. .period .p_tab .dc_hd.active span:after{
  234. background: #48A3FE;
  235. left: 0;
  236. right: 0;
  237. bottom: -13px;
  238. position: absolute;
  239. content: '';
  240. height: 2px;
  241. }
  242. .perioditem .list{
  243. padding: 15px;
  244. position: relative;
  245. }
  246. .perioditem .list+.list:after{
  247. position: absolute;
  248. content: '';
  249. height: 1px;
  250. left: 15px;
  251. right: 15px;
  252. background: #E6E6E6;
  253. top: 0;
  254. -webkit-transform: scaleY(0.5);
  255. transform: scaleY(0.5);
  256. }
  257. .perioditem .list .head{
  258. margin-right: 15px;
  259. }
  260. .perioditem .list .head img{
  261. border: 1px solid #F5BA1A;
  262. width: 54px;
  263. height: 54px;
  264. border-radius: 50%;
  265. }
  266. .perioditem .list .type {
  267. font-size: 14px;
  268. }
  269. .perioditem .list .type i.red{
  270. color: #FF0000;
  271. }
  272. .perioditem .list .type i.gray{
  273. color: #999999;
  274. }
  275. .perioditem .list .btn a{
  276. display: inline-block;
  277. background: #FFFFFF;
  278. border: 1px solid #48A3FE;
  279. border-radius: 4px;
  280. height: 34px;
  281. line-height: 32px;
  282. font-size: 14px;
  283. color: #48A3FE;
  284. padding: 0 10px;
  285. }
  286. .perioditem .list .btn a.revise{
  287. padding: 0 10px;
  288. height: 26px;
  289. background: #48A3FE;
  290. color: #fff;
  291. line-height: 24px;
  292. }
  293. .taskaddbox {
  294. height: 100%;
  295. background: url(../images/taskbg.png) no-repeat center top / cover;
  296. position: relative;
  297. overflow: hidden;
  298. }
  299. .taskaddbox .headinfo{
  300. background: #FFFFFF;
  301. box-shadow: 0 0 3px 1px rgba(0,0,0,0.05);
  302. border-radius: 5px;
  303. border-bottom: 1px dotted #E6E6E6;
  304. margin: 1.34rem 30px 0;
  305. text-align: center;
  306. position: relative;
  307. padding: 68px 0 16px;
  308. }
  309. .taskaddbox .bdinfo{
  310. background: #FFFFFF;
  311. box-shadow: 0 0 3px 1px rgba(0,0,0,0.05);
  312. border-radius: 5px;
  313. border-top: none;
  314. margin: 0 30px;
  315. }
  316. .taskaddbox .headinfo .name{
  317. font-size: 20px;
  318. margin-bottom: 5px !important;
  319. }
  320. .taskaddbox .headinfo>img{
  321. width: 92px;
  322. height: 92px;
  323. border:4px solid #fff;
  324. border-radius: 50%;
  325. position: absolute;
  326. top:-46px;
  327. left: 50%;
  328. margin-left: -46px;
  329. }
  330. .taskaddbox .ftinfo{
  331. margin: 20px 30px;
  332. }
  333. .taskaddbox .ftinfo a{
  334. display: block;
  335. height: 40px;
  336. line-height: 40px;
  337. color: #fff;
  338. font-size: 14px;
  339. text-align: center;
  340. border-radius: 4px;
  341. }
  342. .taskaddbox .ftinfo .addbtn{
  343. background: #48A3FE;
  344. }
  345. .taskaddbox .ftinfo .removebtn{
  346. background: #FF0000;
  347. margin-top: 10px;
  348. }
  349. .taskaddbox .bdinfo ul {
  350. font-size: 16px;
  351. color: #CCCCCC;
  352. padding: 20px;
  353. }
  354. .taskaddbox .bdinfo li {
  355. position: relative;
  356. height: 20px;
  357. line-height: 20px;
  358. padding-left: 30px;
  359. }
  360. .taskaddbox .bdinfo ul li:after {
  361. position: absolute;
  362. content: '';
  363. left: 0rem;
  364. top: 0rem;
  365. width: 20px;
  366. height: 20px;
  367. background: url(../images/tasks0.png) no-repeat center center/20px 20px;
  368. }
  369. .taskaddbox .bdinfo ul li+li {
  370. margin-top: 15px;
  371. }
  372. .taskaddbox .bdinfo ul li.active{
  373. color: #48A3FE;
  374. }
  375. .taskaddbox .bdinfo ul li.active:after {
  376. background: url(../images/tasks1.png) no-repeat center center/20px 20px;
  377. }
  378. .sendinfo{
  379. padding: 15px;
  380. position: relative;
  381. }
  382. .sendinfo:before{
  383. position: absolute;
  384. content: '';
  385. height: 1px;
  386. left: 0px;
  387. right: 0;
  388. background: #E6E6E6;
  389. bottom: 0;
  390. -webkit-transform: scaleY(0.5);
  391. transform: scaleY(0.5);
  392. }
  393. .sendinfo .btn a{
  394. display: inline-block;
  395. background: #48A3FE;
  396. border: 1px solid #48A3FE;
  397. border-radius: 4px;
  398. height: 34px;
  399. line-height: 32px;
  400. font-size: 14px;
  401. color: #fff;
  402. padding: 0 10px;
  403. }
  404. .sendinfo .btn a.disabled{
  405. background: #FFFFFF;
  406. border: 1px solid #CCCCCC;
  407. color: #CCCCCC;
  408. }
  409. .sendinfo .dc_hd{
  410. margin-right: 40px;
  411. }
  412. .progress {
  413. height:8px;
  414. overflow:hidden;
  415. background-color:#e4eaec;
  416. border-radius:3px;
  417. -webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);
  418. box-shadow:inset 0 1px 2px rgba(0,0,0,.1)
  419. }
  420. .progress-bar {
  421. float:left;
  422. width:0;
  423. height:100%;
  424. font-size:12px;
  425. color:#fff;
  426. text-align:center;
  427. background-color:#62a8ea;
  428. -webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);
  429. box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);
  430. -webkit-transition:width .6s ease;
  431. -o-transition:width .6s ease;
  432. transition:width .6s ease;
  433. border-radius: 3px;
  434. }
  435. .progress-bar {
  436. -webkit-animation:progress-bar-stripes 2s linear infinite;
  437. -o-animation:progress-bar-stripes 2s linear infinite;
  438. animation:progress-bar-stripes 2s linear infinite
  439. }
  440. .progress-bar-indicating.active {
  441. position: relative;
  442. -webkit-animation: none;
  443. -o-animation: none;
  444. animation: none;
  445. }
  446. .progress-bar-indicating.active::before {
  447. position: absolute;
  448. top: 0;
  449. right: 0;
  450. bottom: 0;
  451. left: 0;
  452. content: "";
  453. background-color: #fff;
  454. border-radius: inherit;
  455. opacity: 0;
  456. -webkit-animation: progress-active 3s ease 0s infinite;
  457. -o-animation: progress-active 3s ease 0s infinite;
  458. animation: progress-active 3s ease 0s infinite;
  459. }
  460. @-webkit-keyframes progress-active {
  461. 0% {
  462. width:0;
  463. opacity:.4
  464. }
  465. 100% {
  466. width:100%;
  467. opacity:0
  468. }
  469. }
  470. @-o-keyframes progress-active {
  471. 0% {
  472. width:0;
  473. opacity:.4
  474. }
  475. 100% {
  476. width:100%;
  477. opacity:0
  478. }
  479. }
  480. @keyframes progress-active {
  481. 0% {
  482. width:0;
  483. opacity:.4
  484. }
  485. 100% {
  486. width:100%;
  487. opacity:0
  488. }
  489. }
  490. .sendinfo .progress{
  491. margin-bottom: 10px;
  492. }
  493. .sendinfo p{
  494. font-size: 14px;
  495. color: #666;
  496. }
  497. .tipsbox{
  498. position: fixed;
  499. left: 0;
  500. right: 0;
  501. top: 0;
  502. bottom: 0;
  503. }
  504. .tipsbox .mask{
  505. opacity: 0.5;
  506. background: rgba(0,0,0,0.50);
  507. position: absolute;
  508. left: 0;
  509. right: 0;
  510. top: 0;
  511. bottom: 0;
  512. }
  513. .tipsbox .tasktip{
  514. width: 208px;
  515. height: 135px;
  516. background: #fff;
  517. border-radius: 4px;
  518. position: absolute;
  519. font-size: 14px;
  520. color: #333333;
  521. line-height: 22px;
  522. padding: 22px 13px;
  523. right: 15px;
  524. top: 80px;
  525. }
  526. .tipsbox .tasktip .arrow {
  527. position: absolute;
  528. width: 0;
  529. height: 0;
  530. border-color: transparent;
  531. border-bottom-color: transparent;
  532. border-style: solid;
  533. top: -5px;
  534. left: 50%;
  535. margin-left: 40px;
  536. border-width: 0 5px 5px;
  537. border-bottom-color: #fff;
  538. }
  539. .tipsbox .tasktip img{
  540. margin: 5px auto 15px;
  541. width: 25px;
  542. }
  543. .taskdetail .toppanel .info{
  544. height: 3.06rem;
  545. background: url(https://t.sharingschool.com/upload/images/taskbj.png) no-repeat center center / 100% 3.06rem;
  546. width: 100%;
  547. text-align: center;
  548. position: relative;
  549. padding-top: 18px;
  550. }
  551. .taskdetail .toppanel .info .pic{
  552. height: 65px;
  553. }
  554. .taskdetail .toppanel .info img{
  555. display: inline-block;
  556. width: 65px;
  557. height: 65px;
  558. border-radius: 50%;
  559. border:2px solid #fff;
  560. }
  561. .taskdetail .toppanel .info p{
  562. font-size: 18px;
  563. color: #fff;
  564. margin-top: 8px;
  565. }
  566. .smilelevel{
  567. background: #fff;
  568. position: relative;
  569. padding: 40px 0 14px;
  570. font-size: 0;
  571. text-align: center;
  572. }
  573. .taskdetail .toppanel .info .title{
  574. width: 4.19rem;
  575. height: 1.08rem;
  576. position: absolute;
  577. left: 50%;
  578. bottom: -0.54rem;
  579. margin-left: -2.095rem;
  580. background: url(../images/tasktitle.png) no-repeat center center / 4.19rem 1.08rem;
  581. z-index: 9;
  582. }
  583. .smilelevel img{
  584. display: inline-block;
  585. width: 34px;
  586. height: 34px;
  587. }
  588. .smilelevel img+img{
  589. margin-left: 14px;
  590. }
  591. .smilelevel p{
  592. font-size: 15px;
  593. color: #FF5F43;
  594. margin-top: 15px;
  595. }
  596. .taskdetail .panel{
  597. background: #FFFFFF;
  598. border-radius: 5px;
  599. padding: 0 15px 15px;
  600. position: relative;
  601. margin-top: 10px;
  602. }
  603. .taskdetail .panel .typeT{
  604. height: 53px;
  605. line-height: 52px;
  606. border-bottom: 1px dashed #e6e6e6;
  607. font-size: 15px;
  608. color: #000000;
  609. }
  610. .taskdetail .panel .typeT span{
  611. display: inline-block;
  612. width: 27px;
  613. height: 41px;
  614. background: url(../images/taskkm.png) no-repeat center center / 27px 41px;
  615. text-align: center;
  616. color: #fff;
  617. margin-right: 7px;
  618. }
  619. .dt_t_list{
  620. padding: 15px 0;
  621. }
  622. .dt_t_list+.dt_t_list{
  623. border-top: 1px dashed #e6e6e6;
  624. }
  625. .dt_t_list .tilte{
  626. font-size: 15px;
  627. color: #666666;
  628. line-height: 22px;
  629. margin-bottom: 8px;
  630. }
  631. .dt_t_list .tilte i.iconfont{
  632. margin-right: 8px;
  633. font-size: 16px;
  634. width: 16px;
  635. height: 16px;
  636. display: inline-block;
  637. text-align: center;
  638. float: left;
  639. }
  640. .dt_t_list .tilte span{
  641. display: inline-block;
  642. }
  643. .task_ing{
  644. height: 30px;
  645. border-radius: 15px;
  646. background: #F0F7FE;
  647. position: relative;
  648. font-size: 0;
  649. color: #FFFFFF;
  650. overflow: hidden;
  651. line-height: 30px;
  652. }
  653. .task_ing .t{
  654. display: inline-block;
  655. background: #48A3FE;
  656. text-align: center;
  657. width: 60px;
  658. height: 100%;
  659. position: relative;
  660. text-align: center;
  661. font-size: 14px;
  662. }
  663. .task_ing .t:after{
  664. width: 1px;
  665. top: 2px;
  666. bottom: 2px;
  667. right: 0;
  668. content: '';
  669. position: absolute;
  670. background: #fff;
  671. -webkit-transform: scaleX(0.5);
  672. transform: scaleX(0.5);
  673. }
  674. .task_ing .ing{
  675. display: inline-block;
  676. background: #48A3FE;
  677. text-align: center;
  678. width: 60px;
  679. height: 100%;
  680. border-radius: 0 15px 15px 0;
  681. font-size: 14px;
  682. }
  683. .task_ing .ing.ing_1{
  684. width: calc(50% - 30px);
  685. }
  686. .task_ing .ing.ing_2{
  687. width: calc(100% - 60px);
  688. }
  689. .unfinished_txt {
  690. font-size: 14px;
  691. color: #999999;
  692. line-height: 18px;
  693. margin-top: 7px;
  694. }
  695. .unfinished_txt p+p{
  696. margin-top: 7px;
  697. }
  698. .dt_t_list .remark{
  699. font-size: 14px;
  700. color: #999999;
  701. line-height: 22px;
  702. margin-top: 10px;
  703. }
  704. .footbtns{
  705. padding: 8px 15px;
  706. box-shadow: 0 0 5px 2px rgba(0,0,0,0.10);
  707. }
  708. .footbtns .dc_hd a{
  709. display: block;
  710. height: 38px;
  711. line-height: 38px;
  712. border-radius: 4px;
  713. text-align: center;
  714. font-size: 14px;
  715. }
  716. .footbtns .dc_hd:nth-child(even) {
  717. margin-left: 15px;
  718. }
  719. .footbtns .dc_hd a{
  720. border:1px solid #48A3FE;
  721. background: #48A3FE;
  722. color: #fff;
  723. }
  724. .taskbox .footbtns{
  725. padding: 15px 0 0;
  726. }
  727. .shiduan_e{
  728. padding: 0 15px;
  729. }
  730. .shiduan_e .type{
  731. font-size: 17px;
  732. color: #000000;
  733. margin-right: 10px;
  734. }
  735. .shiduan_e i{
  736. font-size: 15px;
  737. color: #999999;
  738. }
  739. .shiduan_e .dc_flex{
  740. padding: 15px 0;
  741. border-bottom: 1px solid #CCCCCC;
  742. }
  743. .shiduan_e .dc_flex .btn a{
  744. display: block;
  745. width: 70px;
  746. text-align: center;
  747. height: 34px;
  748. line-height: 32px;
  749. font-size: 14px;
  750. border-radius: 4px;
  751. }
  752. .shiduan_e .dc_flex .btn a.bj{
  753. border: 1px solid #48A3FE;
  754. color: #48A3FE;
  755. }
  756. .shiduan_e .dc_flex .btn a.nozy{
  757. border: 1px solid #CCCCCC;
  758. color: #CCCCCC;
  759. }
  760. .taskeditor{
  761. background: #FFFFFF;
  762. border: 1px solid #E6E6E6;
  763. box-shadow: 0 0 3px 1px rgba(0,0,0,0.05);
  764. border-radius: 5px;
  765. margin: 10px 10px 0;
  766. padding: 0 15px;
  767. }
  768. .taskeditor .Toptitle{
  769. padding: 15px 0;
  770. position: relative;
  771. }
  772. .taskeditor .Toptitle:before{
  773. position: absolute;
  774. content: '';
  775. height: 1px;
  776. left: 0px;
  777. right: 0;
  778. background: #E6E6E6;
  779. bottom: 0;
  780. -webkit-transform: scaleY(0.5);
  781. transform: scaleY(0.5);
  782. }
  783. .taskeditor .Toptitle .btn a{
  784. display: block;
  785. background: #48A3FE;
  786. border-radius: 4px;
  787. height: 30px;
  788. line-height: 30px;
  789. width: 78px;
  790. text-align: center;
  791. font-size: 14px;
  792. color: #FFFFFF;
  793. }
  794. .taskeditor .Toptitle img{
  795. display: inline-block;
  796. vertical-align: middle;
  797. margin-right: 5px;
  798. margin-top: -3px;
  799. width: 17px;
  800. }
  801. .taskeditor .Toptitle .dc_hd{
  802. font-size: 14px;
  803. color: #000000;
  804. line-height: 30px;
  805. }
  806. .taskeditor .list{
  807. padding: 15px 0;
  808. }
  809. .taskeditor .list+.list{
  810. border-top: 1px dotted #ccc;
  811. }
  812. .radiolist{
  813. font-size: 0;
  814. margin-bottom: -10px;
  815. }
  816. .radiolist span{
  817. height: 20px;
  818. line-height: 20px;
  819. font-size: 0.3rem;
  820. color: #CCCCCC;
  821. display: inline-block;
  822. position: relative;
  823. padding-left: 0.56rem;
  824. margin-bottom: 10px;
  825. }
  826. .block_span .radiolist span{
  827. display: block;
  828. }
  829. .block_linespan{
  830. margin-top: 15px;
  831. }
  832. .block_linespan .radiolist{
  833. margin-right: -20px;
  834. }
  835. .block_linespan .radiolist span{
  836. display: inline-block;
  837. margin-right: 20px;
  838. }
  839. .radiolist span.active{
  840. color: #48A3FE;
  841. }
  842. .radiolist span:after{
  843. content: '';
  844. position: absolute;
  845. width: 20px;
  846. height: 20px;
  847. left: 0;
  848. top: 0;
  849. background: url(../images/tasks0.png) no-repeat center center / 20px 20px;
  850. display: inline-block;
  851. }
  852. .radiolist span.active:after{
  853. background: url(../images/tasks1.png) no-repeat center center / 20px 20px;
  854. }
  855. .dc_hd .radiolist span{
  856. width: 50%;
  857. }
  858. .taskeditor .dc_type{
  859. line-height: 20px;
  860. font-size: 14px;
  861. color: #666666;
  862. margin-right: 0.4rem;
  863. overflow: hidden;
  864. }
  865. .taskeditor .dc_type.add_title_type{
  866. margin-right: 0;
  867. }
  868. .taskeditor .dc_type.add_title_type a{
  869. float: right;
  870. color: #48A3FE;
  871. font-size: 15px;
  872. }
  873. .taskeditor .dc_type i{
  874. color: red;
  875. vertical-align: middle;
  876. }
  877. .taskeditor .dc_type~.radiolist{
  878. margin-top: 10px;
  879. }
  880. .taskeditor .dc_type~.radiolist span{
  881. width: auto;
  882. margin-right: 30px;
  883. }
  884. .taskeditor .list .dc_hd input,.taskeditor .list .dc_hd select{
  885. background: #FFFFFF;
  886. border: 1px solid #3499FF;
  887. border-radius: 4px;
  888. margin: 0;
  889. height: 34px;
  890. font-size: 14px;
  891. padding-left:10px ;
  892. padding-right: 10px;
  893. }
  894. .taskeditor .list .blockbox{
  895. margin-top: 15px;
  896. }
  897. .taskeditor .list .blockbox textarea{
  898. background: #F4F4F4;
  899. border: 1px solid #D6D6D6;
  900. border-radius: 4px;
  901. margin: 0;
  902. font-size: 14px;
  903. padding: 15px;
  904. }
  905. .taskeditor .img_div{
  906. margin-left: -10px;
  907. font-size: 0;
  908. margin-top: -10px;
  909. }
  910. .taskeditor .list .inlist{
  911. margin-top: 20px;
  912. }
  913. .taskeditor .list .inlist .dc_type{
  914. color: #999;
  915. }
  916. .unfinishitem{
  917. background: #F1F8FF;
  918. border-radius: 4px;
  919. padding: 15px;
  920. }
  921. .unfinishitem .radiolist span{
  922. width: 50%;
  923. }
  924. .taskdetail .txt{
  925. font-size: 16px;
  926. color: #333;
  927. line-height: 22px;
  928. padding: 15px 0 20px;
  929. }
  930. .taskdetail .txt p{
  931. text-indent: 32px;
  932. }
  933. .taskdetail .txt p+p{
  934. margin-top: 10px;
  935. }
  936. .taskdetail .txt .cttips{
  937. min-height: 32px;
  938. background: #FFF1F3;
  939. border-radius: 4px;
  940. color: #4C4C4C;
  941. font-size: 13px;
  942. padding: 6px 5px 6px 15px;
  943. margin: 10px 0;
  944. }
  945. .taskdetail .txt .cttips span{
  946. display: inline-block;
  947. margin-right: 10px;
  948. }
  949. .taskdetail .txt .cttips span i{
  950. font-size: 12px;
  951. color: #FF0022;
  952. display: inline-block;
  953. border: 1px solid #FF0022;
  954. border-radius: 2px;
  955. height: 18px;
  956. line-height: 16px;
  957. background: #fff;
  958. padding: 0 3px;
  959. margin-left: 4px;
  960. margin-top: -3px;
  961. font-size: 12px;
  962. }
  963. .taskdetail .C_title{
  964. position: absolute;
  965. width: 144px;
  966. height: 34px;
  967. border-radius: 17px;
  968. text-align: center;
  969. line-height: 34px;
  970. background: #48A3FE;
  971. font-size: 15px;
  972. color: #FFFFFF;
  973. top: -17px;
  974. left: 50%;
  975. margin-left: -72px;
  976. }
  977. .taskdetail .C_title img{
  978. width: 17px;
  979. display: inline-block;
  980. vertical-align: middle;
  981. margin-right: 5px;
  982. margin-top: -3px;
  983. }
  984. .tasksendbox{
  985. padding: 30px 20px 15px;
  986. }
  987. .tasksendbox p{
  988. font-size: 16px;
  989. color: #666666;
  990. line-height: 25px;
  991. margin-bottom: 30px !important;
  992. }
  993. .tasksendbox a{
  994. display: block;
  995. height: 38px;
  996. line-height: 38px;
  997. border-radius: 4px;
  998. font-size: 14px;
  999. }
  1000. .tasksendbox a.btn1{
  1001. background: #48A3FE;
  1002. color: #fff;
  1003. }
  1004. .tasksendbox a.btn2{
  1005. background: #fff;
  1006. color: #48A3FE;
  1007. border:1px solid #48A3FE;
  1008. margin-top: 10px;
  1009. }
  1010. .c_send_list{
  1011. padding: 15px;
  1012. }
  1013. .c_send_list .pic{
  1014. overflow: hidden;
  1015. margin-right: 10px;
  1016. }
  1017. .c_send_list .pic img{
  1018. width: 34px;
  1019. height: 34px;
  1020. border-radius: 50%;
  1021. }
  1022. .c_send_list .time_name{
  1023. font-size: 17px;
  1024. color: #000000;
  1025. }
  1026. .c_send_list .ftlist{
  1027. margin-top: 10px;
  1028. }
  1029. .c_send_list .ftlist .txt{
  1030. margin-right: 15px;
  1031. font-size: 14px;
  1032. color: #666666;
  1033. width: 150px;
  1034. }
  1035. .worked-item {
  1036. margin: 30px 0;
  1037. display: -webkit-flex;
  1038. }
  1039. .worked-item .work {
  1040. flex: 1;
  1041. text-align: center;
  1042. font-size: 15px;
  1043. color: #666;
  1044. }
  1045. .work-speed {
  1046. width: 47px;
  1047. height: 65px;
  1048. margin: 0 auto;
  1049. background-size: 100% !important;
  1050. }
  1051. .work-speed.level1 {
  1052. background: url(../images/icon-speed-1.png) no-repeat;
  1053. }
  1054. .work-speed.level2 {
  1055. background: url(../images/icon-speed-2.png) no-repeat;
  1056. }
  1057. .work-speed.level3 {
  1058. background: url(../images/icon-speed-3.png) no-repeat;
  1059. }
  1060. .work-speed.level4 {
  1061. background: url(../images/icon-speed-4.png) no-repeat;
  1062. }
  1063. .work-circle {
  1064. width: 64px;
  1065. height: 55px;
  1066. margin: 0 auto;
  1067. text-align:center;
  1068. line-height: 60px;
  1069. color: #FF7C63;
  1070. background-size: 100% !important;
  1071. }
  1072. .work-circle[level1] {
  1073. background: url(../images/icon-circle-1.png) no-repeat;
  1074. }
  1075. .work-circle[level2] {
  1076. background: url(../images/icon-circle-2.png) no-repeat;
  1077. }
  1078. .work-circle[level3] {
  1079. background: url(../images/icon-circle-3.png) no-repeat;
  1080. }
  1081. .work-circle[level4] {
  1082. background: url(../images/icon-circle-4.png) no-repeat;
  1083. }
  1084. .work-write {
  1085. width: 35px;
  1086. height: 74px;
  1087. margin: 0 auto;
  1088. text-align:center;
  1089. background-size: 100% !important;
  1090. }
  1091. .work-write.level1 {
  1092. background: url(../images/icon-write-1.png) no-repeat;
  1093. }
  1094. .work-write.level2 {
  1095. background: url(../images/icon-write-2.png) no-repeat;
  1096. }
  1097. .work-write.level3 {
  1098. background: url(../images/icon-write-3.png) no-repeat;
  1099. }
  1100. .work-write.level4 {
  1101. background: url(../images/icon-write-4.png) no-repeat;
  1102. }
  1103. div.icon-box{
  1104. height: 80px;
  1105. display: -webkit-box;
  1106. -webkit-box-orient: center;
  1107. -webkit-box-pack: center;
  1108. -webkit-box-orient: vertical;
  1109. margin: 10px 0;
  1110. position: relative;
  1111. }
  1112. .p-value-text{
  1113. position: absolute;
  1114. text-align: center;
  1115. width: 100%;
  1116. color: #FFCE48;
  1117. font-size: 16px;
  1118. }
  1119. .work-circlebg{
  1120. width: 100px;
  1121. height: 100px;
  1122. position: absolute;
  1123. top: 10px;
  1124. right: 20px;
  1125. }
  1126. .work-circlebg .txt{
  1127. position: absolute;
  1128. width: 100%;
  1129. bottom: -25px;
  1130. text-align: center;
  1131. font-size: 14px;
  1132. color: #fff;
  1133. opacity: 0.8;
  1134. }
  1135. .flow_text{
  1136. position: absolute;
  1137. text-align: center;
  1138. width: 100px;
  1139. top: 20px;
  1140. color: #fff;
  1141. font-size: 38px;
  1142. }
  1143. .tasktypetab{
  1144. margin: 0 -15px;
  1145. }
  1146. .tasktypetab i{
  1147. display: inline-block;
  1148. width: 0.74rem;
  1149. height: 0.65rem;
  1150. }
  1151. .tasktypetab .dc_hd{
  1152. text-align: center;
  1153. color: #E1E1E1;
  1154. position: relative;
  1155. }
  1156. .tasktypetab .dc_hd.active{
  1157. color: #000;
  1158. }
  1159. .tasktypetab .dc_flex>div{
  1160. padding: 20px 0;
  1161. }
  1162. .tasktypetab .iconyw{
  1163. background: url(../images/iconyw0.png) no-repeat center center /0.74rem 0.65rem;
  1164. }
  1165. .tasktypetab .iconsx{
  1166. background: url(../images/iconsx0.png) no-repeat center center /0.74rem 0.65rem;
  1167. }
  1168. .tasktypetab .iconyy{
  1169. background: url(../images/iconyy0.png) no-repeat center center /0.74rem 0.65rem;
  1170. }
  1171. .tasktypetab .iconzt{
  1172. background: url(../images/iconzt0.png) no-repeat center center /0.74rem 0.65rem;
  1173. }
  1174. .tasktypetab .iconqt{
  1175. background: url(../images/iconqt0.png) no-repeat center center /0.74rem 0.65rem;
  1176. }
  1177. .mui-active .iconyw{
  1178. background: url(../images/iconyw.png) no-repeat center center /0.74rem 0.65rem;
  1179. }
  1180. .mui-active .iconsx{
  1181. background: url(../images/iconsx.png) no-repeat center center /0.74rem 0.65rem;
  1182. }
  1183. .mui-active .iconyy{
  1184. background: url(../images/iconyy.png) no-repeat center center /0.74rem 0.65rem;
  1185. }
  1186. .mui-active .iconzt{
  1187. background: url(../images/iconzt.png) no-repeat center center /0.74rem 0.65rem;
  1188. }
  1189. .mui-active .iconqt{
  1190. background: url(../images/iconqt.png) no-repeat center center /0.74rem 0.65rem;
  1191. }
  1192. .tasktypetab .active .iconyw{
  1193. background: url(../images/iconyw.png) no-repeat center center /0.74rem 0.65rem;
  1194. }
  1195. .tasktypetab .active .iconsx{
  1196. background: url(../images/iconsx.png) no-repeat center center /0.74rem 0.65rem;
  1197. }
  1198. .tasktypetab .active .iconyy{
  1199. background: url(../images/iconyy.png) no-repeat center center /0.74rem 0.65rem;
  1200. }
  1201. .tasktypetab .active .iconzt{
  1202. background: url(../images/iconzt.png) no-repeat center center /0.74rem 0.65rem;
  1203. }
  1204. .tasktypetab .line{
  1205. padding-top: 35px !important;
  1206. }
  1207. .tasktypetab .line img{
  1208. width: 0.8rem;
  1209. }
  1210. .tasktypetab .dc_hd.active:before{
  1211. position: absolute;
  1212. width: 0;
  1213. height: 0;
  1214. border-color: transparent;
  1215. border-top-color: transparent;
  1216. border-style: solid;
  1217. bottom: -18px;
  1218. left: 50%;
  1219. margin-left: -6px;
  1220. border-width: 0 6px 6px;
  1221. border-bottom-color: #fff;
  1222. content: '';
  1223. }
  1224. .period2 .mui-scroll{
  1225. font-size: 0;
  1226. }
  1227. .period2 .mui-segmented-control.mui-scroll-wrapper .mui-control-item{
  1228. padding: 20px 0 14px;
  1229. text-align: center;
  1230. width: 3.3rem;
  1231. font-size: 16px;
  1232. color: #999999;
  1233. line-height: 1;
  1234. position: relative;
  1235. }
  1236. .period2 .mui-segmented-control.mui-scroll-wrapper .mui-control-item+.mui-control-item:after{
  1237. position: absolute;
  1238. content: '';
  1239. height: 20px;
  1240. width: 1px;
  1241. left: 0px;
  1242. top: 20px;
  1243. background: #E6E6E6;
  1244. bottom: 0;
  1245. }
  1246. .period2 .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active {
  1247. color: #007aff;
  1248. border-bottom: none;
  1249. background: 0 0;
  1250. }
  1251. .period2 .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active span{
  1252. display: inline-block;
  1253. position: relative;
  1254. }
  1255. .period2 .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active span:after{
  1256. background: #48A3FE;
  1257. left: 0;
  1258. right: 0;
  1259. bottom: -13px;
  1260. position: absolute;
  1261. content: '';
  1262. height: 2px;
  1263. }
  1264. .period2 .mui-segmented-control.mui-scroll-wrapper .mui-scroll{
  1265. height: 50px;
  1266. }
  1267. .period2 .mui-segmented-control.mui-scroll-wrapper{
  1268. height: 50px;
  1269. position: relative;
  1270. }
  1271. .period2 .mui-segmented-control.mui-scroll-wrapper:after{
  1272. position: absolute;
  1273. content: '';
  1274. height: 1px;
  1275. left: 0px;
  1276. right: 0;
  1277. background: #E6E6E6;
  1278. bottom: 0;
  1279. -webkit-transform: scaleY(0.5);
  1280. transform: scaleY(0.5);
  1281. }
  1282. .tasktypetab .mui-segmented-control.mui-scroll-wrapper{
  1283. height: 102px;
  1284. }
  1285. .tasktypetab .mui-segmented-control.mui-scroll-wrapper .mui-scroll{
  1286. height: 102px;
  1287. font-size: 0;
  1288. }
  1289. .tasktypetab .mui-segmented-control.mui-scroll-wrapper .mui-control-item{
  1290. line-height: 22px;
  1291. height: 102px;
  1292. padding: 20px;
  1293. width: 1.62rem;
  1294. position: relative;
  1295. overflow: inherit;
  1296. color: #E1E1E1;
  1297. }
  1298. .tasktypetab .mui-segmented-control.mui-scroll-wrapper .mui-control-item+.mui-control-item{
  1299. margin-left: 1.02rem;
  1300. }
  1301. .tasktypetab .mui-segmented-control.mui-scroll-wrapper .mui-control-item+.mui-control-item:before{
  1302. content: '';
  1303. position: absolute;
  1304. width: 1.02rem;
  1305. height: 0.16rem;
  1306. overflow: inherit;
  1307. left: -1.02rem;
  1308. background: url(../images/line_h.png) no-repeat center center / 1.02rem 0.16rem;
  1309. top: 0.65rem;
  1310. }
  1311. .tasktypetab .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active {
  1312. color: #000;
  1313. border-bottom: none;
  1314. background: 0 0;
  1315. }
  1316. .tasktypetab .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active:after {
  1317. position: absolute;
  1318. width: 0;
  1319. height: 0;
  1320. border-color: transparent;
  1321. border-top-color: transparent;
  1322. border-style: solid;
  1323. bottom: -18px;
  1324. left: 50%;
  1325. margin-left: -6px;
  1326. border-width: 0 6px 6px;
  1327. border-bottom-color: #fff;
  1328. content: '';
  1329. }
  1330. .single_s .btn {
  1331. text-align: right;
  1332. margin-top: 15px;
  1333. }
  1334. .single_s .inputfile{
  1335. position: relative;
  1336. display: inline-block;
  1337. height: 34px;
  1338. overflow: hidden;
  1339. width: 116px;
  1340. }
  1341. .single_s .inputfile input[type=file]{
  1342. position: absolute;
  1343. width: 100%;
  1344. height: 100%;
  1345. opacity: 0;
  1346. left: 0;
  1347. top: 0;
  1348. opacity: 0;
  1349. }
  1350. .single_s .btn a{
  1351. display: inline-block;
  1352. color: #fff;
  1353. height: 34px;
  1354. padding: 0 9px;
  1355. line-height: 34px;
  1356. background: #48A3FE;
  1357. font-size: 14px;
  1358. border-radius: 4px;
  1359. }
  1360. .dt_xxjy{
  1361. background: #F6FCFF;
  1362. border-radius: 4px;
  1363. padding: 15px 12px;
  1364. position: relative;
  1365. }
  1366. .dt_xxjy .title{
  1367. width: 90px;
  1368. height: 24px;
  1369. line-height: 24px;
  1370. border-radius: 0 12px 12px 0;
  1371. color: #fff;
  1372. text-align: center;
  1373. font-size: 13px;
  1374. position: absolute;
  1375. top: 10px;
  1376. left: 0;
  1377. z-index: 9;
  1378. background: #48A3FE;
  1379. }
  1380. .dt_xxjy .dc_flex{
  1381. margin-top: 15px;
  1382. }
  1383. .dt_xxjy .pic{
  1384. width: 1.37rem;
  1385. height: 1.71rem;
  1386. margin-right: 15px;
  1387. }
  1388. .dt_xxjy .dc_hd span{
  1389. display: block;
  1390. background: #48A3FE;
  1391. height: 26px;
  1392. line-height: 26px;
  1393. width: 90px;
  1394. color: #fff;
  1395. text-align: center;
  1396. border-radius: 13px;
  1397. font-size: 13px;
  1398. }
  1399. .dt_xxjy .dc_hd p{
  1400. font-size: 15px;
  1401. color: #333333;
  1402. margin-top: 6px;
  1403. text-indent: 32px;
  1404. line-height: 21px;
  1405. }
  1406. .dt_t_list .ctjl {
  1407. height: auto;
  1408. }
  1409. .dt_t_list .swiper-wrapper,.up_pic_item .swiper-wrapper{
  1410. z-index: inherit;
  1411. }
  1412. .dt_t_list .swiper-container,.up_pic_item .swiper-container {
  1413. width: 100%;
  1414. z-index: inherit;
  1415. }
  1416. .swiper-container {
  1417. width: 100%;
  1418. height: 100%;
  1419. }
  1420. .up_pic_item .swiper-slide,.dt_t_list .swiper-slide {
  1421. text-align: center;
  1422. font-size: 18px;
  1423. background: #fff;
  1424. width: 130px;
  1425. height:130px;
  1426. /* Center slide text vertically */
  1427. display: -webkit-box;
  1428. display: -ms-flexbox;
  1429. display: -webkit-flex;
  1430. display: flex;
  1431. -webkit-box-pack: center;
  1432. -ms-flex-pack: center;
  1433. -webkit-justify-content: center;
  1434. justify-content: center;
  1435. -webkit-box-align: center;
  1436. -ms-flex-align: center;
  1437. -webkit-align-items: center;
  1438. }
  1439. .dt_t_list .swiper-slide img,.up_pic_item .swiper-slide img{
  1440. width: 100%;
  1441. height: 100%;
  1442. }
  1443. .kemu_list{
  1444. display: none;
  1445. }
  1446. .kemu_list.active{
  1447. display: block;
  1448. }
  1449. .kemu_list div[name=unend]{
  1450. display: none
  1451. }
  1452. .btn_up_ctjl{
  1453. width: 100%;
  1454. background: #F5F5F5;
  1455. border-radius: 4px;
  1456. height: 44px;
  1457. line-height: 44px;
  1458. text-align: center;
  1459. font-size: 14px;
  1460. margin-top: 15px;
  1461. color: #48A3FE;
  1462. }
  1463. .btn_up_ctjl i{
  1464. margin-right: 4px;
  1465. vertical-align: middle;
  1466. margin-top: -3px;
  1467. }
  1468. /*ͼƬ�༭*/
  1469. .editpicbox{
  1470. background: #000;
  1471. position: fixed;
  1472. top: 0;
  1473. bottom: 0;
  1474. left: 0;
  1475. right: 0;
  1476. z-index: 999;
  1477. height: 100%;
  1478. display: none;
  1479. }
  1480. .editpicbox .editimg{
  1481. height: calc(100% - 54px);
  1482. position: relative;
  1483. }
  1484. .editpicbox .editfoot {
  1485. height: 54px;
  1486. background: #fff;
  1487. padding: 8px 15px;
  1488. }
  1489. .editfoot .dc_hd a {
  1490. display: block;
  1491. height: 38px;
  1492. line-height: 38px;
  1493. border-radius: 4px;
  1494. text-align: center;
  1495. font-size: 14px;
  1496. border: 1px solid #48A3FE;
  1497. background: #48A3FE;
  1498. color: #fff;
  1499. }
  1500. .editfoot .dc_hd:first-child a{
  1501. border: 1px solid #48A3FE;
  1502. background: #ffffff;
  1503. color: #48A3FE;
  1504. }
  1505. .editfoot .dc_hd+.dc_hd{
  1506. margin-left: 10px;
  1507. }
  1508. .editpicbox .pic {
  1509. position: absolute;
  1510. display: -webkit-box;
  1511. display: -webkit-flex;
  1512. display: flex;
  1513. -webkit-box-align: center;
  1514. -webkit-align-items: center;
  1515. align-items: center;
  1516. -webkit-box-pack: center;
  1517. -webkit-justify-content: center;
  1518. justify-content: center;
  1519. left: 0;
  1520. right: 0;
  1521. bottom: 0;
  1522. top: 0;
  1523. width: 100%;
  1524. height: 100%;
  1525. margin: 0;
  1526. -webkit-backface-visibility: hidden;
  1527. }
  1528. .editpicbox .pic .rq{
  1529. display: inline-block;
  1530. position: relative;
  1531. max-height: 100%;
  1532. overflow: hidden;
  1533. }
  1534. .editpicbox .pic .rq img {
  1535. max-height: 100%;
  1536. width: auto;
  1537. }
  1538. .editpicbox .pic .rq .draggable{
  1539. }
  1540. .editpicbox .pic .rq .draggable {
  1541. max-width: 50%;
  1542. min-height: 34px;
  1543. display: inline-block;
  1544. position: absolute;
  1545. top: 10px;
  1546. left: 15px;
  1547. }
  1548. .editpicbox .pic .rq .draggable:after{
  1549. position: absolute;
  1550. content: '';
  1551. width: 4px;
  1552. height: 4px;
  1553. border-radius: 50%;
  1554. border:3px solid #333;
  1555. top: -8px;
  1556. left: -13px;
  1557. }
  1558. .editpicbox .pic .rq .draggable .bg{
  1559. position: absolute;
  1560. left: 0;
  1561. right: 0;
  1562. height: 100%;
  1563. background: #000;
  1564. opacity: .6;
  1565. overflow: hidden;
  1566. border-radius: 0px 17px 0 17px;
  1567. }
  1568. .editpicbox .pic .rq .draggable .txt{
  1569. position: relative;
  1570. font-size: 14px;
  1571. line-height: 20px;
  1572. color: #fff;
  1573. padding: 7px 15px;
  1574. }
  1575. .editpicbox .pic .rq .draggable.is-pointer-down {
  1576. background: #48A3FE;
  1577. opacity: .6;
  1578. border-radius: 0px 17px 0 17px;
  1579. }
  1580. .editpic_textarea{
  1581. padding: 15px 15px;
  1582. background: #fff;
  1583. overflow: hidden;
  1584. }
  1585. .editpic_textarea textarea{
  1586. margin: 0;
  1587. font-size: 15px;
  1588. border: none;
  1589. }
  1590. .foottask{
  1591. background: #FFFFFF;
  1592. box-shadow: 0 0 7px 0 rgba(0,0,0,0.20);
  1593. height: 48px;
  1594. position: fixed;
  1595. bottom: 0;
  1596. left: 0;
  1597. z-index: 10;
  1598. right: 0;
  1599. }
  1600. .foottask~.mui-content{
  1601. padding-bottom: 58px;
  1602. }
  1603. .foottask .dc_hd{
  1604. text-align: center;
  1605. line-height: 48px;
  1606. font-size: 16px;
  1607. color: #999999;
  1608. }
  1609. .foottask .dc_hd.active{
  1610. color: #000;
  1611. }
  1612. .foottask .dc_hd i{
  1613. margin-right: 6px;
  1614. vertical-align: middle;
  1615. margin-top: -4px;
  1616. }
  1617. .foottask .dc_hd i.pic01{
  1618. display: inline-block;
  1619. width: 20px;
  1620. height: 17px;
  1621. background: url(../images/task_pic01.png) no-repeat center center/20px 17px;
  1622. }
  1623. .foottask .dc_hd.active i.pic01{
  1624. display: inline-block;
  1625. width: 20px;
  1626. height: 17px;
  1627. background: url(../images/task_pic011.png) no-repeat center center/20px 17px;
  1628. }
  1629. .foottask .dc_hd i.pic02{
  1630. display: inline-block;
  1631. width: 18px;
  1632. height: 18px;
  1633. background: url(../images/task_pic02.png) no-repeat center center/18px 18px;;
  1634. }
  1635. .foottask .dc_hd.active i.pic02{
  1636. display: inline-block;
  1637. width: 18px;
  1638. height: 18px;
  1639. background: url(../images/task_pic022.png) no-repeat center center/18px 18px;;
  1640. }
  1641. .dt_title{
  1642. height: 44px;
  1643. line-height: 44px;
  1644. position: relative;
  1645. color: #999999;
  1646. font-size: 15px;
  1647. padding-left: 15px;
  1648. }
  1649. .dt_title:before{
  1650. position: absolute;
  1651. content: '';
  1652. height: 1px;
  1653. left: 0px;
  1654. right: -15px;
  1655. background: #E6E6E6;
  1656. bottom: 0;
  1657. -webkit-transform: scaleY(0.5);
  1658. transform: scaleY(0.5);
  1659. }
  1660. .dt_title:after{
  1661. width: 5px;
  1662. height: 15px;
  1663. background-image: linear-gradient(180deg, #73B9FF 0%, #4892FE 100%);
  1664. border-radius: 2.5px;
  1665. position: absolute;
  1666. content: '';
  1667. left: 0px;
  1668. top: 14px;
  1669. }
  1670. .taskdetail .panel .nr{
  1671. background: #F8F9FA;
  1672. border-radius: 5px;
  1673. padding: 10px;
  1674. display: none;
  1675. }
  1676. .taskdetail .panel .nr.active{
  1677. display: block;
  1678. }
  1679. .tabkm{
  1680. margin: 15px 0;
  1681. text-align: center;
  1682. }
  1683. .tabkm a{
  1684. display: inline-block;
  1685. width: 76px;
  1686. height: 28px;
  1687. line-height: 26px;
  1688. border-radius: 19px;
  1689. text-align: center;
  1690. border: 1px solid #48A3FE;
  1691. background: #FFFFFF;
  1692. font-size: 15px;
  1693. color: #48A3FE;
  1694. }
  1695. .tabkm a.active{
  1696. background-image: linear-gradient(90deg, #73B9FF 0%, #4892FE 100%);
  1697. color: #fff;
  1698. }
  1699. .tabkm a+a{
  1700. margin-left: 10px;
  1701. }
  1702. .zy_info{
  1703. margin-top: 10px;
  1704. padding-left: 26px;
  1705. position: relative;
  1706. padding-right: 100px;
  1707. }
  1708. .zy_info .pic{
  1709. width: 89px;
  1710. position: absolute;
  1711. right: 0;
  1712. top: -50px;
  1713. transform:rotate(-25deg);
  1714. }
  1715. .zy_info .pic img{
  1716. position: relative;
  1717. }
  1718. .zy_info .pic .time{
  1719. position: absolute;
  1720. width: 100%;
  1721. text-align: center;
  1722. color: #ff5a5b;
  1723. top: 50px;
  1724. font-size: 13px;
  1725. }
  1726. .zy_info p{
  1727. font-size: 15px;
  1728. color: #999999;
  1729. line-height: 23px;
  1730. }
  1731. .zy_info p+p{
  1732. margin-top: 10px;
  1733. }
  1734. .zsdbox{
  1735. position: relative;
  1736. margin-left: 26px;
  1737. padding-left: 20px;
  1738. }
  1739. .zwzzdbox {
  1740. display: none;
  1741. margin-top: 15px;
  1742. }
  1743. .zwzzdbox .zsdbox{
  1744. margin-left: 2px;
  1745. }
  1746. .zsdbox+.zsdbox{
  1747. margin-top: 15px;;
  1748. }
  1749. /*.zsdbox:after{
  1750. position: absolute;
  1751. content: '';
  1752. width: 1px;
  1753. height: auto;
  1754. top: 11px;
  1755. bottom: 11px;
  1756. left: 4.5px;
  1757. background: #FA1F5D;
  1758. }*/
  1759. .zsdbox .title{
  1760. font-size: 18px;
  1761. color: #333333;
  1762. line-height: 24px;
  1763. position: relative;
  1764. margin-bottom: 15px;
  1765. padding-left: 5px;
  1766. }
  1767. .zsdbox .title:after{
  1768. position: absolute;
  1769. content: '';
  1770. width: 10px;
  1771. height: 10px;
  1772. background: #FA1F5D;
  1773. left: -20px;
  1774. top: 7px;
  1775. }
  1776. .zsdbox .title:before{
  1777. content: "";
  1778. width: 1px;
  1779. top: 11px;
  1780. bottom: -26px;
  1781. left: -15px;
  1782. background: #FA1F5D;
  1783. position: absolute;
  1784. }
  1785. .zsdbox .li{
  1786. font-size: 15px;
  1787. color: #333333;
  1788. line-height: 23px;
  1789. position: relative;
  1790. padding-left: 5px;
  1791. }
  1792. .zsdbox .li:after{
  1793. position: absolute;
  1794. content: '';
  1795. top: 11px;
  1796. height: 1px;
  1797. width: 10px;
  1798. background: #FA1F5D;
  1799. left: -15px;
  1800. }
  1801. /*.zsdbox .li:after{
  1802. position: absolute;
  1803. content: '';
  1804. top: 10px;
  1805. height: 3px;
  1806. width: 3px;
  1807. border-radius: 50%;
  1808. background: #FA1F5D;
  1809. left: -5px;
  1810. }*/
  1811. .zsdbox .li:before {
  1812. content: "";
  1813. width: 1px;
  1814. top: 11px;
  1815. bottom: -16px;
  1816. left: -15px;
  1817. background: #FA1F5D;
  1818. position: absolute;
  1819. }
  1820. .zsdbox .li:last-child:before {
  1821. display: none;
  1822. }
  1823. .zsdbox .li+.li{
  1824. margin-top: 5px;
  1825. }
  1826. .zsdbox .li .bq{
  1827. display: inline-block;
  1828. height: 21px;
  1829. line-height: 19px;
  1830. border-radius: 3px;
  1831. text-align: center;
  1832. padding: 0 8px;
  1833. margin-left: 8px;
  1834. font-size: 12px;
  1835. }
  1836. .zsdbox .li .bq_sj{
  1837. color: #FFB800;
  1838. border: 1px solid #FFB800;
  1839. }
  1840. .zsdbox .li .bq_lj{
  1841. color: #50E3C2;
  1842. border: 1px solid #50E3C2;
  1843. }
  1844. .zsdbox .li .bq_yy{
  1845. color: #58BAEA;
  1846. border: 1px solid #58BAEA;
  1847. }
  1848. .add-zsd-dialog{
  1849. position: fixed;
  1850. top: 0;
  1851. bottom: 0;
  1852. left: 0;
  1853. right: 0;
  1854. z-index: 2000;
  1855. background: #f2f2f2;
  1856. display: none
  1857. }
  1858. .dialogfootbtns {
  1859. position: fixed;
  1860. bottom: 0;
  1861. left: 0;
  1862. right: 0;
  1863. background: #fff;
  1864. z-index: 2001;
  1865. }
  1866. .dialogfootbtns {
  1867. padding: 8px 15px;
  1868. box-shadow: 0 0 5px 2px rgba(0,0,0,0.10);
  1869. }
  1870. .dialogfootbtns .dc_hd a {
  1871. display: block;
  1872. height: 38px;
  1873. line-height: 38px;
  1874. border-radius: 4px;
  1875. text-align: center;
  1876. font-size: 14px;
  1877. }
  1878. .dialogfootbtns .dc_hd a {
  1879. border: 1px solid #48A3FE;
  1880. background: #48A3FE;
  1881. color: #fff;
  1882. }
  1883. .dialogfootbtns .dc_hd:nth-child(even) {
  1884. margin-left: 15px;
  1885. }
  1886. .add-zsd-nr{
  1887. height: calc(100% - 54px);
  1888. overflow-y: auto;
  1889. background: #f2f2f2;
  1890. }
  1891. .zsditem{
  1892. padding-bottom: 10px;
  1893. }
  1894. .zsditem .list{
  1895. background: #fff;
  1896. }
  1897. .zsditem .list .titleone{
  1898. font-size: 16px;
  1899. color: #333333;
  1900. line-height: 22px;
  1901. padding: 16px 15px;
  1902. }
  1903. .zsditem .list .dc_type{
  1904. font-size: 14px;
  1905. color: #666666;
  1906. line-height: 20px;
  1907. }
  1908. .zsditem .list .btn_up_ctjl{
  1909. margin-top: 5px;
  1910. }
  1911. .zsditem .titleone{
  1912. border-bottom: 1px solid #e6e6e6;
  1913. }
  1914. .zsditem .downselectitem{
  1915. border-bottom: 1px solid #e6e6e6;
  1916. display: none;
  1917. }
  1918. .zsditem .titleone.active~.downselectitem{
  1919. display: block;
  1920. }
  1921. .zsditem .downlist .upctpic{
  1922. display: none
  1923. }
  1924. .zsditem .downlist .upctpic{
  1925. display: block;
  1926. }
  1927. .zsditem .titleone.active .iconf{
  1928. transform:rotate(180deg);
  1929. }
  1930. .zsditem .downlist{
  1931. padding: 16px 15px;
  1932. position: relative;
  1933. }
  1934. .zsditem .downlist+.downlist:before{
  1935. position: absolute;
  1936. content: '';
  1937. height: 1px;
  1938. left: 15px;
  1939. right: 0;
  1940. background: #E6E6E6;
  1941. top: 0;
  1942. -webkit-transform: scaleY(0.5);
  1943. transform: scaleY(0.5);
  1944. }
  1945. .zsditem .downlist .selecticon{
  1946. margin-right: 15px;
  1947. height: 20px;
  1948. }
  1949. .zsditem .downlist .selecticon i{
  1950. display: inline-block;
  1951. width: 20px;
  1952. height: 20px;
  1953. background: url(../images/radio.png) no-repeat center center / 20px 20px;
  1954. }
  1955. .zsditem .downlist.active .selecticon i{
  1956. width: 20px;
  1957. height: 20px;
  1958. background: url(../images/radio_h.png) no-repeat center center / 20px 20px;
  1959. }
  1960. .zsditem .downlist .txt{
  1961. font-size: 15px;
  1962. color: #CCCCCC;
  1963. line-height: 23px;
  1964. }
  1965. .zsditem .downlist.active .txt{
  1966. color: #333333;
  1967. }
  1968. .zsditem .downlist.active .switchtext,.zsditem .downlist.active .upctpic{
  1969. display: block;
  1970. overflow: hidden;
  1971. font-size: 0;
  1972. }
  1973. .zsditem .downlist .switchtext,.zsditem .downlist .upctpic{
  1974. margin-top: 15px;
  1975. display: none;
  1976. }
  1977. .zsditem .downlist .switchtext textarea{
  1978. background: #F4F4F4;
  1979. border: 1px solid #D6D6D6;
  1980. border-radius: 4px;
  1981. padding: 8px 10px;
  1982. color: #333;
  1983. font-size: 14px;
  1984. margin: 0;
  1985. }
  1986. .topnewbox{
  1987. height: 194px;
  1988. background: #93d92c url(../images/bj.png) no-repeat center top /100%;
  1989. position: relative;
  1990. }
  1991. .topnewbox .foottxt{
  1992. height: 69px;
  1993. position: absolute;
  1994. bottom: 0px;
  1995. left: 0;
  1996. right: 0;
  1997. }
  1998. .topnewbox .foottxt .bg{
  1999. position: absolute;
  2000. height: 69px;
  2001. left: 0;
  2002. right: 0;
  2003. opacity: 0.1;
  2004. background: #417505;
  2005. }
  2006. .topnewbox .foottxt .txt{
  2007. position: relative;
  2008. }
  2009. .topnewbox .foottxt .dc_hd{
  2010. text-align: center;
  2011. color: #fff;
  2012. }
  2013. .topnewbox .foottxt .num span{
  2014. font-size: 26px;
  2015. color: #FFFFFF;
  2016. padding: 0 2px;
  2017. }
  2018. .topnewbox .foottxt .num sub{
  2019. font-size: 12px;
  2020. }
  2021. .topnewbox .foottxt .type{
  2022. font-size: 13px;
  2023. color: #FFFFFF;
  2024. line-height: 20px;
  2025. opacity: 0.8;
  2026. }
  2027. .topnewbox .logo_ssj{
  2028. position: absolute;
  2029. top: 15px;
  2030. left: 15px;
  2031. }
  2032. .topnewbox .logo_ssj img{
  2033. width: 78px;
  2034. }
  2035. .topnewbox .txttitle{
  2036. position: absolute;
  2037. top: 74px;
  2038. left: 15px;
  2039. color: #fff;
  2040. font-size: 16px;
  2041. }
  2042. .gfwqbox{
  2043. padding: 0 10px 50px 10px;
  2044. }
  2045. .gfwqbox .title{
  2046. font-size: 14px;
  2047. color: #666666;
  2048. padding: 15px 0;
  2049. }
  2050. .gfwqbox .list{
  2051. background: #F7F9FA;
  2052. border-radius: 4px;
  2053. padding: 12px 10px;
  2054. }
  2055. .gfwqbox .list+.list{
  2056. margin-top: 15px;
  2057. }
  2058. .gfwqbox .list .type{
  2059. font-size: 17px;
  2060. color: #000000;
  2061. }
  2062. .gfwqbox .list .info{
  2063. font-size: 15px;
  2064. color: #666666;
  2065. margin-top: 5px;
  2066. }
  2067. .gfwqbox .list .gq{
  2068. font-size: 15px;
  2069. color: #FF001F;
  2070. margin-top: 15px;
  2071. }
  2072. .gfwqbox .list .gq i{
  2073. margin-right: 5px;
  2074. }
  2075. .gfwqbox .list .num_xf{
  2076. background: #48A3FE;
  2077. border-radius: 4px;
  2078. width: 75px;
  2079. height: 62px;
  2080. text-align: center;
  2081. color: #fff;
  2082. overflow: hidden;
  2083. margin-left: 15px;
  2084. }
  2085. .gfwqbox .list .num_xf i{
  2086. font-size: 13px;
  2087. color: #FFFFFF;
  2088. margin-top: 8px;
  2089. display: inline-block
  2090. }
  2091. .gfwqbox .list .num_xf span{
  2092. font-size: 16px;
  2093. }
  2094. .allloading{
  2095. display: block;
  2096. background: #e6e6e6;
  2097. text-align: center;
  2098. height: 34px;
  2099. line-height: 34px;
  2100. color: #48a3fe;
  2101. font-size: 14px;
  2102. width: 150px;
  2103. margin: 20px auto;
  2104. border-radius: 4px;
  2105. }
  2106. .allloading i.iconfont{
  2107. margin-right: 4px;
  2108. }
  2109. .gritembox{
  2110. margin-left: -7px;
  2111. padding: 15px;
  2112. margin-top: -10px;
  2113. }
  2114. .gritembox span{
  2115. display: inline-block;
  2116. font-size: 15px;
  2117. color: #999999;
  2118. padding: 0 15px;
  2119. height: 38px;
  2120. line-height: 38px;
  2121. background: #F0F0F0;
  2122. border-radius: 3px;
  2123. margin-left: 7px;
  2124. margin-top: 10px;
  2125. }
  2126. .gritembox span.active{
  2127. background-image: linear-gradient(90deg, #73B9FF 0%, #4892FE 100%);
  2128. color: #fff;
  2129. }
  2130. .typejsitem .title{
  2131. height: 54px;
  2132. line-height: 54px;
  2133. border-bottom: 1px solid #e6e6e6;
  2134. padding: 0 15px;
  2135. font-size: 14px;
  2136. color: #000000;
  2137. }
  2138. .typejsitem .title .dc_flex{
  2139. padding: 0;
  2140. }
  2141. .typejsitem .title .js_js {
  2142. display: block;
  2143. background: #FFD5DA;
  2144. border:1px solid #FF001F;
  2145. color: #FF001F;
  2146. font-size: 14px;
  2147. height: 34px;
  2148. line-height: 32px;
  2149. width: 78px;
  2150. text-align: center;
  2151. border-radius: 4px;
  2152. }
  2153. .typejsitem .title i.iconfont{
  2154. margin-right: 5px;
  2155. }
  2156. .typejsitem .timenum{
  2157. margin-top: 5px;
  2158. }
  2159. .typejsitem .timenum span{
  2160. display: inline-block;
  2161. font-size: 36px;
  2162. color: #666666;
  2163. }
  2164. .typejsitem .dc_flex{
  2165. padding: 20px 15px;
  2166. position: relative;
  2167. }
  2168. .typejsitem .dc_flex+.dc_flex:after{
  2169. position: absolute;
  2170. content: '';
  2171. height: 1px;
  2172. left: 15px;
  2173. right: 0;
  2174. background: #E6E6E6;
  2175. top: 0;
  2176. -webkit-transform: scaleY(0.5);
  2177. transform: scaleY(0.5);
  2178. }
  2179. .typejsitem .type{
  2180. font-size: 14px;
  2181. color: #333;
  2182. }
  2183. .typejsitem .btnjs{
  2184. width: 76px;
  2185. height: 76px;
  2186. border-radius: 50%;
  2187. background: #50E3C2;
  2188. overflow: hidden;
  2189. }
  2190. .typejsitem .btnjs.active{
  2191. background: #FFC667;
  2192. }
  2193. .typejsitem .btnjs span{
  2194. display: inline-block;
  2195. width: 64px;
  2196. height: 64px;
  2197. border: 1px solid #fff;
  2198. text-align: center;
  2199. line-height: 64px;
  2200. color: #fff;
  2201. font-size: 14px;
  2202. margin: 6px;
  2203. border-radius: 50%
  2204. }
  2205. .jztasktopinfo{
  2206. position: relative;
  2207. height: 223px;
  2208. width: 100%;
  2209. background: url(../images/jztaskbg.png) no-repeat center top/100% 223px;
  2210. }
  2211. .jztasktopinfo .dc_flex .pic{
  2212. width: 0.96rem;
  2213. height: 0.96rem;
  2214. border-radius: 50%;
  2215. overflow: hidden;
  2216. margin: 0 auto;
  2217. }
  2218. .jztasktopinfo .dc_flex .active .pic{
  2219. border: 2px solid #3399FF;
  2220. box-shadow: 0 0 6px 2px rgba(0,0,0,0.10);
  2221. }
  2222. .jztasktopinfo .dc_flex .pic img{
  2223. width: 100%;
  2224. height: 100%;
  2225. }
  2226. .jztasktopinfo .dc_flex .dc_hd{
  2227. text-align: center;
  2228. position: relative;
  2229. }
  2230. .jztasktopinfo .dc_flex div.dc_hd{
  2231. opacity: 0.5;
  2232. }
  2233. .jztasktopinfo .dc_flex .dc_hd.active{
  2234. opacity: 1;
  2235. }
  2236. .jztasktopinfo .dc_flex .dc_hd.active .tooltip-arrow {
  2237. display: block;
  2238. }
  2239. .jztasktopinfo .dc_flex p{
  2240. font-size: 14px;
  2241. color: #666666;
  2242. line-height: 20px;
  2243. margin-top: 5px;
  2244. }
  2245. .jztasktopinfo .txpic{
  2246. width: 68px;
  2247. text-align: center;
  2248. margin: 0 auto 20px auto;
  2249. padding-top: 15px;
  2250. }
  2251. .jztasktopinfo .txpic img{
  2252. border-radius: 50%;
  2253. width: 68px;
  2254. height: 68px;
  2255. border: 1px solid #CCCCCC;
  2256. }
  2257. .jztasktopinfo .txpic p{
  2258. font-size: 18px;
  2259. color: #333333;
  2260. margin-top: 7px;
  2261. text-align: center;
  2262. line-height: 28px;
  2263. position: relative;
  2264. }
  2265. .jztasktopinfo .txpic p span{
  2266. display: inline-block;
  2267. color: #666;
  2268. font-size: 14px;
  2269. position: absolute;
  2270. left: 100%;
  2271. width: 40px;
  2272. text-align: left;
  2273. }
  2274. .btn_jzinfo{
  2275. display: inline-block;
  2276. height: 32px;
  2277. line-height: 32px;
  2278. padding: 0 15px;
  2279. background-image: linear-gradient(90deg, #73B9FF 0%, #4892FE 100%);
  2280. border-radius: 16px;
  2281. text-align: center;
  2282. color: #fff;
  2283. font-size: 14px;
  2284. position: absolute;
  2285. right: 15px;
  2286. top: 34px;
  2287. }
  2288. .btn_jzinfo img{
  2289. display: inline-block;
  2290. height: 16px;
  2291. vertical-align: middle;
  2292. margin-top: -3px;
  2293. margin-right: 4px;
  2294. }
  2295. .linkitembox{
  2296. margin-top: 10px;
  2297. }
  2298. .linkitembox .dc_flex{
  2299. background: #fff;
  2300. padding: 15px;
  2301. position: relative;
  2302. }
  2303. .linkitembox .dc_flex+.dc_flex:after{
  2304. position: absolute;
  2305. content: '';
  2306. height: 1px;
  2307. left: 15px;
  2308. right: 0;
  2309. background: #E6E6E6;
  2310. top: 0;
  2311. -webkit-transform: scaleY(0.5);
  2312. transform: scaleY(0.5);
  2313. }
  2314. .linkitembox .dc_flex .pic{
  2315. width: 20px;
  2316. height: 20px;
  2317. margin-right: 10px;
  2318. }
  2319. .linkitembox .dc_flex img{
  2320. width: 20px;
  2321. height: 20px;
  2322. }
  2323. .linkitembox .dc_flex .dc_hd{
  2324. font-size: 15px;
  2325. color: #666;
  2326. }
  2327. .linkitembox .dc_flex .more{
  2328. color: #ccc;
  2329. }
  2330. .jztask_zybox .topinfo{
  2331. background: #fff;
  2332. padding: 15px;
  2333. }
  2334. .jztask_zybox .topinfo .pic{
  2335. width: 30px;
  2336. height: 30px;
  2337. overflow: hidden;
  2338. border-radius: 50%;
  2339. margin-right: 10px;
  2340. }
  2341. .jztask_zybox .topinfo .name{
  2342. font-size: 18px;
  2343. color: #000000;
  2344. margin-right: 8px;
  2345. }
  2346. .jztask_zybox .topinfo .tag{
  2347. height: 20px;
  2348. border: 1px solid #48A3FE;
  2349. color: #48A3FE;
  2350. font-size: 12px;
  2351. line-height: 18px;
  2352. text-align: center;
  2353. border-radius: 10px;
  2354. padding: 0 10px;
  2355. }
  2356. .jztask_zybox .txtinfo{
  2357. font-size: 15px;
  2358. color: #333333;
  2359. line-height: 23px;
  2360. margin-top: 10px;
  2361. }
  2362. .jztask_zybox .panel {
  2363. background: #fff;
  2364. margin-top: 10px;
  2365. }
  2366. .jztask_zybox .panel .pl_list{
  2367. background: #F8F9FA;
  2368. border-radius: 3px;
  2369. padding: 15px 10px;
  2370. margin-right: 15px;
  2371. }
  2372. .jztask_zybox .time_stepbox .point-time {
  2373. width: 13px;
  2374. height: 13px;
  2375. left: 21px;
  2376. background-image: linear-gradient(180deg, #73B9FF 0%, #4892FE 100%);
  2377. }
  2378. .jztask_zybox .time_stepbox .time{
  2379. font-size: 15px;
  2380. }
  2381. .jztask_zybox .pl_list .picimg{
  2382. margin-left: 20px;
  2383. width: 85px;
  2384. height: 66px;
  2385. }
  2386. .jztask_zybox .pl_list img{
  2387. width: 85px;
  2388. height: 66px;
  2389. }
  2390. .jztask_zybox .pl_list .t{
  2391. font-size: 15px;
  2392. color: #000000;
  2393. line-height: 20px;
  2394. }
  2395. .jztask_zybox .pl_list .dgsj{
  2396. font-size: 15px;
  2397. color: #999999;
  2398. margin-top: 8px;
  2399. }
  2400. .jztask_zybox .pl_list .dgsj i{
  2401. margin-right: 5px;
  2402. }
  2403. .jztask_zybox .pl_list .link{
  2404. text-align: right;
  2405. margin-top: 15px;
  2406. }
  2407. .jztask_zybox .pl_list .link a{
  2408. font-size: 15px;
  2409. color: #48A3FE;
  2410. }
  2411. .jztask_zybox .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  2412. height: 66px;
  2413. font-size: 0;
  2414. }
  2415. .jztask_zybox .mui-segmented-control.mui-segmented-control-inverted {
  2416. height: 66px;
  2417. }
  2418. .jztask_zybox .jxypic {
  2419. width: 85px;
  2420. height: 66px;
  2421. display: inline-block;
  2422. position: relative;
  2423. }
  2424. .jztask_zybox .jxypic img {
  2425. width: 100%;
  2426. height: 100%;
  2427. border-radius: 4px;
  2428. }
  2429. .jztask_zybox .jxypic+.jxypic {
  2430. margin-left: 10px;
  2431. }
  2432. .duicuonum {
  2433. margin: 15px 0;
  2434. }
  2435. .duicuonum span+span{
  2436. margin-left: 20px;
  2437. }
  2438. .duicuonum span{
  2439. font-size: 14px;
  2440. color: #666;
  2441. }
  2442. .duicuonum span i{
  2443. margin-right: 4px;
  2444. }
  2445. .duicuonum span b{
  2446. font-weight: normal;
  2447. color: #333333;
  2448. font-size: 16px;
  2449. margin-left: 4px
  2450. }
  2451. .duicuonum span:first-child i{
  2452. color: #48A3FE
  2453. }
  2454. .duicuonum span:last-child i{
  2455. color: red
  2456. }
  2457. .tab_xiaohai{
  2458. padding: 15px 0 19px;
  2459. border-bottom: 1px solid #e6e6e6;
  2460. }
  2461. .tab_xiaohai .dc_hd{
  2462. text-align: center;
  2463. font-size: 15px;
  2464. color: #000000;
  2465. position: relative;
  2466. opacity: 0.6;
  2467. }
  2468. .tab_xiaohai .dc_hd+.dc_hd{
  2469. border-left: 1px solid #e6e6e6;
  2470. }
  2471. .tab_xiaohai .dc_hd.active{
  2472. opacity: 1;
  2473. }
  2474. .tab_xiaohai .dc_hd img{
  2475. display: inline-block;
  2476. width: 38px;
  2477. height: 38px;
  2478. vertical-align: middle;
  2479. margin-right: 8px;
  2480. }
  2481. .tab_xiaohai .dc_hd.active:after{
  2482. width: 50px;
  2483. height: 4px;
  2484. background-image: linear-gradient(270deg, #73B9FF 0%, #4892FE 100%);
  2485. border-radius: 2px;
  2486. position: absolute;
  2487. content: '';
  2488. left: 50%;
  2489. margin-left: -25px;
  2490. bottom: -19px;
  2491. }
  2492. .tab_xueqing{
  2493. background: #fff;
  2494. height: 48px;
  2495. line-height: 48px;
  2496. }
  2497. .tab_xueqing .dc_hd{
  2498. text-align: center;
  2499. font-size: 17px;
  2500. color: #666666;
  2501. position: relative;
  2502. }
  2503. .tab_xueqing .dc_hd.active{
  2504. color: #48A3FE;
  2505. }
  2506. .tab_xueqing .dc_hd.active:after{
  2507. width: 40px;
  2508. height: 4px;
  2509. background-image: linear-gradient(270deg, #73B9FF 0%, #4892FE 100%);
  2510. border-radius: 2px;
  2511. content: '';
  2512. position: absolute;
  2513. bottom: 0;
  2514. left: 50%;
  2515. margin-left: -20px;
  2516. }
  2517. .xueqingitem{
  2518. background: #fff;
  2519. padding: 0 15px;
  2520. margin-top: 10px;
  2521. overflow: hidden;
  2522. }
  2523. .xueqingitem .list{
  2524. overflow: hidden;
  2525. }
  2526. .xueqingitem .time{
  2527. margin: 15px 0 !important;
  2528. font-size: 15px;
  2529. color: #999999;
  2530. }
  2531. .xueqingitem .nr{
  2532. background: #F8F9FA;
  2533. border-radius: 3px;
  2534. padding: 10px 15px 15px;
  2535. position: relative;
  2536. margin-bottom: 10px;
  2537. }
  2538. .xueqingitem .nr:after{
  2539. width: 2px;
  2540. height: 6px;
  2541. top:-6px;
  2542. left: 22px;
  2543. position: absolute;
  2544. content: '';
  2545. background: #e6e6e6;
  2546. }
  2547. .xueqingitem .nr:before{
  2548. width: 2px;
  2549. height: 10px;
  2550. bottom:-10px;
  2551. left: 22px;
  2552. position: absolute;
  2553. content: '';
  2554. background: #e6e6e6;
  2555. }
  2556. .xueqingitem .list:last-child .nr:before{
  2557. display: none;
  2558. }
  2559. .xueqingitem .weekinfo{
  2560. margin-left: -15px;
  2561. }
  2562. .xueqingitem .weeknum{
  2563. background-image: linear-gradient(180deg, #73B9FF 0%, #4892FE 100%);
  2564. width: 56px;
  2565. height: 28px;
  2566. line-height: 28px;
  2567. text-align: center;
  2568. font-size: 13px;
  2569. color: #FFFFFF;
  2570. margin-right: 20px;
  2571. border-radius: 4px
  2572. }
  2573. .xueqingitem .txtinfo{
  2574. font-size: 14px;
  2575. color: #999999;
  2576. }
  2577. .xueqingitem .txtinfo span{
  2578. font-size: 18px;
  2579. color: #333333;
  2580. margin-left: 6px;
  2581. }
  2582. .xueqingitem .xxjy{
  2583. font-size: 14px;
  2584. color: #666666;
  2585. line-height: 20px;
  2586. margin-top: 15px;
  2587. }
  2588. .xueqingitem .zwzzd{
  2589. margin-top: 15px
  2590. }
  2591. .xueqingitem .zwzzd p{
  2592. font-size: 12px;
  2593. color: #999999;
  2594. margin-bottom: 6px !important;
  2595. }
  2596. .xueqingitem .zwzzd span+span{
  2597. margin-left: 20px;
  2598. }
  2599. .xueqingitem .zwzzd span{
  2600. font-size: 14px;
  2601. color: #333333;
  2602. line-height: 20px;
  2603. }
  2604. .xueqingitem .zwzzd span i{
  2605. margin-left: 4px;
  2606. }
  2607. .dbkedubox .line100{
  2608. position: relative;
  2609. font-size: 0;
  2610. }
  2611. .dbkedubox .line100 .line{
  2612. display: inline-block;
  2613. height: 3px;
  2614. position: relative;
  2615. }
  2616. .dbkedubox .line100 .line:after{
  2617. position: absolute;
  2618. width: 100%;
  2619. top: 15px;
  2620. text-align: center;
  2621. font-size: 12px;
  2622. color: #999999;
  2623. }
  2624. .dbkedubox .line100 .line1{
  2625. width: 65%;
  2626. background: #FF566B;
  2627. }
  2628. .dbkedubox .line100 .line2{
  2629. width: 25%;
  2630. background: #48A3FE;
  2631. }
  2632. .dbkedubox .line100 .line3{
  2633. width: 10%;
  2634. background: #7ABDFF;
  2635. }
  2636. .dbkedubox .line100 .line1:after{
  2637. content: '未达标';
  2638. }
  2639. .dbkedubox .line100 .line2:after{
  2640. content: '达标';
  2641. }
  2642. .dbkedubox .line100 .line3:after{
  2643. content: '完美';
  2644. }
  2645. .dbkedubox .kd{
  2646. width: 7px;
  2647. background: #F8F9FA;
  2648. height: 20px;
  2649. position: absolute;
  2650. z-index: 8;
  2651. margin-left: -3px;
  2652. }
  2653. .dbkedubox .num{
  2654. position: absolute;
  2655. z-index: 8;
  2656. width: 20px;
  2657. margin-left: -10px;
  2658. text-align: center;
  2659. font-size: 11px;
  2660. color: #ccc;
  2661. top: -26px;
  2662. }
  2663. .dbkedubox .num1{
  2664. left: 65%;
  2665. }
  2666. .dbkedubox .num2{
  2667. left: 90%;
  2668. }
  2669. .dbkedubox .kd:after{
  2670. position: absolute;
  2671. height: 20px;
  2672. width: 1px;
  2673. border-left: 1px dashed #999999;
  2674. content: '';
  2675. left: 3px;
  2676. top: -9px;
  2677. }
  2678. .dbkedubox .kd1{
  2679. left: 65%;
  2680. }
  2681. .dbkedubox .kd2{
  2682. left: 90%;
  2683. }
  2684. .dbkedubox .kdicon{
  2685. width: 20px;
  2686. height: 20px;
  2687. margin-left: -10px;
  2688. position: absolute;
  2689. top: -9px;
  2690. z-index: 9;
  2691. }
  2692. .dbkedubox{
  2693. margin-top: 35px;
  2694. margin-bottom: 50px;
  2695. }
  2696. .jztask_xq .panel_zt{
  2697. background: #fff;
  2698. margin-top: 10px;
  2699. overflow: hidden;
  2700. }
  2701. .jztask_xq .pzt-title{
  2702. height: 44px;
  2703. line-height: 44px;
  2704. font-size: 15px;
  2705. color: #999999;
  2706. padding: 0 15px;
  2707. position: relative;
  2708. }
  2709. .jztask_xq .pzt-title:before{
  2710. position: absolute;
  2711. content: '';
  2712. height: 1px;
  2713. left: 15px;
  2714. right: 0;
  2715. background: #E6E6E6;
  2716. bottom: 0;
  2717. -webkit-transform: scaleY(0.5);
  2718. transform: scaleY(0.5);
  2719. }
  2720. .jztask_xq .pzt-title i{
  2721. background-image: linear-gradient(180deg, #73B9FF 0%, #4892FE 100%);
  2722. border-radius: 14px;
  2723. width: 5px;
  2724. display: inline-block;
  2725. height: 15px;
  2726. border-radius: 2.5px;
  2727. vertical-align: middle;
  2728. margin-top: -2px;
  2729. margin-right: 8px;
  2730. }
  2731. .jztask_xq .zt_tabs{
  2732. text-align: center;
  2733. font-size: 0;
  2734. padding: 20px 0;
  2735. }
  2736. .jztask_xq .zt_tabs .km{
  2737. display: inline-block;
  2738. width: 76px;
  2739. text-align: center;
  2740. height: 30px;
  2741. line-height: 28px;
  2742. background: #FFFFFF;
  2743. border: 1px solid #48A3FE;
  2744. border-radius: 15px;
  2745. font-size: 15px;
  2746. color: #48A3FE;
  2747. }
  2748. .jztask_xq .zt_tabs .km+.km{
  2749. margin-left: 10px;
  2750. }
  2751. .jztask_xq .zt_tabs .km.active{
  2752. background-image: linear-gradient(90deg, #73B9FF 0%, #4892FE 100%);
  2753. color: #fff;
  2754. }
  2755. .jztask_xq .xqlist{
  2756. overflow: hidden;
  2757. }
  2758. .jztask_xq .kmrn{
  2759. background: #F8F9FA;
  2760. border-radius: 5px;
  2761. padding: 10px;
  2762. margin: 0 10px 15px 10px;
  2763. }
  2764. .jztask_xq .xqlist .ttype{
  2765. font-size: 15px;
  2766. color: #333333;
  2767. height: 24px;
  2768. line-height: 24px;
  2769. position: relative;
  2770. display: block;
  2771. width: 120px;
  2772. text-align: center;
  2773. margin: 0 auto;
  2774. margin-bottom: 15px;
  2775. }
  2776. .jztask_xq .xqlist .ttype:after{
  2777. content: '';
  2778. position: absolute;
  2779. height: 1px;
  2780. width: 40px;
  2781. left: -50px;
  2782. top: 12px;
  2783. background: #666;
  2784. }
  2785. .jztask_xq .xqlist .ttype:before{
  2786. content: '';
  2787. position: absolute;
  2788. height: 1px;
  2789. width: 40px;
  2790. right: -50px;
  2791. top: 12px;
  2792. background: #666;
  2793. }
  2794. .jztask_xq .tjlist{
  2795. padding-left: 20px;
  2796. }
  2797. .jztask_xq .tjlist .dc_flex{
  2798. margin-top: 10px;
  2799. }
  2800. .jztask_xq .tjlist .type{
  2801. width: 40px;
  2802. height: 18px;
  2803. text-align: center;
  2804. line-height: 18px;
  2805. color: #fff;
  2806. font-size: 13px;
  2807. margin-right: 10px;
  2808. border-radius: 2px;
  2809. }
  2810. .jztask_xq .tjlist .yc .type{
  2811. background: #48A3FE;
  2812. }
  2813. .jztask_xq .tjlist .zd .type{
  2814. background: #FF9F00;
  2815. }
  2816. .jztask_xq .tjlist .dc_hd{
  2817. font-size: 15px;
  2818. color: #333333;
  2819. }
  2820. .jztask_xq .tjlist .dc_hd span{
  2821. color: #F06D6A;
  2822. }
  2823. .jztask_xq .zsdlist+.zsdlist{
  2824. margin-top: 15px;
  2825. }
  2826. .jztask_xq .zsdlist .zsd_infobox{
  2827. display: none;
  2828. }
  2829. .jztask_xq .zsdlist.active .zsd_infobox{
  2830. display: block;
  2831. }
  2832. .jztask_xq .zsdlist .zsd_title{
  2833. background-image: linear-gradient(90deg, #73B9FF 0%, #4892FE 100%);
  2834. border-radius: 4px;
  2835. }
  2836. .jztask_xq .zsdlist .zsd_title .dc_flex{
  2837. padding: 8px 15px;
  2838. }
  2839. .jztask_xq .zsdlist .zsd_title .dc_hd{
  2840. font-size: 17px;
  2841. color: #FFFFFF;
  2842. line-height: 24px;
  2843. }
  2844. .jztask_xq .zsdlist .zsd_title .jt{
  2845. color: #fff;
  2846. margin-left: 15px;
  2847. }
  2848. .jztask_xq .zsdlist .zsd_title .jt i.iconfont{
  2849. display: inline-block;
  2850. }
  2851. .jztask_xq .zsdlist.active .zsd_title .jt i.iconfont{
  2852. transform:rotate(180deg);
  2853. }
  2854. .zsd_infobox .pan_info{
  2855. padding: 15px 0;
  2856. border-bottom: 1px dashed #e6e6e6;
  2857. }
  2858. .zsd_infobox .pan_info .dc_flex+.dc_flex{
  2859. margin-top: 5px
  2860. }
  2861. .zsd_infobox .pan_info .icon{
  2862. margin-right: 10px;
  2863. width: 15px;
  2864. padding-top: 5px;
  2865. }
  2866. .zsd_infobox .pan_info .icon img{
  2867. width: 15px;
  2868. height: 15px;
  2869. }
  2870. .zsd_infobox .pan_info .dc_hd{
  2871. font-size: 14px;
  2872. color: #333333;
  2873. line-height: 23px;
  2874. }
  2875. .zsd_infobox .pan_lis{
  2876. padding: 15px 0;
  2877. }
  2878. .zsd_infobox .linumbox .dc_hd{
  2879. font-size: 16px;
  2880. color: #333333;
  2881. line-height: 26px;
  2882. }
  2883. .zsd_infobox .linumbox .dc_hd img{
  2884. display: inline-block;
  2885. width: 57px;
  2886. vertical-align: middle;
  2887. margin-top: -3px;
  2888. margin-left: 5px;
  2889. }
  2890. .zsd_infobox .linumbox .num{
  2891. margin-right: 8px;
  2892. width: 18px;
  2893. height: 18px;
  2894. background: #73B9FF;
  2895. border-radius: 4px;
  2896. text-align: center;
  2897. line-height: 18px;
  2898. color: #fff;
  2899. font-size: 15px;
  2900. }
  2901. .zsd_infobox .linumbox+.linumbox{
  2902. margin-top: 22px;
  2903. }
  2904. .linumbox .mui-segmented-control.mui-segmented-control-inverted {
  2905. height: 110px;
  2906. margin-top: 15px;
  2907. }
  2908. .linumbox .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  2909. height: 110px;
  2910. font-size: 0;
  2911. }
  2912. .linumbox .jxypic {
  2913. width: 114px;
  2914. height: 110px;
  2915. display: inline-block;
  2916. position: relative;
  2917. }
  2918. .linumbox .jxypic img {
  2919. width: 100%;
  2920. height: 100%;
  2921. border-radius: 4px;
  2922. }
  2923. .linumbox .jxypic+.jxypic {
  2924. margin-left: 10px;
  2925. }
  2926. .jzxqbox .pan_lis+.pan_lis{
  2927. border-top: 1px dashed #4892FE;
  2928. }
  2929. .jzxqbox .linumbox .num{
  2930. background: #4892FE;
  2931. border-radius: 2px;
  2932. width: 12px;
  2933. height: 12px;
  2934. margin-top: 5px;
  2935. }
  2936. .jztask_xq .toptitle_xq {
  2937. height: 48px;
  2938. line-height: 48px;
  2939. background: #fff;
  2940. padding: 0 15px;
  2941. font-size: 17px;
  2942. color: #666666;
  2943. position: relative;
  2944. z-index: 200;
  2945. }
  2946. .jztask_xq .xq_info{
  2947. padding: 15px;
  2948. }
  2949. .jztask_xq .xq_info .dc_pic{
  2950. margin-right: 20px;
  2951. }
  2952. .jztask_xq .xq_info .dc_pic img{
  2953. width: 108px;
  2954. }
  2955. .jztask_xq .xq_info .tt{
  2956. font-size: 16px;
  2957. color: #FF6666;
  2958. }
  2959. .jztask_xq .xq_info .txt{
  2960. font-size: 14px;
  2961. color: #999999;
  2962. line-height: 20px;
  2963. margin-top: 5px;
  2964. }
  2965. .jztask_xq .xq_info .txt span{
  2966. color: #FF6666;
  2967. }
  2968. #circle1 .circleChart_text{
  2969. color: #ffb800;
  2970. }
  2971. #circle2 .circleChart_text{
  2972. color: #48a3fe;
  2973. }
  2974. #circle3 .circleChart_text{
  2975. color: #50e3c2;
  2976. }
  2977. #circle5 .circleChart_text{
  2978. color: #48a3fe;
  2979. }
  2980. #circle6 .circleChart_text{
  2981. color: #48a3fe;
  2982. }
  2983. .pinggucc{
  2984. padding: 20px 0;
  2985. }
  2986. .pinggucc p{
  2987. text-align: center;
  2988. padding: 0 10px;
  2989. font-size: 14px;
  2990. color: #666666;
  2991. margin-top: 9px;
  2992. }
  2993. .jztask_xq .panel_zt .infotxt {
  2994. font-size: 14px;
  2995. color: #CCCCCC;
  2996. padding: 15px 15px 0;
  2997. }
  2998. .pinggucc .circleChart:after{
  2999. content: '超越';
  3000. position: absolute;
  3001. width: 100%;
  3002. text-align: center;
  3003. color: #FFB800;
  3004. font-size: 12px;
  3005. top: 14px;
  3006. }
  3007. .pinggucc .circleChart:before{
  3008. content: '同学';
  3009. position: absolute;
  3010. width: 100%;
  3011. text-align: center;
  3012. color: #FFB800;
  3013. font-size: 12px;
  3014. bottom: 14px;
  3015. }
  3016. #circle1:after,#circle1:before{
  3017. color: #FFB800;
  3018. }
  3019. #circle2:after,#circle2:before{
  3020. color: #48a3fe;
  3021. }
  3022. #circle3:after,#circle3:before{
  3023. color: #50e3c2;
  3024. }
  3025. #circle5{
  3026. position: relative;
  3027. }
  3028. #circle5 p{
  3029. line-height: 60px !important;
  3030. }
  3031. #circle5:after,#circle5:before{
  3032. color: #48a3fe;
  3033. }
  3034. #circle5:before{
  3035. content: '小时';
  3036. position: absolute;
  3037. width: 100%;
  3038. text-align: center;
  3039. color: #48a3fe;
  3040. font-size: 12px;
  3041. bottom: 8px;
  3042. left: 0;
  3043. }
  3044. .zttjbox{
  3045. text-align: center;
  3046. width: 6.6rem;
  3047. margin: 10px auto;
  3048. }
  3049. .zttjbox .dc_hd{
  3050. }
  3051. .zttjbox .textline {
  3052. margin-left: 0.8rem;
  3053. padding-top: 10px;
  3054. text-align: left;
  3055. float: left;
  3056. width: 2.2rem;
  3057. }
  3058. .zttjbox .textline p{
  3059. font-size: 14px;
  3060. color: #666666;
  3061. }
  3062. .zttjbox .textline p b{
  3063. font-size: 16px;
  3064. color: #333;
  3065. font-weight: normal;
  3066. }
  3067. .zttjbox .textline p i{
  3068. margin-right: 5px;
  3069. font-size: 18px;
  3070. }
  3071. .zttjbox .textline p:first-child i{
  3072. color: #6ED400;
  3073. }
  3074. .zttjbox .textline p:last-child i{
  3075. color: #FF0000;
  3076. }
  3077. .zttjbox .licc{
  3078. width: 1.4rem;
  3079. text-align: center;
  3080. display: inline-block;
  3081. float: left;
  3082. }
  3083. .zttjbox .licc p{
  3084. text-align: center;
  3085. margin-top: 10px;
  3086. color: #666666;
  3087. font-size: 12px;
  3088. }
  3089. .zttjbox .licc+.licc{
  3090. margin-left: 0.8rem;
  3091. }
  3092. .ydbox {
  3093. position: fixed;
  3094. left: 0;
  3095. right: 0;
  3096. top: 0;
  3097. height: 100%;
  3098. z-index: 999;
  3099. }
  3100. .ydbox .mask {
  3101. position: absolute;
  3102. left: 0;
  3103. right: 0;
  3104. top: 0;
  3105. opacity: 0.6;
  3106. background: #000000;
  3107. height: 100%;
  3108. }
  3109. .step{
  3110. color: #fff;
  3111. }
  3112. .step1 .pic1{
  3113. width: 3.57rem;
  3114. position: absolute;
  3115. z-index: 999;
  3116. top: 2.3rem;
  3117. left: 0.6rem;
  3118. }
  3119. .step1 .pic2{
  3120. width: 2.04rem;
  3121. position: absolute;
  3122. z-index: 999;
  3123. top: 5.78rem;
  3124. right: 0.6rem;
  3125. }
  3126. .step .picsz{
  3127. width: 0.6rem;
  3128. position: absolute;
  3129. z-index: 999;
  3130. bottom: 0.8rem;
  3131. left: 50%;
  3132. margin-left: -0.3rem;
  3133. }
  3134. .step2 .pic1{
  3135. width: 5.6rem;
  3136. position: absolute;
  3137. z-index: 999;
  3138. top: 0.4rem;
  3139. left: 50%;
  3140. margin-left: -2.8rem;
  3141. }
  3142. .step2 .pic2{
  3143. width: 5.52rem;
  3144. position: absolute;
  3145. z-index: 999;
  3146. top: 8.7rem;
  3147. left: 50%;
  3148. margin-left: -2.76rem;
  3149. }
  3150. .step3 .pic1{
  3151. width: 5.6rem;
  3152. position: absolute;
  3153. z-index: 999;
  3154. top: 0.4rem;
  3155. left: 50%;
  3156. margin-left: -2.8rem;
  3157. }
  3158. .step3 .pic2{
  3159. width: 5.54rem;
  3160. position: absolute;
  3161. z-index: 999;
  3162. top: 8.7rem;
  3163. left: 50%;
  3164. margin-left: -2.77rem;
  3165. }
  3166. .step4 .pic1{
  3167. width: 4.18rem;
  3168. position: absolute;
  3169. z-index: 999;
  3170. top: 0.4rem;
  3171. left: 0.4rem;
  3172. }
  3173. .step4 .pic2{
  3174. width: 5.22rem;
  3175. position: absolute;
  3176. z-index: 999;
  3177. top: 2.53rem;
  3178. left: 0.4rem;
  3179. }
  3180. .step4 .pic3{
  3181. width: 4.18rem;
  3182. position: absolute;
  3183. z-index: 999;
  3184. top: 3.65rem;
  3185. right: 0.4rem;
  3186. }
  3187. .step4 .pic4{
  3188. width: 5.21rem;
  3189. position: absolute;
  3190. z-index: 999;
  3191. top: 5.78rem;
  3192. right: 0.4rem;
  3193. }
  3194. .step4 .pic5{
  3195. width: 4.18rem;
  3196. position: absolute;
  3197. z-index: 999;
  3198. top: 6.9rem;
  3199. left: 0.4rem;
  3200. }
  3201. .step4 .pic6{
  3202. width: 5.22rem;
  3203. position: absolute;
  3204. z-index: 999;
  3205. top: 9.03rem;
  3206. left: 0.4rem;
  3207. }
  3208. .upctpic .img_div {
  3209. margin-top: 10px;
  3210. margin-left: -10px;
  3211. }
  3212. .upctpic .isImg {
  3213. width: 74px;
  3214. height: 74px;
  3215. position: relative;
  3216. margin-left: 10px;
  3217. display: inline-block;
  3218. }
  3219. .upctpic .isImg img{
  3220. width: 74px;
  3221. height: 74px;
  3222. }
  3223. .upctpic .removeBtn {
  3224. position: absolute;
  3225. top: -8px;
  3226. right: -8px;
  3227. z-index: 11;
  3228. border: 0px;
  3229. border-radius: 50px;
  3230. height: 17px;
  3231. width: 17px;
  3232. background: url(../images/closebtnred.png) no-repeat center center/17px 17px;
  3233. }
  3234. .ct_box{
  3235. padding: 10px 0px;
  3236. position: relative;
  3237. z-index: 0;
  3238. }
  3239. .zsdbox .t_ct_title{
  3240. font-size: 13px;
  3241. color: #999999;
  3242. line-height: 19px;
  3243. }
  3244. .zsdbox .mui-segmented-control.mui-segmented-control-inverted {
  3245. height: 75px;
  3246. margin-top: 5px;
  3247. }
  3248. .zsdbox .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  3249. height: 75px;
  3250. font-size: 0;
  3251. }
  3252. .zsdbox .jxypic {
  3253. width: 74px;
  3254. height: 74px;
  3255. display: inline-block;
  3256. position: relative;
  3257. }
  3258. .zsdbox .jxypic img {
  3259. width: 100%;
  3260. height: 100%;
  3261. border-radius: 4px;
  3262. }
  3263. .zsdbox .jxypic+.jxypic {
  3264. margin-left: 10px;
  3265. }
  3266. .pinglunbtn{
  3267. width: 64px;
  3268. height: 64px;
  3269. position: fixed;
  3270. right: 20px;
  3271. bottom: 20px;
  3272. z-index: 999;
  3273. border-radius: 50%;
  3274. overflow: hidden;
  3275. }
  3276. .pinglunbtn .bg{
  3277. width: 100%;
  3278. height: 100%;
  3279. position: absolute;
  3280. opacity: 0.9;
  3281. background: #48A3FE;
  3282. box-shadow: 0 0 10px 2px rgba(72,163,254,0.50);
  3283. }
  3284. .pinglunbtn .nr{
  3285. position: absolute;
  3286. width: 100%;
  3287. top: 10px;
  3288. text-align: center;
  3289. font-size: 0;
  3290. }
  3291. .pinglunbtn .nr img{
  3292. width: 21px;
  3293. display: inline-block;
  3294. }
  3295. .pinglunbtn .nr p{
  3296. font-size: 12px;
  3297. color: #fff;
  3298. margin-top: 5px;
  3299. }
  3300. .pyformbox{
  3301. background: #fff;
  3302. overflow: hidden;
  3303. }
  3304. .pyformbox .title_box{
  3305. line-height: 54px;
  3306. line-height: 54px;
  3307. text-align: center;
  3308. position: relative;
  3309. font-size: 15px;
  3310. color: #666666;
  3311. }
  3312. .pyformbox .title_box a.close{
  3313. display: inline-block;
  3314. color: #D8D8D8;
  3315. position: absolute;
  3316. right: 10px;
  3317. width: 24px;
  3318. height: 24px;
  3319. line-height: 24px;
  3320. top: 15px;
  3321. }
  3322. .pyformbox .textareaDiv{
  3323. margin: 0 20px;
  3324. }
  3325. .pyformbox .textareaDiv textarea{
  3326. background: #F4F4F4;
  3327. border: 1px solid #D6D6D6;
  3328. border-radius: 4px;
  3329. }
  3330. .pfitem{
  3331. padding-left: 50px;
  3332. padding-right: 20px;
  3333. position: relative;
  3334. margin-left: 20px;
  3335. margin-top: 15px;
  3336. }
  3337. .pfitem:after{
  3338. position: absolute;
  3339. content: '满意度';
  3340. left: 0;
  3341. top: 0;
  3342. font-size: 13px;
  3343. color: #666666;
  3344. }
  3345. .pfitem li{
  3346. display: inline-block;
  3347. width: 17px;
  3348. height: 17px;
  3349. background: url(../images/xing1.png) no-repeat center center / 17px 17px;
  3350. }
  3351. .pfitem li.on{
  3352. background: url(../images/xing.png) no-repeat center center / 17px 17px;
  3353. }
  3354. .pfitem li+li{
  3355. margin-left: 10px;
  3356. }
  3357. .pyformbox .tj{
  3358. display: block;
  3359. margin: 20px auto;
  3360. background-image: linear-gradient(90deg, #73B9FF 0%, #4892FE 100%);
  3361. box-shadow: 0 0 7px 0 rgba(97,170,255,0.50);
  3362. border-radius: 19px;
  3363. height: 38px;
  3364. line-height: 38px;
  3365. width: 145px;
  3366. text-align: center;
  3367. color: #fff;
  3368. font-size: 14px;
  3369. }
  3370. .tab_ty{
  3371. border: 1px solid red;
  3372. border-radius: 4px;
  3373. height: 20px;
  3374. line-height: 18px;
  3375. color: red;
  3376. padding: 0 10px;
  3377. display: inline-block;
  3378. margin-left: 15px;
  3379. font-size: 13px;
  3380. }
  3381. /*20180110*/
  3382. .baogaobox .panellist{
  3383. margin: 10px;
  3384. background: #FFFFFF;
  3385. box-shadow: 0 1px 3px 0 rgba(157,157,157,0.30);
  3386. border-radius: 5px;
  3387. padding: 10px 10px;
  3388. }
  3389. .baogaobox .panellist .pzt-title {
  3390. height: 21px;
  3391. line-height: 21px;
  3392. font-size: 15px;
  3393. color: #999999;
  3394. position: relative;
  3395. margin-bottom: 10px;
  3396. }
  3397. .baogaobox .panellist .pzt-title i {
  3398. background-image: linear-gradient(180deg, #73B9FF 0%, #4892FE 100%);
  3399. border-radius: 14px;
  3400. width: 5px;
  3401. display: inline-block;
  3402. height: 15px;
  3403. border-radius: 2.5px;
  3404. vertical-align: middle;
  3405. margin-top: -2px;
  3406. margin-right: 8px;
  3407. }
  3408. .baogaobox .panellist .txtbox{
  3409. font-size: 15px;
  3410. color: #333333;
  3411. line-height: 21px
  3412. }
  3413. .baogaobox .zt_tabs {
  3414. text-align: center;
  3415. font-size: 0;
  3416. padding: 20px 0 5px;
  3417. }
  3418. .baogaobox .zt_tabs .km {
  3419. display: inline-block;
  3420. width: 76px;
  3421. text-align: center;
  3422. height: 30px;
  3423. line-height: 28px;
  3424. background: #FFFFFF;
  3425. border: 1px solid #48A3FE;
  3426. border-radius: 15px;
  3427. font-size: 15px;
  3428. color: #48A3FE;
  3429. }
  3430. .baogaobox .zt_tabs .km+.km {
  3431. margin-left: 10px;
  3432. }
  3433. .baogaobox .zt_tabs .km.active {
  3434. background-image: linear-gradient(90deg, #73B9FF 0%, #4892FE 100%);
  3435. color: #fff;
  3436. }
  3437. .kemulist .litype{
  3438. margin-bottom: 10px;
  3439. }
  3440. .kemulist .litype img,.kemulist .litype .icon{
  3441. width: 15px;
  3442. height: 15px;
  3443. overflow: auto;
  3444. }
  3445. .kemulist .litype .dc_hd{
  3446. font-size: 15px;
  3447. color: #666666;
  3448. line-height: 22px;
  3449. margin-left: 7px;
  3450. }
  3451. .zhibiaoinfo .dc_hd{
  3452. text-align: center;
  3453. font-size: 14px;
  3454. color: #999999;
  3455. position: relative;
  3456. }
  3457. .zhibiaoinfo .dc_hd.active span{
  3458. display: inline-block;
  3459. height: 26px;
  3460. line-height: 26px;
  3461. margin: 7px auto;
  3462. width: 80%;
  3463. background: #FF7183;
  3464. color: #fff;
  3465. border-radius: 13px;
  3466. }
  3467. .kemulist .libox{
  3468. padding: 15px 0;
  3469. }
  3470. .kemulist .libox+.libox{
  3471. border-top: 1px dotted #ccc;
  3472. }
  3473. .zhibiaoinfo .dc_hd:after{
  3474. position: absolute;
  3475. content: '';
  3476. left: 0;
  3477. top: 0;
  3478. bottom: 0;
  3479. width: 1px;
  3480. background: #fff;
  3481. }
  3482. .zhibiaoinfo .typetxt{
  3483. text-align: center;
  3484. font-size: 15px;
  3485. color: #333333;
  3486. width: 95px;
  3487. line-height: 1.2;
  3488. padding: 0 10px;
  3489. }
  3490. .zhibiaoinfo .dc_flex{
  3491. height: 40px;
  3492. line-height: 40px;
  3493. border-radius: 20px;
  3494. background: #F5F5F5;
  3495. overflow: hidden;
  3496. }
  3497. .zhibiaoinfo .typelist+.typelist{
  3498. margin-top: 5px;
  3499. }
  3500. .kaoshi_yq{
  3501. background: #FDFDFD;
  3502. border: 1px dotted #50E3C2;
  3503. border-radius: 4px;
  3504. padding: 10px;
  3505. }
  3506. .kaoshi_yq+.kaoshi_yq{
  3507. margin-top: 10px;
  3508. }
  3509. .kaoshi_yq .yq_type{
  3510. font-size: 15px;
  3511. color: #50E3C2;
  3512. line-height: 23px;
  3513. }
  3514. .kaoshi_yq .yq_type .cz{
  3515. float: right;
  3516. color: #999;
  3517. font-size: 14px;
  3518. }
  3519. .kaoshi_yq .yq_list{
  3520. margin-top: 15px;
  3521. }
  3522. .kaoshi_yq .yq_tiyle{
  3523. position: relative;
  3524. line-height: 23px;
  3525. font-size: 16px;
  3526. color: #333333;
  3527. padding-left: 18px;
  3528. margin-bottom: 5px;
  3529. word-wrap: break-word;
  3530. }
  3531. .kaoshi_yq .yq_tiyle:after{
  3532. content: '';
  3533. position: absolute;
  3534. left: 0;
  3535. background: #50E3C2;
  3536. width: 9px;
  3537. height: 9px;
  3538. border-radius: 50%;
  3539. top: 7px;
  3540. }
  3541. .kaoshi_yq .yq_txt{
  3542. padding-left: 18px;
  3543. line-height: 26px;
  3544. height: 26px;
  3545. font-size: 15px;
  3546. color: #999999;
  3547. }
  3548. .kaoshi_yq .yq_cd{
  3549. display: inline-block;
  3550. height: 26px;
  3551. line-height: 26px;
  3552. border-radius: 13px;
  3553. padding: 0 8px;
  3554. font-size: 13px;
  3555. color: #fff;
  3556. }
  3557. .kaoshi_yq .yq_cd.cd_wzw {
  3558. background: #FF5B8A;
  3559. }
  3560. .kaoshi_yq .yq_cd.cd_yzw {
  3561. background: #7ED322;
  3562. }
  3563. .kaoshi_yq.zsd_type01 .yq_type{
  3564. color: #F94D7E;
  3565. }
  3566. .kaoshi_yq.zsd_type02 .yq_type{
  3567. color: #58BAEA;
  3568. }
  3569. .kaoshi_yq.zsd_type03 .yq_type{
  3570. color: #7ED322;
  3571. }
  3572. .kaoshi_yq.zsd_type01{
  3573. border-color: #F94D7E;
  3574. }
  3575. .kaoshi_yq.zsd_type02{
  3576. border-color: #58BAEA;
  3577. }
  3578. .kaoshi_yq.zsd_type03{
  3579. border-color: #7ED322;
  3580. }
  3581. .kaoshi_yq.zsd_type01 .yq_tiyle:after{
  3582. background: #F94D7E;
  3583. }
  3584. .kaoshi_yq.zsd_type02 .yq_tiyle:after{
  3585. background: #58BAEA;
  3586. }
  3587. .kaoshi_yq.zsd_type03 .yq_tiyle:after{
  3588. background: #7ED322;
  3589. }
  3590. .kaoshi_yq.type_yy .yq_type{
  3591. color: #50E3C2;
  3592. }
  3593. .kaoshi_yq.type_jy .yq_type{
  3594. color: #FFB800;
  3595. }
  3596. .kaoshi_yq.type_lj .yq_type{
  3597. color: #48A3FE;
  3598. }
  3599. .kaoshi_yq.type_yy .yq_tiyle:after{
  3600. background: #50E3C2;
  3601. }
  3602. .kaoshi_yq.type_jy .yq_tiyle:after{
  3603. background: #FFB800;
  3604. }
  3605. .kaoshi_yq.type_lj .yq_tiyle:after{
  3606. background: #48A3FE;
  3607. }
  3608. .kaoshi_yq.type_yy{
  3609. border-color:#50E3C2;
  3610. }
  3611. .kaoshi_yq.type_jy{
  3612. border-color:#FFB800;
  3613. }
  3614. .kaoshi_yq.type_lj{
  3615. border-color:#48A3FE;
  3616. }
  3617. .jzd_banbox {
  3618. width: 100%;
  3619. height: 157px;
  3620. background: url(../images/jiazhangduan_bg.png) no-repeat top center/100% 157px;
  3621. position: relative;
  3622. margin-bottom: 55px;
  3623. }
  3624. .jzd_banbox .pic{
  3625. width: 60px;
  3626. height: 60px;
  3627. overflow: hidden;
  3628. border-radius: 50%;
  3629. border: 3px solid #FFFFFF;
  3630. position: absolute;
  3631. top: 10px;
  3632. left: 50%;
  3633. transform: translateX(-50%);
  3634. }
  3635. .jzd_banbox .pic img{
  3636. width: 54px;
  3637. height: 54px;
  3638. }
  3639. .jzd_banbox .ban_title{
  3640. position: absolute;
  3641. top:78px;
  3642. left: 0;
  3643. right: 0;
  3644. font-size: 15px;
  3645. color: #333333;
  3646. text-align: center;
  3647. }
  3648. .jzd_banbox .panellist{
  3649. position: absolute;
  3650. left: 10px;
  3651. right: 10px;
  3652. margin: 0 !important;
  3653. top: 100%;
  3654. transform: translateY(-50%);
  3655. }
  3656. .jzd_banbox .dc_hd{
  3657. text-align: center;
  3658. }
  3659. .jzd_banbox .dc_hd .finish{
  3660. color: #48A3FE;
  3661. }
  3662. .jzd_banbox .dc_hd .unfinished{
  3663. color: #FF1A36;
  3664. }
  3665. .jzd_banbox .dc_hd .time{
  3666. font-size: 14px;
  3667. height: 20px;
  3668. line-height: 20px ;
  3669. }
  3670. .jzd_banbox .dc_hd .zt{
  3671. font-size: 17px;
  3672. margin-top: 2;
  3673. height: 24px;
  3674. line-height: 24px;
  3675. }
  3676. .jzd_banbox .dc_hd .no{
  3677. height: 46px;
  3678. line-height: 46px;
  3679. font-size: 14px;
  3680. color: #333333;
  3681. }
  3682. .jzd_banbox .dc_hd .km{
  3683. font-size: 13px;
  3684. color: #999;
  3685. margin-top: 4px;
  3686. }
  3687. .xuexi_ztbox {
  3688. padding: 5px 0;
  3689. }
  3690. .xuexi_ztbox .dc_hd{
  3691. line-height: 28px ;
  3692. font-size: 15px;
  3693. color: #333;
  3694. padding-left: 13px;
  3695. }
  3696. .xuexi_ztbox .dc_flex+.dc_flex{
  3697. margin-top: 15px;
  3698. }
  3699. .xuexi_ztbox .dc_hd span{
  3700. display: inline-block;
  3701. background: #FF7586;
  3702. height: 28px;
  3703. line-height: 28px;
  3704. border-radius: 14px;
  3705. color: #fff;
  3706. font-size: 15px;
  3707. padding: 0 10px;
  3708. margin-left: 7px;
  3709. }
  3710. .weiwancheng{
  3711. padding-left: 22px;
  3712. }
  3713. .weiwancheng .title{
  3714. font-size: 15px;
  3715. color: #333333;
  3716. line-height: 23px;
  3717. }
  3718. .weiwancheng .yuanyin{
  3719. font-size: 15px;
  3720. color: #999999;
  3721. line-height: 23px;
  3722. margin-top: 5px;
  3723. }
  3724. .jzd_footbtns{
  3725. position: fixed;
  3726. bottom: 0;
  3727. left: 0;
  3728. right: 0;
  3729. z-index: 3;
  3730. background: #fff;
  3731. }
  3732. .jzd_footbtns~.mui-content{
  3733. padding-bottom: 54px;
  3734. }
  3735. .zsd_echarts{
  3736. position: relative;
  3737. height: 140px;
  3738. }
  3739. .zsd_echarts>.dc_hd{
  3740. padding: 10px;
  3741. }
  3742. .zsd_echarts .echarts{
  3743. height: 120px;
  3744. width: 120px;
  3745. margin: 0 auto;
  3746. }
  3747. .zsd_echarts .dc_type{
  3748. width: 68px;
  3749. }
  3750. .echarts-txt{
  3751. position: absolute;
  3752. right: 10px;
  3753. top: 24px;
  3754. }
  3755. .echarts-txt .dc_flex{
  3756. height: 24px;
  3757. line-height: 24px;
  3758. width: 68px;
  3759. color: #fff;
  3760. font-size: 14px;
  3761. text-align: center;
  3762. }
  3763. .echarts-txt .dc_flex .dc_hd span{
  3764. display: inline-block;
  3765. height: 100%;
  3766. position: relative;
  3767. width: 100%;
  3768. }
  3769. .echarts-txt .dc_flex .dc_hd span:after {
  3770. content: '';
  3771. position: absolute;
  3772. left: 6px;
  3773. width: 9px;
  3774. height: 9px;
  3775. border-radius: 50%;
  3776. top: 6.5px;
  3777. }
  3778. .echarts-txt .dc_flex:nth-child(1) .dc_hd span:after{
  3779. background: #48A3FE;
  3780. }
  3781. .echarts-txt .dc_flex:nth-child(2) .dc_hd span:after{
  3782. background: #FFB800;
  3783. }
  3784. .echarts-txt .dc_flex:nth-child(3) .dc_hd span:after{
  3785. background: #50E3C2;
  3786. }
  3787. .echarts-txt .dc_flex .dc_hd+.dc_hd{
  3788. border-left: 1px solid #fff;
  3789. }
  3790. .echarts-txt .dc_flex+.dc_flex{
  3791. margin-top: 5px;
  3792. }
  3793. .echarts-txt .dc_flex:nth-child(1){
  3794. color: #48A3FE;
  3795. }
  3796. .echarts-txt .dc_flex:nth-child(2){
  3797. color: #FFB800;
  3798. }
  3799. .echarts-txt .dc_flex:nth-child(3){
  3800. color: #50E3C2;
  3801. }
  3802. .bgxqbox .type_jy,.bgxqbox .type_lj{
  3803. display: none;
  3804. }
  3805. .kaoshi_zhaowo .yq_list{
  3806. display: none;
  3807. }
  3808. .kaoshi_zhaowo.active .yq_list{
  3809. display: block;
  3810. }
  3811. .kaoshi_zhaowo .cz b{
  3812. font-style: normal;
  3813. }
  3814. .kaoshi_zhaowo .cz i{
  3815. display: inline-block;
  3816. }
  3817. .kaoshi_zhaowo.active .cz i{
  3818. transform: rotate(180deg);
  3819. }