main.css 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792
  1. @charset "utf-8";
  2. @media (min-width: 1200px) {
  3. .container{width: 1200px;}
  4. .table-responsive{overflow-x: visible;}
  5. }
  6. /*根据bootstrap popover框 自定义popover框*/
  7. .popover1{position: absolute; top: calc(100% + 9px); left: 50%; transform: translateX(-50%); z-index: 1060; display: none; max-width: 300px; padding: 1px; text-align: left;background-color: #fff; border: 1px solid #ccc; border-radius: 6px; box-shadow: 0 5px 10px rgba(0,0,0,.2); border: 1px solid rgba(0,0,0,.2);}
  8. .popover1.bottom>.arrow{top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, .25);}
  9. .popover1>.arrow{border-width: 11px;}
  10. .popover1>.arrow, .popover1>.arrow:after{position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid;}
  11. .popover1.bottom>.arrow:after{top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff;}
  12. .popover1>.arrow:after{content: ""; border-width: 10px;}
  13. .popover1>.arrow, .popover1>.arrow:after{position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid;}
  14. .ms-badge{background-color: #f4242e; width: 16px; height: 16px; line-height: 16px; display: inline-block; color: #fff; border-radius: 50%; font-size: 12px; text-align: center; position: relative; top: -12px; left: 0;}
  15. .ms-badge:empty{display: none;}
  16. /*bootstrap分页*/
  17. .pagination{margin: 30px 0 5px;}
  18. /*缩略图*/
  19. .ms-thumbnail{display: block;}
  20. .ms-thumbnail img{margin: 0 auto 20px; display: block;}
  21. .ms-thumbnail .ms-caption{padding: 0 25px; text-align: center;}
  22. .ms-thumbnail .ms-caption .tit{font-size: 18px; color: #333; margin-bottom: 10px;}
  23. .ms-thumbnail .ms-caption p{color: #848484;}
  24. /*/缩略图*/
  25. /*复制功能*/
  26. .copy{cursor: pointer; margin-left: 5px; color: #157df1;}
  27. /*/复制功能*/
  28. /*上传图标*/
  29. .new-upload-icon{position: relative; border: 1px solid #ddd; height: 100px; width: 100px; /*border-radius: 15px;*/ background: url("../img/icon-10.png") no-repeat center 23px; overflow: hidden; margin-left: 15px;}
  30. .new-upload-icon img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; /*border-radius: 15px;*/ background-color: #fff; /*border: 1px solid #e5e5e5;*/}
  31. .new-upload-icon input[type=file]{position: absolute; z-index: 2; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  32. .new-upload-icon .text{text-align: center; margin-top: 60px; font-size: 14px; font-weight: 600; color: #999;}
  33. .new-upload-icon .ongoing{position: absolute; left: 0; top: 0; background: rgba(0,0,0,.5); width: 100%; height: 100%; color: #fff; display: flex; justify-content: center; align-items: center; font-size: 12px; display: none;}
  34. .new-upload-icon.uploading .ongoing{display: flex;}
  35. .new-upload-icon .reset{position: absolute; left: 0; bottom: 0; height: 20px; line-height: 20px; background: rgba(0,0,0,.5); width: 100%; color: #fff; text-align: center; font-size: 12px; display: none;}
  36. .new-upload-icon .reset{display: none;}
  37. .new-upload-icon.uploaded .reset{display: none;}
  38. .new-upload-icon.uploaded:hover .reset{display: block;}
  39. /*上传图标*/
  40. /*上传图片*/
  41. /*上传图片*/
  42. /*输入框搜索*/
  43. .input-search{position: relative;}
  44. .input-search .iconfont{position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 16px; cursor: pointer; color: #157df1;}
  45. .input-search input{height: 30px; line-height: 30px; width: 170px; border: 1px solid #e5e5e5; padding-left: 10px; background-color: #fff; color: #666; border-radius: 3px; font-size: 13px;}
  46. .input-search input::-webkit-input-placeholder{color: #666 !important; font-size: 13px;}
  47. .input-search input::-moz-placeholder{color: #666 !important; font-size: 13px;}
  48. .input-search input::-ms-input-placeholder{color: #666 !important; font-size: 13px;}
  49. /*APP iOS Android 下拉*/
  50. .app-system-select{position: relative; width: 90px; height: 30px; line-height: 28px; padding-left: 10px; border: 1px solid #e5e5e5; border-radius: 3px; background-color: #fff; cursor: pointer; color: #666; margin-right: 10px; font-size: 13px;}
  51. .app-system-select .iconfont{position: absolute; right: 7px; font-size: 14px; height: auto; color: #999;}
  52. .app-system-select ul{position: absolute; top: calc(100% + 1px); left: 0; background-color: #fff; width: 100px; padding: 10px; box-shadow: 0 0 5px rgba(0,0,0,.1); z-index: 3; line-height: 30px; display: none;}
  53. .app-system-select ul li{cursor: pointer;}
  54. .app-system-select ul li.active{color: #157df1;}
  55. .app-system-select ul li:hover{color: #157df1;}
  56. .blue-line{width: 35px; height: 2px; background-color: #157df1; margin: 13px 0;}
  57. .crumbs{padding: 15px 0; color: #666;}
  58. .crumbs a{color: #333;}
  59. .crumbs span{margin: 0 10px;}
  60. .warn-prompt{background-color: #fff5e7; padding: 8px 20px; border: 1px solid #feebcd; margin-top: 10px; font-size: 12px;}
  61. .warn-prompt .iconfont{color: #fd9823; margin-right: 5px; font-size: 13px;}
  62. .ie-prompt{display: none;}
  63. .ie-prompt-360{display: none;}
  64. .warn-prompt-1{margin-top: 10px; margin-bottom: 30px;}
  65. .warn-prompt-1 dt{font-size: 12px;}
  66. .warn-prompt-1 dd{margin-left: 40px; font-size: 12px;}
  67. .input-text{position: relative;}
  68. .input-text .error1{position: absolute; top: 100%; left: 0; color: #fd641d; display: none; font-size: 12px;}
  69. .input-text.form-error .error1{display: block;}
  70. .popover{font-size: 12px; max-width: 335px;}
  71. header{box-shadow: 0 2px 5px rgba(0,0,0,.05); position: relative; z-index: 2;}
  72. .header{/*padding: 10px 0;*/ position: relative;}
  73. .header .header-left img.hidden-xs{width: 138px; height: 60px; display: block;}
  74. .header .ms-nav{margin: 20px 0 0 35px;}
  75. .header .ms-nav li{float: left; margin: 0 15px;}
  76. @media (min-width: 1200px) {
  77. .header .ms-nav li>a{padding: 0 10px 5px; border-bottom: 2px solid transparent; color: #333;}
  78. .header .ms-nav li.active>a{border-bottom: 2px solid #157df1; color: #157df1;}
  79. .header .ms-nav li:hover>a{border-bottom: 2px solid #157df1;}
  80. }
  81. .header .login{margin-top: 15px;}
  82. .header .login li{float: left;}
  83. /*增加文档二级导航*/
  84. .header .doc-nav{position: relative; padding-bottom: 5px;}
  85. .header .ms-nav li .doc-nav>a{padding: 0 10px 5px; border-bottom: 2px solid transparent; color: #333;}
  86. .header .ms-nav li.active .doc-nav>a{border-bottom: 2px solid #157df1; color: #157df1;}
  87. .header .ms-nav li:hover .doc-nav>a{border-bottom: 2px solid #157df1;}
  88. .header .top-doc{position: absolute; top: calc(100%); left: 50%; z-index: 1000; width: 140px; transform: translateX(-50%); padding-top: 15px; display: none;}
  89. .header .top-doc dl{background-color: #fff; border: 1px solid #e5e5e5; border-radius: 3px; padding-top: 15px;}
  90. .header .top-doc dl dd{margin-bottom: 15px;}
  91. .header .top-doc a{color: #666; text-align: center; display: block;}
  92. .header .top-doc a.active{color: #157df1;}
  93. .header .top-doc a:hover{color: #157df1;}
  94. .header .ms-nav li:hover .doc-nav:hover .top-doc{display: block;}
  95. /*/增加文档二级导航*/
  96. /*login-in*/
  97. .login-in{position: absolute; right: 0; top: 0; height: 100%;}
  98. .login-in .login-user{cursor: pointer; padding-top: 20px; height: 100%;}
  99. .login-in .login-user .certified{color: #157df1;}
  100. .login-in .name-certified{color: #348dee; margin-right: 30px; padding-top: 20px;}
  101. .login-in .icon-arrow-bottom{color: #c1c5cc; font-size: 14px; margin-left: 5px;}
  102. .login-in .login-user dl{background-color: #fff; border-radius: 3px; border: 1px solid #e5e5e5; position: absolute; top: 60px; right: 0; z-index: 10; display: none; width: 115px; box-shadow: 0 5px 10px rgba(21,125,241,.1);}
  103. .login-in .login-user:hover dl{display: block;}
  104. .login-in .login-user dl dt{padding: 15px 0; margin-top: 10px; border-top: 1px solid #e5e5e5; color: #666; text-align: center;}
  105. .login-in .login-user dl dt a:hover{color: #157df1;}
  106. .login-in .login-user dl dt .icon-sign-out{margin-right: 3px; color: #666; position: relative; top: 1px;}
  107. .login-in .login-user dl dt a:hover .icon-sign-out{color: #157df1;}
  108. .login-in .login-user dl dd{margin-top: 10px; text-align: center;}
  109. .login-in .login-user dl dd a{color: #666;}
  110. .login-in .login-user dl dd a:hover{color: #157df1;}
  111. /*通知中心*/
  112. .header .login-in .notification{padding-top: 16px; margin-right: 15px; position: relative; cursor: pointer;}
  113. .header .login-in .notification .icon-msg{font-size: 20px; color: #157df1;}
  114. .header .login-in .notification .ms-badge{left: -7px;}
  115. .header .login-in .n-drop-down{width: 300px; z-index: 10; position: absolute; left: -100px; top: 100%; padding-top: 16px; display: none;}
  116. .header .login-in .n-drop-down .n-con{background-color: #fff; box-shadow: 0 3px 10px rgba(193,220,251,.7);}
  117. .header .login-in .n-drop-down .n-con .no{text-align: center; color: #333; padding: 50px 0;}
  118. .header .login-in .n-drop-down .n-con .no .icon-lingdang{color: #157df1; font-size: 30px;}
  119. .header .login-in .n-drop-down .n-con .yes{max-height: 330px; padding: 15px;}
  120. .header .login-in .n-drop-down .n-con .y-tit{color: #666; margin-bottom: 10px;}
  121. .header .login-in .n-drop-down .n-con .msg-list{max-height: 260px; overflow-y: auto;}
  122. .header .login-in .n-drop-down .n-con .msg-list li{margin-bottom: 10px;}
  123. .header .login-in .n-drop-down .icon-unread{color: #fed735;}
  124. .header .login-in .n-drop-down .icon-read{color: #999; font-size: 20px; position: relative; top: -2px;}
  125. .header .login-in .n-drop-down .m-right{margin-left: 25px; font-size: 12px;}
  126. .header .login-in .n-drop-down .m-right dt{margin-bottom: 5px; line-height: 20px;}
  127. .header .login-in .n-drop-down .m-right dt a{color: #999;}
  128. .header .login-in .n-drop-down .m-right.bold dt a{font-weight: 600; color: #333;}
  129. .header .login-in .n-drop-down .m-right.bold dd{font-weight: normal;}
  130. .header .login-in .n-drop-down .m-right dd .m-details{color: #157df1;}
  131. .header .login-in .n-drop-down .m-right dd .m-time{color: #999;}
  132. .header .login-in .n-drop-down .n-con .m-more{border-top: 1px solid #e6e6e6; color: #157df1; display: block; text-align: center; padding: 15px 0;}
  133. .header .login-in .notification:hover .n-drop-down{display: block;}
  134. /*/通知中心*/
  135. /*/login-in*/
  136. .paging{text-align: center; margin: 30px 0 5px;}
  137. .paging input[type=text]{width: 34px; display: inline-block; vertical-align: middle;}
  138. .paging .color-333{padding: 6px 0;}
  139. .help{text-align: left; padding: 70px 0 55px;}
  140. .help .tit{font-size: 36px; color: #157df1; text-align: center; margin-bottom: 60px;}
  141. .help dl{margin-bottom: 15px; color: #333;}
  142. .help dt{line-height: 30px; font-weight: 600;}
  143. .help dd{line-height: 30px;}
  144. .help dl .left{float: left;}
  145. .help dl .right{margin-left: 40px; /*width: 75%;*/ display: block;}
  146. .help1{padding: 50px 0 40px;}
  147. .help1 .tit{font-size: 32px; color: #333; margin-bottom: 5px;}
  148. .help1 .blue-line{margin: 0 auto 30px;}
  149. /*----------index-----------*/
  150. /*banner*/
  151. .index-banner .swiper-container{width: 100%; height: 100%;}
  152. .index-banner .swiper-slide{overflow: hidden; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;-webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center;-ms-flex-align: center; -webkit-align-items: center; align-items: center; width: 100%;}
  153. .index-banner .swiper-slide>a{display: block; height: 430px; width: 100%;}
  154. /*自定义swiper分页按钮*/
  155. .index-banner .swiper-pagination-bullet{width: 40px; height: 4px; display: inline-block; border-radius: 0; background-color: #fff; opacity: .4;}
  156. .index-banner .swiper-pagination-bullet-active{opacity: 1;}
  157. .index-banner .swiper-container-horizontal>.swiper-pagination-bullets{bottom: 20px;}
  158. .index-banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin: 0 5px;}
  159. .index-banner .banner-con{color: #fff;}
  160. .index-banner .banner-con .h1{font-size: 32px; font-weight: 600;}
  161. .index-banner .banner-con .h2{font-size: 18px; line-height: 30px; margin-bottom: 20px;}
  162. .index-banner .banner-con .ms-btn{border-color: #fff; width: 110px; color: #fff; font-size: 16px;}
  163. .index-banner .banner-con.con1{padding: 95px 0 0 40px;}
  164. .index-banner .banner-con.con1 .h1{margin-bottom: 20px;}
  165. .index-banner .banner-con.con1 span{margin-left: 45px;}
  166. .index-banner .banner-con.con1 i{font-size: 22px;}
  167. .index-banner .banner-con.con2{padding: 110px 0 0 90px;}
  168. .index-banner .banner-con.con2 .h1{margin-bottom: 10px;}
  169. .index-banner .banner-con.con3{text-align: center; padding-top: 75px;}
  170. .index-banner .banner-con.con3 .h1{margin-bottom: 20px;}
  171. .index-banner .banner-con.con4{padding: 100px 0 0 40px;}
  172. .index-banner .banner-con.con4 .h1{margin-bottom: 20px;}
  173. /*/banner*/
  174. /*publicity*/
  175. .publicity-wrap{background-color: #f5f9fe;}
  176. .publicity li{background-color: #f5f9fe; padding: 18px 30px 0; height: 95px; float: left; width: 33.333333%; border-left: 1px solid #e5e5e5;}
  177. .publicity li>a>div{float: none; display: table-cell; vertical-align: top;}
  178. .publicity li:first-of-type{border-left-color: transparent;}
  179. .publicity li:hover{background-color: #fff;}
  180. .publicity li .p-right{padding-left: 15px;}
  181. .publicity li .tit{font-size: 18px; color: #333; margin-bottom: 3px;}
  182. .publicity li .blue-line{margin: 0 0 10px; display: none;}
  183. .publicity li p{font-size: 12px;}
  184. .publicity li:hover .tit{color: #157df1;}
  185. .publicity li:hover p{color: #157df1;}
  186. /*/publicity*/
  187. /*网站封装APP*/
  188. .index-common{text-align: center; padding: 80px 0;}
  189. .index-common>h1{color: #157df1; margin-bottom: 20px;}
  190. .index-common>h4{color: #666; margin-bottom: 60px;}
  191. .index-encapsulation .e-list{margin-bottom: 50px;}
  192. .index-encapsulation .e-list li{width: 20%; float: left;}
  193. .index-encapsulation .ms-thumbnail img{margin-bottom: 15px;}
  194. /*/网站封装APP*/
  195. /*企业签名*/
  196. .index-signature-wrap{background: url("../img/index-bg-1.jpg") no-repeat center; height: 660px;}
  197. .index-signature>h1{color: #fff;}
  198. .index-signature>h4{color: #fff;}
  199. .index-signature .row{padding: 0 50px; margin: 0 -10px 40px;}
  200. .index-signature .row .col-sm-6{padding: 0 10px; margin-bottom: 20px;}
  201. .index-signature .row .con{background-color: #fff; padding: 0 20px;}
  202. .index-signature .row .con>*{display: table-cell; vertical-align: middle; float: none; height: 120px;}
  203. .index-signature .row .con dl{text-align: left; padding-left: 15px;}
  204. .index-signature .row .con dl dt{color: #333; font-size: 18px; margin-bottom: 5px;}
  205. .index-signature .more{border: 1px solid #fff; color: #fff;}
  206. .index-signature .more:hover{background-color: #fff; color: #157df1;}
  207. /*/企业签名*/
  208. /*内测分发*/
  209. .index-releas>h4{margin-bottom: 50px;}
  210. .index-releas .row{margin-bottom: 50px;}
  211. .index-releas .ms-thumbnail img{margin-bottom: 10px;}
  212. /*/内测分发*/
  213. /*功能累计数*/
  214. .cumulative-wrap{background: url("../img/index-bg-2.jpg") no-repeat center; height: 300px;}
  215. .index-cumulative{padding: 70px 0;}
  216. .index-cumulative>h1{color: #fff; margin-bottom: 50px;}
  217. .index-cumulative .num{font-size: 36px; color: #fff; margin-bottom: 5px;}
  218. .index-cumulative .text{color: #fff;}
  219. /*/功能累计数*/
  220. /*合作伙伴*/
  221. .index-partners{padding: 80px 60px 60px;}
  222. .index-partners>h1{margin-bottom: 60px;}
  223. .index-partners .con{position: relative; border: 1px solid #e5e5e5;}
  224. .index-partners ul li{float: left; width: 20%; padding: 0 10px; margin-bottom: 20px;}
  225. .index-partners .con p{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: #fff; color: #333; padding: 10px; display: flex; align-items: center; cursor: pointer; display: none;}
  226. .index-partners .con:hover p{display: flex;}
  227. /*/合作伙伴*/
  228. /*footer*/
  229. footer{background-color: #2e3033; padding: 60px 0;}
  230. .footer .left dl{margin-right: 160px;}
  231. .footer .left dl:last-of-type{margin-right: 100px;}
  232. .footer .left dt{color: #fff; font-size: 18px; margin-bottom: 20px;}
  233. .footer .left dd{margin-bottom: 10px; color: #fff; font-size: 12px;}
  234. .footer .left dd.line{background-color: #fff; width: 16px; height: 2px; margin-bottom: 15px;}
  235. .footer .left dd a{color: #fff; font-size: 12px;}
  236. .footer .left dd a:hover{text-decoration: underline;}
  237. .footer .right a{display: block;}
  238. .footer .right a img{width: 110px; height: 60px;}
  239. .footer .right .wechat{padding: 5px; background-color: #fff; margin: 10px 0; width: 95px; height: 95px; overflow: hidden;}
  240. .footer .right .wechat img{width: 85px; height: 85px;}
  241. .footer .right p{font-size: 12px; color: #fff; text-align: right;}
  242. .footer .record{text-align: center; color: #fff; margin-top: 20px;}
  243. /*/footer*/
  244. /*----------index-----------*/
  245. /*----------登录-----------*/
  246. .login-common{width: 500px; border-radius: 0; border: 1px solid #e5e5e5; padding: 40px 45px; box-shadow: 0 5px 10px rgba(0,0,0,.1); margin: 80px auto;}
  247. .login-common .help-block{position: absolute; top: 100%; display: none;}
  248. .login-common .has-error .help-block{display: block;}
  249. .login-common .input-lg{font-size: 16px;}
  250. .login-common .tit{font-size: 18px; color: #333; text-align: center; margin-bottom: 30px;}
  251. .login-common .form-group{position: relative; margin-bottom: 20px;}
  252. .login-common .form-group label{position: absolute; left: 12px; top: 50%; transform: translateY(-50%);}
  253. .login-common .form-group .form-control{padding-left: 40px; border-radius: 0;}
  254. .login-common .form-group .icon-tel{font-size: 22px;}
  255. .login-common .form-group .icon-pwd{font-size: 18px;}
  256. .login-common .checkbox{margin: 0;}
  257. .login-common .checkbox input{margin-left: 0;}
  258. .login-common .checkbox span{margin-left: 20px;}
  259. .login-common .ms-btn-primary{width: 100%; font-size: 14px;}
  260. .login-common .login-logo{margin-bottom: 20px;}
  261. .login-common .registered-logo{margin-bottom: 30px;}
  262. .login-common .login-logo img{margin: 0 auto;}
  263. .login-common .login-logo .slogan-wrap{text-align: center; margin-top: 15px;}
  264. .login-common .login-logo .slogan{display: inline-block;}
  265. .login-common .login-logo .slogan .text{margin: 0 7px; color: #999;}
  266. /*----------/登录-----------*/
  267. /*----------注册-----------*/
  268. .login-common .form-group .icon-user{font-size: 20px;}
  269. .login-common .form-group .icon-email{font-size: 20px; top: 55%;}
  270. .login-common .verification-code .form-control{width: 70%;}
  271. .login-common .verification-code .ms-btn-primary{width: 27%; margin-top: 0;}
  272. /*----------/注册-----------*/
  273. /*----------实名认证-----------*/
  274. .real-name-wrap{background-color: #f2f2f5; padding-bottom: 40px;}
  275. .real-name{background-color: #fff; border-radius: 3px; border: 1px solid #e5e5e5; padding: 65px 0;}
  276. .real-name.real-name-error{background-color: transparent; border-radius: 3px; border: none; padding: 65px 0 0;}
  277. .real-name .top{padding-bottom: 25px; text-align: center;}
  278. .real-name .top ul{display: inline-block;}
  279. .real-name .top ul li{float: left;}
  280. .real-name .top ul li:nth-of-type(odd){margin: 0 35px;}
  281. .real-name .top ul li .num{width: 27px; height: 27px; text-align: center; line-height: 27px; color: #fff; font-size: 18px; border-radius: 50%; background-color: #d7dde4; position: relative; top: -1px;}
  282. .real-name .top ul li .text{color: #333; font-size: 18px; margin-left: 10px;}
  283. .real-name .top ul li.active .text{color: #348dee; font-weight: 600;}
  284. .real-name .top ul li.active .num{background-color: #348dee;}
  285. .real-name .top ul li dl{margin: 12px 20px 0;}
  286. .real-name .top ul li dd{background-color: #d7dde4; width: 3px; height: 3px; border-radius: 3px; float: left; margin: 0 2px;}
  287. /*1*/
  288. .real-name .con1{text-align: center; background-color: #fff;}
  289. .real-name .con .choice{text-align: left; padding-left: 25px; margin-bottom: 20px;}
  290. .real-name .con .choice-wrap{display: inline-block; padding: 75px 0 160px;}
  291. .real-name .con li{width: 320px; border: 1px solid #e5e5e5; border-radius: 3px; padding: 65px 0 35px; margin: 0 25px;}
  292. .real-name .con li.active{border-color: #157df1;}
  293. .real-name .con li .con-t{background-color: #fbfbfb; border: 1px solid #e5e5e5; width: 145px; height: 145px; border-radius: 50%; margin: 0 auto;}
  294. .real-name .con li:first-of-type .con-t{background: url("../img/icon-8.png") no-repeat center;}
  295. .real-name .con li:last-of-type .con-t{background: url("../img/icon-9.png") no-repeat center;}
  296. .real-name .con li .tit{color: #333; font-size: 18px; text-align: center; margin-top: 35px;}
  297. .real-name .con li p{color: #666; font-size: 12px; text-align: center; line-height: 24px; margin-top: 5px;}
  298. .real-name .con li .authentication{width: 50%; margin: 40px auto 0; display: block;}
  299. .real-name .con li:hover{border-color: #348dee; box-shadow: 0 0px 10px rgba(0,0,0,.1);}
  300. .real-name .con li:hover .con-t{background-color: transparent; border-color: transparent;}
  301. .real-name .con li:hover .authentication{background: #348dee; color: #fff; border-color: #348dee;}
  302. /*2*/
  303. .real-name .con2{padding: 0 200px; /*background-color: #fff;*/}
  304. .real-name .con2 .form-group{margin-bottom: 30px;}
  305. .real-name .con2 .form-group .control-label{color: #333;}
  306. .control-label span{color: #ff4222; margin-right: 10px;}
  307. .real-name .con2 .upload-img1{position: relative; border: 1px dashed #e5e5e5; height: 150px; border-radius: 5px; background: url("../img/icon-10.png") no-repeat center 40px; overflow: hidden; margin-bottom: 30px;}
  308. .real-name .con2 .upload-img1:last-of-type{margin-bottom: 0;}
  309. .real-name .con2 .upload-img1 img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: #fff;}
  310. .real-name .con2 .upload-img1 .thumbnail{position: absolute; z-index: 2; width: 100%; height: 100%; left: 0; top: 0; opacity: 0; cursor: pointer;}
  311. .real-name .con2 .upload-img1 .text{text-align: center; margin-top: 80px;}
  312. .real-name .con2 .upload-img1 .reset{position: absolute; left: 0; bottom: 0; height: 30px; line-height: 30px; background: rgba(0,0,0,.5); width: 100%; color: #fff; text-align: center; display: none;}
  313. .real-name .con2 .upload-img1 .reset{display: none;}
  314. .real-name .con2 .upload-img1.uploaded .reset{display: none;}
  315. .real-name .con2 .upload-img1.uploaded:hover .reset{display: block;}
  316. .real-name .con2 .upload-img1 .water-mark{display: none;}
  317. .real-name .con2 .upload-img1 .water-mark img{background-color: transparent;}
  318. .real-name .con2 .upload-img1.uploaded .water-mark{display: block;}
  319. .real-name .con2 .upload-img1 .ongoing{position: absolute; left: 0; top: 0; background: rgba(0,0,0,.5); width: 100%; height: 100%; color: #fff; display: flex; justify-content: center; align-items: center; font-size: 12px; display: none;}
  320. .real-name .con2 .upload-img1.uploading .ongoing{display: flex;}
  321. .real-name .data-uploading .submit{width: 160px;}
  322. .real-name .con2 .upload-license{height: 340px; margin-bottom: 0; background-position: center 40%; display: flex; align-items: center;}
  323. .real-name .con2 .upload-license .text{text-align: center; width: 100%; margin-top: 0;}
  324. /*3*/
  325. .real-name .con3-top{padding: 80px 135px 130px; border: 1px solid #e5e5e5; border-radius: 3px; background-color: #fff;}
  326. .real-name .con3-top>h3{font-size: 28px; color: #333; margin-top: 40px;}
  327. .real-name .con3-top>h4{font-size: 18px; color: #333; margin-top: 15px;}
  328. .list-bottom-common{padding: 40px 140px; margin-top: 20px; margin-bottom: 40px; border: 1px solid #e5e5e5; border-radius: 3px; background-color: #fff;}
  329. .list-bottom-common .index-common{padding: 0;}
  330. .list-bottom-common .index-common .row{margin-top: 0;}
  331. .list-bottom-common .index-common .con{border: 1px solid #e5e5e5; border-radius: 3px; padding: 40px 30px 45px;}
  332. .list-bottom-common .index-common .con p{line-height: 20px; font-size: 12px; margin-top: 30px; height: 80px;}
  333. .list-bottom-common .index-common .con img{height: 83px; margin: 0 auto 20px;}
  334. .list-bottom-common .index-common .con:hover{box-shadow: 0 5px 20px rgba(0,0,0,.1);}
  335. .list-bottom-common .index-common .con:hover h4{color: #157df1;}
  336. .real-name .con3-top .btn-reset{background-color: #fd9823; color: #fff; padding: 9px 0; width: 160px; display: block; margin: 40px auto 0;}
  337. .real-name .list-bottom-common{margin-bottom: 0;}
  338. /*----------/实名认证-----------*/
  339. /*----------价格-----------*/
  340. .buy-distribution{padding: 90px 70px 0;}
  341. .buy-distribution .con{border: 1px solid #e5e5e5; padding-bottom: 35px; margin-bottom: 30px;}
  342. .buy-distribution .con:hover{box-shadow: 0 5px 10px rgba(21,125,241,.2);}
  343. .buy-distribution .con .c-top{background: linear-gradient(to right, #5aabfc, #28c9f7); height: 160px; border-radius: 0 0 50% 50%; text-align: center; padding-top: .1px; position: relative;}
  344. .buy-distribution .con .c-top .text{color: #fff; font-size: 16px; margin-top: 30px;}
  345. .buy-distribution .con .c-top .num{color: #fff; font-size: 50px;}
  346. .buy-distribution .con .c-top .num span{font-size: 12px;}
  347. .buy-distribution .con .c-top .recommended{position: absolute; top: 0; right: 0; display: none;}
  348. .buy-distribution .tooltip .tooltip-inner{max-width: 300px;}
  349. .buy-distribution .con .bottom .text{color: #333; margin-top: 25px;}
  350. .buy-distribution .con .bottom .price{color: #157df1; font-size: 40px; margin-top: 15px;}
  351. .buy-distribution .con .bottom .price span{font-size: 12px;}
  352. .buy-distribution .con .bottom .btn-buy{padding: 9px 0; width: 120px; border: 1px solid #157df1; color: #157df1; margin-top: 25px;}
  353. .buy-distribution .con:hover .bottom .btn-buy{background-color: #157df1; color: #fff;}
  354. .buy-distribution .con .bottom-con{padding: 0 30px; margin-top: 40px;}
  355. .buy-distribution .con .bottom-con dl{border-top: 1px solid #e5e5e5; text-align: left; color: #666; padding-top: 20px; height: 156px;}
  356. .buy-distribution .con .bottom-con dl dd{margin: 5px 0;}
  357. .buy-distribution .con .bottom-con dl dd .icon-gou{margin-right: 10px;}
  358. .buy-distribution .con .bottom-con dl dd .icon-prompt{position: relative; margin-left: 5px; top: -3px; cursor: pointer;}
  359. .buy-distribution p{padding: 10px 0 40px; border-bottom: 1px solid #e5e5e5;}
  360. .buy-distribution p a{color: #157df1;}
  361. /*----------/价格-----------*/
  362. /*----------价格改版 改版完成后,将上一版价格样式删除-----------*/
  363. .price-banner{background: url("../img/price-1.jpg") no-repeat center; height: 170px;}
  364. .price-tab{position: relative;}
  365. .price-tab ul{position: absolute; left: 0; bottom: 0;}
  366. .price-tab ul li{float: left; width: 140px; height: 46px; line-height: 46px; text-align: center; background: rgba(0,0,0,.6); font-size: 18px; color: #fff; margin-right: 1px; cursor: pointer;}
  367. .price-tab ul li.active{background-color: #157df1;}
  368. .price-tab ul li:hover{background-color: #157df1;}
  369. .price-con>div{display: none;}
  370. .price-con .price-common{margin-top: 80px;}
  371. .price-con .price-common h1{color: #157df1; text-align: center; margin-bottom: 20px;}
  372. .price-con .price-common h1 span{color: #fd641d; font-size: 18px;}
  373. .price-con .price-common .p1{color: #666; text-align: center; font-size: 16px; margin-bottom: 30px;}
  374. .price-con .table-wrap{padding: 0 120px;}
  375. .price-con .price-common table{table-layout: fixed;}
  376. .price-con .price-common table th{padding: 0; text-align: center; color: #333; vertical-align: middle; height: 50px; font-weight: bold;}
  377. .price-con .price-common table td{padding: 0; text-align: center; color: #333; vertical-align: middle; height: 50px;}
  378. .price-con .price-common table td .font20{font-size: 18px;}
  379. .price-con .price-common table td .free{font-size: 14px;}
  380. .price-con .price-common .badge-basis{position: relative;}
  381. .price-con .price-common .badge{background-color: #eb1f1e; position: absolute; left: calc(100% + 5px); top: -10px; border-radius: 5px; font-size: 12px; padding: 3px 5px; font-weight: normal;}
  382. .price-con .price-common table .icon-duihao{color: #13c960; font-size: 24px;}
  383. .price-con .price-common table .icon-xingxing2{color: #b0b0b0; font-size: 24px;}
  384. .price-con .price-common table .icon-xingxing{color: #fec323; font-size: 24px;}
  385. .buy-number{padding: 0 60px;}
  386. .buy-number .price-common .con{border: 1px solid #e5e5e5; padding-bottom: 40px;}
  387. .buy-number .price-common .con:hover{box-shadow: 0 5px 10px rgba(21,125,241,.2);}
  388. .buy-number .price-common .c-top{text-align: center; padding: 30px 0 35px; position: relative;}
  389. .buy-number .price-common .con .c-top .num{color: #333; font-size: 50px;}
  390. .buy-number .price-common .con .c-top .num span{font-size: 16px;}
  391. .buy-number .price-common .con .c-top p{color: #666;}
  392. .buy-number .price-common .con .c-top .recommended{position: absolute; top: 0; right: 0; display: none;}
  393. .buy-number .price-common .tooltip .tooltip-inner{max-width: 300px;}
  394. .buy-number .price-common .con .bottom-con{padding: 0 30px;}
  395. .buy-number .price-common .con .bottom-con dl{border-top: 1px solid #e5e5e5; text-align: left; color: #666; padding-top: 20px; height: 195px;}
  396. .buy-number .price-common .con .bottom-con dl dd{margin: 10px 0;}
  397. .buy-number .price-common .con .bottom-con dl dd .icon-gou{margin-right: 10px; font-size: 14px;}
  398. .buy-number .price-common .con .bottom-con dl dd .icon-prompt{position: relative; margin-left: 5px; top: -3px; cursor: pointer;}
  399. .buy-number .price-common .con .bottom-con .b-price{font-size: 16px; color: #157df1; text-align: center; margin-bottom: 25px;}
  400. .buy-number .price-common .con .bottom-con .b-price span{font-size: 40px;}
  401. .buy-number .price-common .con .bottom{text-align: center;}
  402. .buy-number .price-common .con .bottom .btn-buy{padding: 9px 12px; width: 120px;}
  403. .price-con .tab-2 .price-common .p1{margin-bottom: 40px;}
  404. .price-con>.tab-3{margin-bottom: 60px;}
  405. .price-con .big-bag-price h1{color: #fd9817;}
  406. .buy-number .big-bag-price .con .c-top .num{color: #fd9817;}
  407. .buy-number .big-bag-price .con .c-top .num span{color: #333;}
  408. .buy-number .big-bag-price .color-hover{color: #fd9817;}
  409. .buy-number .big-bag-price .con .bottom .btn-buy{background-color: #fd9817; border-color: #fd9817;}
  410. .buy-number .big-bag-price .con .bottom-con .b-price{color: #fd9817;}
  411. /*----------/价格改版 改版完成后,将上一版价格样式删除-----------*/
  412. /*----------价格支付-----------*/
  413. .price-pay-wrap{background-color: #f2f2f5; padding-bottom: 40px;}
  414. .price-pay .con{background-color: #fff; border-radius: 3px; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  415. .price-pay .common .tit{padding: 25px 30px 20px; border-bottom: 1px solid #e5e5e5; color: #333;}
  416. .price-pay .common ul{padding: 20px 25px;}
  417. .price-pay .common ul li{float: left; position: relative; cursor: pointer;}
  418. .price-pay .common .list1 li{border: 1px solid #e5e5e5; border-radius: 3px; padding: 12px 20px 11px; margin-right: 40px;}
  419. .price-pay .common .list1 li .left{padding-right: 40px;}
  420. .price-pay .common .list1 li .text1{color: #666;}
  421. .price-pay .common .list1 li .text2{color: #333; margin-top: 5px; font-weight: 600;}
  422. .price-pay .common .list1 .right{color: #157df1; font-size: 30px; padding-left: 50px; border-left: 1px solid #e5e5e5;}
  423. .price-pay .common .list1 .right span{color: #666; font-size: 14px;}
  424. .price-pay .common ul li .radio-checked{display: none; position: absolute; right: 0; bottom: 0;}
  425. .price-pay .common ul li.active .radio-checked{display: block;}
  426. .price-pay .common ul.list1 .active{border-color: #157df1;}
  427. .price-pay .common .list2.active{border-color: #157df1;}
  428. .price-pay .common .list2 li.active .icon-radio{width: 16px; height: 16px; background-position: 0 -17px;}
  429. .price-pay .common .list2 li{margin-right: 70px; position: relative;}
  430. .price-pay .common .list2 li .preferential{background-color: #ed2027; border-radius: 3px; color: #fff; position: absolute; top: -18px; left: 100%; font-size: 12px; white-space: nowrap; padding: 1px 3px; z-index: 3; display: none;}
  431. .price-pay .common .list3 li{height: 44px; border: 1px solid #e5e5e5; justify-content: center; display: flex; align-items: center; margin-right: 20px; padding: 0 30px;}
  432. .price-pay .common .list3 li.disabled{background-color: #f9f9f9; cursor: not-allowed;}
  433. .price-pay .common .list3 li.disabled .iconfont{color: #b3b3b3;}
  434. .price-pay .common .list3 li.disabled .remaining-amount{color: #999;}
  435. .price-pay .common .list3 li.disabled .remaining-amount .color-hover{color: #999;}
  436. .price-pay .common .list3 li img{display: inline-block;}
  437. .price-pay .common ul.list3 .active{border-color: #157df1;}
  438. .price-pay .common ul.list2 .disabled{cursor: not-allowed; color: #e5e5e5; background-color: transparent !important;}
  439. .price-pay .pay-money{padding-left: 25px; border-top: 1px solid #e5e5e5; margin-top: 20px; padding-bottom: 40px;}
  440. .price-pay .pay-money .money{color: #333; padding: 20px 0;}
  441. .price-pay .pay-money .money span{color: #fd641d; font-size: 24px;}
  442. .price-pay .pay-money .ms-btn{width: 160px; padding: 9px 0;}
  443. .price-pay .common .remaining-amount .a-num{font-size: 12px;}
  444. .price-pay .common .icon-yue{color: #ffa304; font-size: 22px; margin-right: 5px;}
  445. /*----------/价格支付-----------*/
  446. /*----------应用发布-----------*/
  447. .release-app-wrap{background-color: #f2f2f5;}
  448. .upload-file{box-shadow: 0 0 5px rgba(0,0,0,.05); border-radius: 3px; background-color: #fff; padding: 160px 0 100px; margin-top: 20px;}
  449. .upload-file .upload-btn{width: 240px; padding: 0; height: 60px; font-size: 18px; line-height: 58px; margin: 0 auto; display: block; position: relative;}
  450. .upload-file .upload-btn input[type=file]{position: absolute; width: 100%; height: 100%; left: 0; top: 0; opacity: 0; cursor: pointer;}
  451. .upload-file .upload-btn .iconfont{font-size: 30px; margin-right: 10px; position: relative;}
  452. .upload-file p{text-align: center; color: #666; line-height: 22px; margin-top: 15px;}
  453. .upload-file .upload-btn .text{position: relative; top: -3px;}
  454. .release-app>p{padding: 5px 0;}
  455. .release-app>p>a{color: #157df1;}
  456. .upload-app-icon img{width: 60px; height: 60px; border-radius: 15px; border: 1px solid #e5e5e5;}
  457. /*app 上传成功*/
  458. /*
  459. .release-app .uploaded-success{height: 450px; background-color: #fff; border: 1px solid #e5e5e5; margin-top: 20px; margin-bottom: 40px; text-align: center;}
  460. .release-app .uploaded-success img{width: 90px; height: 90px; border-radius: 15px; margin-top: 70px; border: 1px solid #e5e5e5;}
  461. .release-app .uploaded-success .tit{font-size: 20px; color: #333; margin-top: 15px;}
  462. .release-app .uploaded-success .iconfont{margin-right: 5px;}
  463. */
  464. .release-app .uploaded-success{padding: 110px 0; background-color: #fff; border-radius: 5px; margin-bottom: 40px; text-align: center;}
  465. .release-app .uploaded-success .img-wrap{width: 130px; height: 130px; border-radius: 15px; padding: 10px; box-shadow: 0 0 10px rgba(0,0,0,.2); margin: 0 auto; margin-bottom: 30px;}
  466. .release-app .uploaded-success img{border-radius: 15px; max-width: 100%; height: 100%;}
  467. .release-app .uploaded-success .tit{font-size: 20px; color: #fff; background: url("../img/release-img-1.png") no-repeat; width: 283px; height: 37px; line-height: 37px; margin: 0 auto 25px; font-weight: 600;}
  468. .release-app .uploaded-success .p1{font-size: 18px; color: #333; margin-bottom: 40px;}
  469. .release-app .uploaded-success .up-btn .ms-btn{border-radius: 20px; width: 150px; padding: 8px; margin: 0 12px; font-size: 16px;}
  470. .release-app .uploaded-success .up-btn .ms-btn:hover{box-shadow: 0 3px 5px rgba(21,125,241,.2);}
  471. .release-app .uploaded-success .iconfont{margin-right: 5px;}
  472. /*----------/应用发布-----------*/
  473. /*----------/我的应用-----------*/
  474. .release-app .search{position: relative;}
  475. .release-app .search .iconfont{position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 18px;}
  476. .release-app .search input{height: 40px; line-height: 38px; width: 160px; border: 1px solid #e5e5e5; padding-left: 40px;}
  477. .release-app .search .btn-search{line-height: 40px; color: #157df1; margin-left: 15px;}
  478. .release-app .btn-new-release .iconfont{font-size: 20px; }
  479. .release-app .btn-new-release .text{margin: 4px 0 0 5px;}
  480. .release-app .app-table-wrap{/*min-height: 400px;*/ background-color: #fff; margin-top: 20px;}
  481. /*.release-app .app-table-wrap .table-responsive{min-height: 500px;}*/
  482. .release-app .app-table{border: 1px solid #e5e5e5;}
  483. .release-app .app-table tr th{text-align: center; font-weight: 600; color:#666; padding: 15px 0; background-color: #f7f7fa; border-color: #e5e5e5; font-size: 12px;}
  484. .release-app .app-table tr td{font-size: 12px; color: #666;}
  485. .release-app .app-table>tbody>tr>td{text-align: center; padding: 10px; vertical-align: middle; background-color: #fff; border-color: #e5e5e5; color: #666;}
  486. .release-app .app-table>tbody>tr>td.color-danger{color: #fd641d;}
  487. .release-app .app-table>tbody>tr>td.color-999{color: #999;}
  488. .release-app .app-table>tbody>tr>td td{text-align: left;}
  489. /*.release-app .app-table>tbody>tr:hover td{background-color: #f9f9f9;}*/
  490. /*.release-app .app-table>tbody>tr>td:first-of-type img{border-radius: 5px; border: 1px solid #e5e5e5;}*/
  491. .release-app .app-table .app-icon-size img{border-radius: 5px; border: 1px solid #e5e5e5;}
  492. .release-app .icon-small-code{position: relative; cursor: pointer; margin-left: 5px;}
  493. .release-app .icon-small-code .popover{width: 150px; display: none; left: 50%; top: 13px; transform: translateX(-50%);}
  494. .release-app .icon-small-code .popover .popover-title{color: #333;}
  495. .release-app .icon-small-code .popover .popover-content img{width: 120px; height: 120px;}
  496. .release-app .icon-small-code:hover .popover{display: block;}
  497. .release-app .no-app{padding-bottom: 100px;}
  498. /*
  499. .release-app .qr-code{position: absolute; right: -99px; top: 12px; z-index: 2; display: none; background: url("../img/img-6.png"); width: 127px; height: 148px; text-align: center;}
  500. */
  501. .release-app .qr-code img{width: 100px; height: 100px; margin-top: 42px;}
  502. /*----------/我的应用-----------*/
  503. /*----------我的应用 编辑设置-----------*/
  504. .release-app .app-editor{background-color: #fff; border-radius: 3px; border: 1px solid #e5e5e5; padding: 30px; margin-bottom: 40px;}
  505. .release-app .app-editor .top .upload-img{width: 80px; height: 80px; border-radius: 5px; overflow: hidden; position: relative;}
  506. .release-app .app-editor .top .upload-img img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: #fff; border-radius: 15px;}
  507. .release-app .app-editor .top .upload-img .upload{position: absolute; right: 0; bottom: 0; background-color: rgba(0,0,0,.6); line-height: 20px; width: 100%; text-align: center; color: #fff; font-size: 12px; cursor: pointer; display: none;}
  508. .release-app .app-editor .top .upload-img:hover .upload{display: block;}
  509. .release-app .app-editor .top .upload-img .thumbnail{position: absolute; z-index: 4; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; overflow: hidden; margin-bottom: 0;}
  510. .release-app .app-editor .top .upload-img.uploaded .upload{display: none;}
  511. .release-app .app-editor .top .upload-img.uploaded input{display: none;}
  512. .release-app .app-editor .top .upload-img.uploaded:hover .upload{display: block;}
  513. .release-app .app-editor .top .upload-img.uploaded:hover input{display: block;}
  514. .release-app .app-editor .top .left dl{margin-left: 20px;}
  515. .release-app .app-editor .top .left dl dt{font-size: 24px; color: #333; margin-top: 5px;}
  516. .release-app .app-editor .top .left dl dt .icon-iphone{margin-top: 10px; margin-left: 5px;}
  517. .release-app .app-editor .top .left dl dt .icon-android{margin-top: 10px; margin-left: 5px;}
  518. .release-app .app-editor .top .left dl dd{color: #333; margin-top: 7px;}
  519. .release-app .app-editor .top .right{line-height: 22px;}
  520. .release-app .app-editor .top .right .iconfont{font-size: 22px;}
  521. .release-app .app-editor table{margin-top: 30px; table-layout: fixed;}
  522. .release-app .app-editor table td{padding: 15px;}
  523. .release-app .app-editor table td .bold{color: #333; margin-bottom: 5px;}
  524. .release-app .app-editor .download-qr .icon-small-code{position: relative; cursor: pointer; margin-top: 3px; margin-left: 5px; }
  525. .release-app .app-editor table td .link-down{}
  526. .release-app .app-editor table td .link-down:hover{color: #157df1; text-decoration: underline;}
  527. /*
  528. .release-app .app-editor .download-qr .icon-small-code img{position: absolute; left: -14px; top: 12px; opacity: 0; transition: all 600ms;}
  529. .release-app .app-editor .download-qr .icon-small-code:hover img{opacity: 1;}
  530. */
  531. .release-app .app-editor .set .short-link>.col-sm-6>.col-sm-6{padding-left: 0; padding-right: 0;}
  532. .release-app .app-editor .set .short-link .form-control{border-radius: 0 4px 4px 0; border-left: none;}
  533. .release-app .app-editor .set .short-link .link{padding: 6px 12px !important; height: 34px; background-color: #f2f2f5; border: 1px solid #e5e5e5; border-radius: 4px 0 0 4px; color: #333;}
  534. .release-app .app-editor .set{border: 1px solid #e5e5e5; border-radius: 3px; padding-bottom: 40px;}
  535. .release-app .app-editor .set .tab{background-color: #f2f2f5; height: 44px; line-height: 44px; border-bottom: 1px solid #e5e5e5;}
  536. .release-app .app-editor .set .tab li{float: left; padding: 0 20px; cursor: pointer; color: #333;}
  537. .release-app .app-editor .set .tab li.active{background-color: #fff; border-right: 1px solid #e5e5e5; border-left: 1px solid #e5e5e5; margin-left: -1px; color: #157df1;}
  538. .release-app .app-editor .set .tab-con{margin-top: 40px;}
  539. .release-app .app-editor .set .col-sm-1{width: 11%;}
  540. .release-app .app-editor .set .tab-con label{color: #333;}
  541. .release-app .app-editor .set .tab-con .form-control{color: #333;}
  542. .release-app .app-editor .set .tab-con>div{display: none;}
  543. .release-app .app-editor .set .tab-con .form-group{margin-bottom: 30px;}
  544. .release-app .app-editor .set .trust{margin-top: 7px;}
  545. .release-app .app-editor .set .trust li{float: left; margin-right: 50px; cursor: pointer; color: #333;}
  546. .release-app .app-editor .set .trust li .icon-radio{margin-right: 8px;}
  547. /*----------/我的应用 编辑设置-----------*/
  548. /*----------个人中心-----------*/
  549. .user-center-wrap{background-color: #f2f2f5;}
  550. .user-center{margin-bottom: 40px;}
  551. .user-center>.row{margin: 0 -5px;}
  552. .user-center>.row>.col-sm-2{width: 18.5%; padding: 0 5px;}
  553. .user-center>.row>.col-sm-10{width: 81.5%; padding: 0 5px;}
  554. .user-center .left{border: 1px solid #e5e5e5; border-radius: 3px; background-color: #fff; height: 830px;}
  555. .user-center .right{border: 1px solid #e5e5e5; border-radius: 3px; background-color: #fff; height: 830px;}
  556. .user-center .left dl{padding-top: 20px; border-bottom: 1px solid #e5e5e5;}
  557. .user-center .left dl dt{font-size: 16px; color: #333; font-weight: 600; padding-left: 25px; margin-bottom: 15px;}
  558. .user-center .left dl dt .icon-service{margin: 5px 15px 0 0;}
  559. .user-center .left dl dt .icon-order{margin: 4px 15px 0 0;}
  560. .user-center .left dl dt .icon-user1{margin: 3px 15px 0 0;}
  561. .user-center .left dl dd a{height: 50px; line-height: 50px; padding-left: 55px; color: #333; display: block;}
  562. .user-center .left dl dd a:hover{background-color: #157df1; color: #fff;}
  563. .user-center .left dl dd.active a{background-color: #157df1; color: #fff;}
  564. .user-center .right .tit{font-size: 16px; color: #333; font-weight: 600; padding: 15px 20px; border-bottom: 1px solid #e5e5e5;}
  565. .user-center .right .con{padding: 20px 50px;}
  566. .user-center .right .con .input-size{width: 78%; margin-right: 10px; float: left;}
  567. .user-center .right .con label{color: #333; font-weight: 600;}
  568. .user-center .right .con .form-group label{margin: 0 30px 8px 0;}
  569. .user-center .right .con .current-email{margin-bottom: 5px;}
  570. .user-center .right .con .user-data{table-layout: fixed;}
  571. .user-center .right .con .user-data tr th:first-of-type{width: 140px;}
  572. .user-center .right .con .user-data tr td:first-of-type{width: 270px;}
  573. .user-center .right .con .user-data tr td:last-of-type{width: 150px;}
  574. .user-center .right .con .user-data td,.user-center .right .con .user-data th{border: none !important; color: #333; vertical-align: middle; padding: 5px 8px;}
  575. .user-center .right .con .user-data th{font-weight: 600;}
  576. .user-center .right .con .read-only{padding-top: 15px; border-top: 1px solid #e5e5e5;}
  577. .user-center .right .con .read-only th,.user-center .right .con .read-only td{padding: 8px;}
  578. .user-center .right .table-wrap{padding: 20px;}
  579. .user-center .right .table-wrap .table-responsive{overflow-x: visible;}
  580. .user-center .right .con .table-order .icon-prompt{position: relative; top: 2px; margin-left: 5px; cursor: pointer;}
  581. .user-center .right .con .table-order>tbody>tr:nth-of-type(odd){background-color: #f6fafe;}
  582. .user-center .right .con .table-order tr th{background-color: #4497f4; color: #fff; padding: 15px; text-align: center; border-color: #4497f4;}
  583. .user-center .right .con .table-order tr td{padding: 25px 15px; text-align: center;}
  584. .user-center .right .con .table-order .icon-prompt .tips{background: url("../img/icon-prompt.png") no-repeat; width: 159px; height: 58px; position: absolute; left: -17px; bottom: 11px; padding-top: 15px; font-size: 12px; opacity: 0; display: none; transition: all 600ms; z-index: 1000;}
  585. .user-center .right .con .table-order .icon-prompt:hover .tips{opacity: 1; display: block;}
  586. .user-center .right .service-wrap{padding: 20px;}
  587. .user-center .right .service{border: 1px solid #e5e5e5; border-radius: 3px; height: 135px;}
  588. .user-center .right .service .top .tit{background-color: #f5f6f8; font-size: 18px; color: #333; font-weight: 600; padding: 10px 25px; border-radius: 3px;}
  589. .user-center .right .service .top .ms-btn{margin-right: 25px; margin-top: 10px;}
  590. .user-center .right .service .top .ms-btn-default{border-color: transparent; color: #157df1;}
  591. .user-center .right .service .top .ms-btn-default:hover{background: #fff; color: #157df1; border-color: #157df1;}
  592. .user-center .right .service .bottom .downloads{margin-top: 20px;}
  593. .user-center .right .service .bottom .downloads li{padding: 0 25px; width: 50%; float: left; color: #666;}
  594. .user-center .right .service .bottom .downloads li .progress1{width: 100%; background-color: #f3f3f3; height: 6px; border-radius: 3px; position: relative; margin-top: 10px;}
  595. .user-center .right .service .bottom .downloads li .progress1 .bar{position: absolute; left: 0; top: 0; height: 100%; background-color: #157df1; border-radius: 3px;}
  596. .user-center .right .service .bottom .signature{display: table; width: 100%; margin-top: 20px; text-align: center;}
  597. .user-center .right .service .bottom .signature li{display: table-cell; border-right: 1px solid #e5e5e5;}
  598. .user-center .right .service .bottom .signature li:last-of-type{border-color: transparent;}
  599. .user-center .right .service .bottom .signature li{color: #666;}
  600. .user-center .right .service .bottom .signature li .num{color: #333;}
  601. .user-center .right .service .bottom .signature li .num span{font-size: 20px;}
  602. /*
  603. *2018-09-20改版,改版上线后,将上版本样式删除
  604. */
  605. .user-center1>.row{margin: 0 0 20px; overflow: hidden; height: 100%;}
  606. @media (min-width: 1200px) {
  607. .user-center1>.row>.col-sm-2{padding: 0 0 9999px; margin-bottom: -9999px;}
  608. }
  609. .user-center1>.row>.col-sm-2{background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  610. .user-center1>.row>.col-sm-10{padding: 0 0 0 10px;}
  611. /*.user-center1 .aside-left{height: 550px;}*/
  612. .user-center1 .aside-left .iconfont{font-size: 18px;}
  613. .user-center1 .aside-left .icon-msg{font-size: 18px; position: relative; top: 2px;}
  614. .user-center1 .aside-left .icon-fapiao,.user-center1 .aside-left .icon-028{position: relative; top: 2px;}
  615. /*.user-center1 .aside-right .user-table{margin-bottom: 40px;}*/
  616. .user-center1 .aside-right .user-table .table{border: 1px solid #e5e5e5; margin-bottom: 0;}
  617. .user-center1 .aside-right .user-table .table th{background-color: #f5f6f7; padding: 15px 10px; text-align: center; color: #666; font-weight: 600; border-top-color: transparent;}
  618. .user-center1 .aside-right .user-table .table td{background-color: #fff; padding: 23px 10px; text-align: center; color: #666; font-size: 12px; border-top-color: #e5e5e5;}
  619. .user-center1 .aside-right .user-table .table td.color-hover{color: #157df1;}
  620. .user-center1 .aside-right .user-table .table td.color-999{color: #999;}
  621. .user-center1 .aside-right .user-table .table tr:hover td{background-color: #ebf7ff;}
  622. .user-center1 .aside-right .user-table .table-wrap{background-color: #fff;}
  623. .user-center1 .aside-right .user-table .table-wrap1{min-height: 495px;}
  624. .user-center1 .aside-right .user-table .table-wrap2{min-height: 459px; box-shadow: 0 0 5px rgba(0,0,0,.05); padding-bottom: 30px;}
  625. .user-center1 .aside-right .user-table .table-wrap2 .invoice-table2{border: none; border-bottom: 1px solid #e5e5e5;}
  626. .user-center1 .aside-right .user-table .table td [data-toggle="popover"]{cursor: pointer;}
  627. .user-center1 .aside-right .paging{margin-top: 30px; margin-bottom: 0;}
  628. .user-center1 .aside-right .order .no-content{padding-top: 90px;}
  629. .user-center1 .aside-right .order .table-wrap{min-height: 351px;}
  630. .user-center1 .account-management{box-shadow: 0 0 5px rgba(0,0,0,.05); background-color: #fff; height: 550px;}
  631. .user-center1 .account-management>ul{height: 48px; background-color: #f2f2f5; line-height: 48px; border-bottom: 1px solid #e5e5e5;}
  632. .user-center1 .account-management>ul li{float: left; padding: 0 20px; cursor: pointer; color: #333;}
  633. .user-center1 .account-management>ul li.active{background-color: #fff;}
  634. .user-center1 .account-management .tab{padding: 0 30px;}
  635. .user-center1 .account-management .tab>div{display: none;}
  636. .user-center1 .account-management .data table{color: #333; margin-top: 25px; margin-bottom: 0;}
  637. .user-center1 .account-management .data table tr th{border-top: none; font-weight: 600; vertical-align: middle; padding: 6px;}
  638. .user-center1 .account-management .data table tr td{border-top: none; vertical-align: middle; padding: 6px;}
  639. .user-center1 .account-management .data table tr td .ms-btn-default{padding: 1px 12px;}
  640. .user-center1 .account-management .data .table1 tr th:first-of-type{width: 160px;}
  641. .user-center1 .account-management .data .table1 tr td:first-of-type{width: 250px;}
  642. .user-center1 .account-management .data .table2 tr th:first-of-type{width: 160px;}
  643. .user-center1 .account-management .data .table2 tr td:first-of-type{width: 250px;}
  644. .user-center1 .account-management .data hr{margin-top: 25px;}
  645. .user-center1 .account-management .pwd{padding: 30px 0;}
  646. .user-center1 .account-management .pwd .form-group{position: relative; margin-bottom: 25px;}
  647. .user-center1 .account-management .pwd .form-group label{font-weight: 600; color: #333; margin-bottom: 5px;}
  648. .user-center1 .account-management .pwd .form-group .iconfont{position: absolute; bottom: 5px; right: 15px; cursor: pointer; color: #333;}
  649. .user-center1 .account-management .pwd .form-group .error{display: none; position: absolute; top: 100%; left: 0;}
  650. .user-center1 .account-management .pwd .form-error .error{display: block; color: #ff4222;}
  651. .user-center1 .account-management .pwd .ms-btn{width: 160px; padding: 12px 9px;}
  652. .user-center1 .account-management .msg{padding: 30px 0;}
  653. .user-center1 .account-management .msg dl{font-size: 13px;}
  654. .user-center1 .account-management .msg dl dt{color: #333; font-weight: 600; margin-bottom: 3px;}
  655. .user-center1 .account-management .msg dl dd{color: #666;}
  656. .user-center1 .account-management .msg ol{margin: 10px 0 0 20px;}
  657. .user-center1 .account-management .msg ol li{float: left; color: #333; margin-left: 50px; cursor: pointer;}
  658. .user-center1 .account-management .msg ol li .icon{position: relative; top: 3px; margin-right: 10px;}
  659. .user-center1 .account-management .msg hr{margin: 30px 0; border-color: #e5e5e5;}
  660. .user-center1 .account-management .upload{padding: 30px 0;}
  661. .user-center1 .account-management .upload dl{width: 36%; font-size: 13px;}
  662. .user-center1 .account-management .upload dl dt{color: #333; font-weight: 600; margin-bottom: 3px;}
  663. .user-center1 .account-management .upload dl dd{color: #666;}
  664. .user-center1 .account-management .upload ol{margin: 10px 0 0 20px;}
  665. .user-center1 .account-management .upload ol li{float: left; color: #333; margin-left: 50px; cursor: pointer;}
  666. .user-center1 .account-management .upload ol li .icon{position: relative; top: 3px; margin-right: 10px;}
  667. .user-center1 .account-management .upload hr{margin: 30px 0; border-color: #e5e5e5;}
  668. .user-center1 .account-management .bindDomain .m-con{padding-top: 30px;}
  669. .user-center1 .account-management .bindDomain .cont p{color: #333; margin-bottom: 5px;}
  670. .user-center1 .account-management .bindDomain .cont p a{color: #157df1;}
  671. .user-center1 .account-management .bindDomain .cont p a:hover{text-decoration: underline;}
  672. .user-center1 .account-management .bindDomain .cont .control-label{color: #333; margin-bottom: 5px;}
  673. .user-center1 .account-management .bindDomain .cont #saveButton{width: 160px; padding: 9px 0; margin-top: 5px;}
  674. .user-center1 .account-management .bindDomain .m-con .bindDomainFirst{padding-top: 105px;}
  675. .user-center1 .account-management .bindDomain .m-con .bindDomainFirst .browser_notice{text-align: center;}
  676. .user-center1 .account-management .bindDomain .m-con .bindDomainFirst .icon-chenggong{color: #157df1; font-size: 70px;}
  677. .user-center1 .account-management .bindDomain .m-con .bindDomainFirst .browser_notice .browser_notice_success{margin: -3px 0 25px;}
  678. .user-center1 .account-management .bindDomain .m-con .bindDomainFirst #unbind_button{width: 160px; padding: 9px; color: #666;}
  679. .user-center1 .account-management .change .tit{font-size: 16px; color: #333; font-weight: 600; padding: 15px 20px; border-bottom: 1px solid #e5e5e5;}
  680. .user-center1 .account-management .con{padding: 20px /*50px*/;}
  681. /*.user-center1 .account-management .con .input-size{width: 78%; margin-right: 10px; float: left;}*/
  682. .user-center1 .account-management .con label{color: #333; font-weight: 600;}
  683. .user-center1 .account-management .con .form-group label{margin: 0 30px 8px 0;}
  684. .user-center1 .account-management .con .current-email{margin-bottom: 5px;}
  685. .user-center1 .account-management .con .read-only{padding-top: 15px; border-top: 1px solid #e5e5e5;}
  686. .user-center1 .account-management .con .read-only th,.user-center .right .con .read-only td{padding: 8px;}
  687. .user-center1 .invoice-management .warn-prompt{margin: 0 0 10px;}
  688. .user-center1 .invoice-management .i-top ul li{float: left; margin-left: 20px;}
  689. .user-center1 .invoice-management .user-table{margin-top: 20px;}
  690. .user-center1 .invoice-management .user-table.mt10{margin-top: 10px;}
  691. .user-center1 .invoice-management .table.invoice-table1 tr th:nth-of-type(1){width: 180px;}
  692. .user-center1 .invoice-management .table.invoice-table1 tr th:nth-of-type(3){width: 120px;}
  693. .user-center1 .invoice-management .table.invoice-table1 tr th:last-of-type{width: 300px;}
  694. .user-center1 .invoice-management .table.invoice-table1 tr td:nth-of-type(1){padding-left: 20px;}
  695. .user-center1 .invoice-management .table.invoice-table2 tr th:nth-of-type(2){width: 120px;}
  696. .user-center1 .invoice-management .table.invoice-table2 td .company-name{width: 120px; line-height: 20px;}
  697. .user-center1 .invoice-management .table.invoice-table2 .courier-number{width: 160px;}
  698. .user-center1 .invoice-management .table.invoice-table2 td .courier-number{width: 160px;}
  699. .user-center1 .invoice-management .table.invoice-table2 td .ms-btn{margin-right: 0;}
  700. .user-center1 .invoice-management .table td{vertical-align: middle;}
  701. .user-center1 .invoice-management .table td .icon-checkbox1{color: #e5e5e5; cursor: pointer; margin-right: 8px; position: relative; top: -2px;}
  702. .user-center1 .invoice-management .table td .icon-checkbox-checked1{color: #157df1;}
  703. .user-center1 .invoice-management .table td .company-name{width: 110px; line-height: 20px;}
  704. .user-center1 .invoice-management .table td .receives-address{width: 120px;}
  705. .user-center1 .invoice-management .table td .ms-btn{margin-right: 10px;}
  706. .user-center1 .invoice-management .table td .set-default{visibility: hidden; color: #fd641d; cursor: pointer;}
  707. .user-center1 .invoice-management .table tr:nth-of-type(2) td .set-default{visibility: visible;}
  708. .user-center1 .invoice-management .table tr:hover td .set-default{visibility: visible;}
  709. .user-center1 .invoice-management .no-content{height: 412px; padding-top: 150px;}
  710. .user-center1 .invoice-management .no-content1{height: 376px; padding-top: 130px;}
  711. .user-center1 .invoice-management .submit{width: 160px; padding: 9px 12px;}
  712. .user-center1 .invoice-management .make-invoice-details{padding: 30px; background-color: #fff; border: 1px solid #e5e5e5; height: 550px; margin-bottom: 40px;}
  713. .user-center1 .invoice-management .make-invoice-details dl{color: #333; margin-bottom: 15px;}
  714. .user-center1 .invoice-management .make-invoice-details dl dt{color: #333; font-weight: 600; width: 100px; text-align: right;}
  715. .user-center1 .invoice-management .make-invoice-details dl dd{float: none; margin-left: 150px;}
  716. .user-center1 .invoice-management .make-invoice-details hr{margin: 20px 0;}
  717. .user-center1 .invoice-management .make-invoice-details .color-danger{font-size: 12px;}
  718. .user-center1 .invoice-management .apply-invoice{background-color: #fff; padding: 30px; margin-bottom: 40px; border: 1px solid #e5e5e5;}
  719. .user-center1 .invoice-management .apply-invoice .row{margin: 0 -5px;}
  720. .user-center1 .invoice-management .apply-invoice .row .col-sm-4{padding: 0 5px;}
  721. .user-center1 .invoice-management .apply-invoice .row .col-sm-6{padding: 0 5px;}
  722. .user-center1 .invoice-management .apply-invoice label{color: #333; font-weight: 600; margin-bottom: 5px;}
  723. .user-center1 .invoice-management .apply-invoice label span{color: #ff4222; margin-left: 10px;}
  724. .user-center1 .invoice-management .apply-invoice .form-group{margin-bottom: 25px;}
  725. .user-center1 .invoice-management .apply-invoice .select-wrap input[type=text]{margin-top: 20px;}
  726. .user-center1 .invoice-management .apply-invoice .form-group.select-wrap{margin-bottom: 20px;}
  727. /*.user-center1 .invoice-management .apply-invoice select{color: #999;}*/
  728. .user-center1 .invoice-management .apply-invoice .form-group.instruction-manual{margin-bottom: 20px;}
  729. .user-center1 .invoice-management .apply-invoice .form-error{position: relative;}
  730. .user-center1 .invoice-management .apply-invoice .error{position: absolute; top: 100%; color: #ff4222; font-size: 12px; display: none;}
  731. .user-center1 .invoice-management .apply-invoice .form-error .error{display: block;}
  732. .user-center1 .invoice-management .apply-invoice hr{margin: 5px 0 30px;}
  733. .user-center1 .invoice-management .apply-invoice .icon-checkbox1{color: #e5e5e5; position: relative; top: 1px;}
  734. .user-center1 .invoice-management .apply-invoice .icon-checkbox-checked1{color: #157df1;}
  735. .user-center1 .invoice-management .apply-invoice .checkbox1{color: #333; cursor: pointer;}
  736. .user-center1 .invoice-management .apply-invoice .save{margin-top: 20px; width: 160px; padding: 9px 12px;}
  737. /*我的订单新增充值*/
  738. .user-center1 .aside-right .balance-recharge{position: relative; border: 1px solid #e5e5e5; padding: 25px 30px 10px; margin-bottom: 20px;}
  739. .user-center1 .aside-right .balance-recharge .b-tit{color: #333; font-weight: 600;}
  740. .user-center1 .aside-right .balance-recharge .b-num{color: #fba208; font-size: 40px;}
  741. .user-center1 .aside-right .balance-recharge p{color: #666; font-size: 12px;}
  742. .user-center1 .aside-right .balance-recharge .recharge-btn{position: absolute; right: 30px; top: 50%; transform: translateY(-50%);}
  743. /*.balance-recharge-wrap{margin-bottom: 40px;}*/
  744. .balance-recharge-wrap .balance-recharge{border: none; margin-bottom: 0;}
  745. .balance-recharge-wrap .choose-recharge{width: 65%; position: relative;}
  746. .balance-recharge-wrap .choose-recharge li{margin-right: 70px; margin-bottom: 25px;}
  747. .balance-recharge-wrap .choose-recharge li:nth-of-type(n+5){margin-bottom: 0;}
  748. .balance-recharge-wrap .choose-recharge li input[name=rechargeAmount]{width: 120px; position: absolute; top: -7px; left: 21px;}
  749. .balance-recharge-wrap .choose-recharge .error{position: absolute; left: 25px; bottom: -5px; color: #fd641d; font-size: 12px; display: none;}
  750. .balance-recharge-wrap .choose-recharge.form-error .error{display: block;}
  751. .balance-recharge-wrap .choose-recharge li .r-num{width: 50px; display: inline-block;}
  752. .balance-recharge-wrap .pay-money .money{padding-bottom: 10px;}
  753. .user-center1 .aside-right .price-pay .balance-recharge{border: none; margin-bottom: 0;}
  754. .price-pay .balance-recharge-wrap .pay-money{padding-bottom: 30px;}
  755. .balance-recharge-wrap .pay-money .icon-checkbox1{color: #999; position: relative; top: 1px; cursor: pointer;}
  756. .balance-recharge-wrap .pay-money .icon-checkbox-checked1{color: #157df1; cursor: pointer;}
  757. /*/我的订单新增充值*/
  758. /*上传资质*/
  759. .user-center1 .aside-left .icon-dunpai{font-size: 18px; position: relative; top: 2px;}
  760. .upload-img-more .uploaded-img{border: 1px solid #e5e5e5; width: 150px; height: 210px; position: relative; border-radius: 5px; margin-right: 20px;}
  761. .upload-img-more .uploaded-img .thumbnail{position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 2;}
  762. .upload-img-more .uploaded-img img{width: 100%; height: 100%; border-radius: 5px;}
  763. .upload-img-more .uploaded-img .delete-img{position: absolute; right: -9px; top: -9px; right: 0\9; top: 0\9; cursor: pointer; z-index: 2;}
  764. .upload-img-more .uploaded-img .reset{position: absolute; left: 0; bottom: 0; height: 20px; line-height: 20px; background: rgba(0,0,0,.5); width: 100%; color: #fff; text-align: center; font-size: 12px; display: none;}
  765. .upload-img-more .uploaded-img:hover .reset{display: block;}
  766. .upload-img-more .upload-img{position: relative; border: 1px dashed #e5e5e5; width: 150px; height: 210px; border-radius: 5px; background: url("../img/icon-10.png") no-repeat center 80px; overflow: hidden;}
  767. .upload-img-more .upload-img input{position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  768. .upload-img-more .upload-img .text{text-align: center; font-size: 12px; color: #666; margin-top: 120px;}
  769. .user-center1 .aside-right .upload-qualification{background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,.05); border-radius: 3px; padding: 30px;}
  770. .user-center1 .aside-right .upload-qualification .p1{color: #333; margin-bottom: 5px;}
  771. .user-center1 .aside-right .upload-qualification .p2{color: #333; margin-bottom: 15px;}
  772. .user-center1 .aside-right .upload-qualification table{border: 1px solid #ddd; width: 70%; color: #333; margin-bottom: 40px;}
  773. .user-center1 .aside-right .upload-qualification table td{border: 1px solid #ddd; padding: 20px; text-align: center;}
  774. .user-center1 .aside-right .upload-qualification .tit{color: #333; margin-bottom: 15px;}
  775. /*.user-center1 .aside-right .upload-qualification .upload-img-more{margin-bottom: 20px;}*/
  776. .user-center1 .aside-right .upload-qualification .uploaded-img{margin-bottom: 20px;}
  777. .user-center1 .aside-right .upload-qualification .upload-img{margin-bottom: 20px;}
  778. .user-center1 .aside-right .upload-qualification .review-wrap{margin: 20px 0 30px; display: none;}
  779. .user-center1 .aside-right .upload-qualification .review-wrap li{float: left; margin-right: 20px;}
  780. .user-center1 .aside-right .upload-qualification .review-wrap li:last-of-type{margin-right: 0;}
  781. .user-center1 .aside-right .upload-qualification .review-wrap .r-center{margin-top: -10px;}
  782. .user-center1 .aside-right .upload-qualification .review-wrap .r-center img{display: none;}
  783. .user-center1 .aside-right .upload-qualification .review-wrap .r-right{width: 750px; color: #ff4222;}
  784. .user-center1 .aside-right .upload-qualification .review-wrap .r-right div{display: none;}
  785. .user-center1 .aside-right .upload-qualification .hide-action .upload-img{display: none;}
  786. .user-center1 .aside-right .upload-qualification .hide-action .delete-img{display: none;}
  787. .user-center1 .aside-right .upload-qualification .hide-action .reset{display: none;}
  788. .user-center1 .aside-right .upload-qualification .hide-action .thumbnail{display: none;}
  789. /*/上传资质*/
  790. /*推广大使*/
  791. aside.aside-left ul li a .icon-dashi{background: url("../img/tt-10.png") no-repeat; width: 17px; height: 14px; display: inline-block; margin-right: 10px; margin-top: 2px;}
  792. .aside-right .user-promote{background-color: #fff; min-height: 510px;}
  793. .aside-right .user-promote .p-list{background-color: #f5f7f9; height: 44px; line-height: 44px; border-bottom: 1px solid #eee;}
  794. .aside-right .user-promote .p-list li{float: left; padding: 0 20px; cursor: pointer; color: #333;}
  795. .aside-right .user-promote .p-list li.active{background-color: #fff; border-right: 1px solid #e5e5e5; border-left: 1px solid #eee; margin-left: -1px;}
  796. .aside-right .user-promote .p-list li.active a{color: #157df1;}
  797. /*.aside-right .user-promote .tab>div{display: none;}*/
  798. .aside-right .user-promote .tab-common{padding: 25px 30px;}
  799. .aside-right .user-promote .tab1 .p-link-1{border: 1px solid #ddd; padding: 15px 20px; margin-bottom: 20px;}
  800. .aside-right .user-promote .tab1 .p-link-1 dl{color: #333; margin-bottom: 3px;}
  801. .aside-right .user-promote .tab1 .p-link-1 dl dt span{font-size: 20px;}
  802. .aside-right .user-promote .tab1 .p-link-1 dl dd .copy{font-size: 12px; margin-top: 8px; margin-left: 20px; display: block;}
  803. .aside-right .user-promote .tab1 .p-link-1 p{font-size: 12px; color: #999;}
  804. .aside-right .user-promote .tab1 .p-link-2{border: 1px solid #ddd; padding: 15px 20px; margin-bottom: 25px; position: relative;}
  805. .aside-right .user-promote .tab1 .p-link-2 .row{margin: 0 -20px;}
  806. .aside-right .user-promote .tab1 .p-link-2 .line{position: absolute; width: 1px; height: calc(100% - 30px); left: 50%; top: 15px; background-color: #ddd;}
  807. .aside-right .user-promote .tab1 .p-link-2 dl{padding-left: 15px;}
  808. .aside-right .user-promote .tab1 .p-link-2 dl dt{color: #333;}
  809. .aside-right .user-promote .tab1 .p-link-2 dl dt .icon-prompt1{margin: -1px 0 0 3px;}
  810. .aside-right .user-promote .tab1 .p-link-2 dl dt.rebate-dt{color: #999; margin-bottom: 10px;}
  811. .aside-right .user-promote .tab1 .p-link-2 dl dt span{color: #999;}
  812. .aside-right .user-promote .tab1 .p-link-2 dl dd{color: #333;}
  813. .aside-right .user-promote .tab1 .p-link-2 dl dd.amount-withdrawal-wrap1{height: 34px; overflow: hidden;}
  814. .aside-right .user-promote .tab1 .p-link-2 dl dd .amount-withdrawal1 span{color: #fba412; font-size: 30px;}
  815. .aside-right .user-promote .tab1 .p-link-2 dl dt .withdrawal1{padding: 0 12px; line-height: 20px; height: 20px; font-size: 12px; margin-left: 30px;}
  816. .aside-right .user-promote .tab1 .p-link-2 dl dd .amount-rebate1 span{color: #333; font-size: 20px;}
  817. .aside-right .user-promote .tab1 .help{padding: 0;}
  818. .aside-right .user-promote .tab1 .help .tit{font-size: 20px; color: #333; margin-bottom: 20px;}
  819. .withdrawal-to-alipay{padding: 15px 10px; border: 1px solid #ddd; display: none;}
  820. .withdrawal-to-alipay .tit{color: #333; font-size: 16px; margin-bottom: 30px;}
  821. .withdrawal-to-alipay .form-group{margin-bottom: 20px;}
  822. .withdrawal-to-alipay .form-group label{color: #333;}
  823. .withdrawal-to-alipay .withdrawal{color: #333; font-size: 12px; padding-top: 6px;}
  824. .withdrawal-to-alipay .withdrawal .num{color: #fba208; font-size: 16px; font-weight: 600;}
  825. .withdrawal-to-alipay .form-group .yuan{padding-top: 7px; color: #333;}
  826. .withdrawal-to-alipay .form-group .submit1{width: 100px;}
  827. .withdrawal-to-alipay .form-group .error{font-size: 12px; color: #fd641d; margin-top: 3px; display: none;}
  828. .withdrawal-to-alipay .form-group.form-error .error{display: block;}
  829. #payModal .modal-dialog{width: 410px !important;}
  830. #payModal .tit{font-size: 16px; color: #333; font-weight: 600; margin-bottom: 20px;}
  831. #payModal .pay-msg{margin-bottom: 25px;}
  832. #payModal .pay-msg dl{color: #333; margin-bottom: 10px;}
  833. #payModal .pay-msg dl dt{width: 50%; text-align: right; padding-right: 10px;}
  834. #payModal .pay-msg dl dd{width: 50%; text-align: left; padding-left: 10px;}
  835. #payModal .pay-msg dl dd .num{color: #fba208;}
  836. #payModal .pay-msg dl dd .num i{font-weight: 600;}
  837. #payModal .cancel-btn{display: inline-block; height: 34px; line-height: 34px; margin-right: 20px;}
  838. .aside-right .user-promote .tab2 .date{float: left; width: 140px; position: relative;}
  839. .aside-right .user-promote .tab2 .date1{margin-right: 10px;}
  840. .aside-right .user-promote .tab2 .date2{margin-right: 20px;}
  841. .aside-right .user-promote .tab2 .date input{position: relative; z-index: 1; background-color: transparent; cursor: pointer;}
  842. .aside-right .user-promote .tab2 .date .icon-date{color: #aaa; position: absolute; right: 10px; top: 4px; z-index: 0;}
  843. .aside-right .user-promote .tab2 .date:hover .icon-date{color: #157df1;}
  844. .aside-right .user-promote .tab2 .d-top{margin-bottom: 20px;}
  845. .aside-right .user-promote .tab2 .d-top .form-control{height: 30px;}
  846. .aside-right .user-promote .tab2 .d-top .line{margin-right: 10px; color: #aaa;}
  847. .aside-right .user-promote .tab2 .d-top .query{padding: 5px 8px; border-color: #e5e5e5; border-left: none; background-color: #f5f6f7; font-size: 12px; color: #333; height: 30px;}
  848. .aside-right .user-promote .tab2 .d-top .num{line-height: 34px; margin-left: 30px; color: #333; font-size: 13px;}
  849. .aside-right .user-promote .tab2 .d-top .num i{color: #157df1;}
  850. .aside-right .user-promote .tab2 .d-top .account{display: inline-block; width: auto; border-right-color: #f5f6f7;}
  851. .aside-right .user-promote .tab2 .d-top .account:focus{border-right-color: #66afe9;}
  852. .aside-right .user-promote .tab-common .table{border: 1px solid #e5e5e5; table-layout: fixed;}
  853. .aside-right .user-promote .tab-common .table tr th{border-top-color: #e5e5e5 !important; height: 50px; vertical-align: middle; text-align: center; background-color: #f5f6f7; font-weight: normal; font-size: 12px; color: #666; line-height: 1.2;}
  854. .aside-right .user-promote .tab-common .table tr td{border-top-color: #e5e5e5 !important; height: 50px; vertical-align: middle; text-align: center; font-size: 12px; line-height: 1.2; color: #666;}
  855. .aside-right .user-promote .tab-common .table tr:hover{background: #ebf7ff;}
  856. .aside-right .user-promote .tab-common .no{text-align: center; margin-top: 100px;}
  857. .aside-right .user-promote .tab3 table .to-edit{font-size: 12px; transform: scale(.9);}
  858. .aside-right .user-promote .tab3 table .icon-edit{font-size: 24px; cursor: pointer;}
  859. .aside-right .user-promote .tab3 table .icon-edit:hover{color: #157df1;}
  860. /*/推广大使*/
  861. /*----------/个人中心-----------*/
  862. /*----------工具箱-----------*/
  863. .toolkit-wrap{background: url("../img/bg-2.jpg") no-repeat center; height: 635px;}
  864. .toolkit li{float: left; width: 50%; text-align: center; padding-top: 130px; position: relative;}
  865. .toolkit li .tit{font-size: 30px; color: #333; margin-top: 35px;}
  866. .toolkit li p{font-size: 18px; color: #666; margin-top: 20px; height: 50px;}
  867. .toolkit li .ms-btn-primary{width: 165px; margin-top: 40px; padding: 12px;}
  868. .toolkit li .line{width: 2px; height: 300px; background-color: #d8d7d7; position: absolute; right: 0; bottom: 35px; border-radius: 2px;}
  869. /*faq*/
  870. .faq{margin-bottom: 20px;}
  871. .faq .tit{font-size: 30px; color: #157df1; margin-top: 30px;}
  872. .faq .tit .icon-faq{position: relative; top: 7px; margin-right: 8px;}
  873. .faq .row{margin-left: -10px; margin-right: -10px;}
  874. .faq .row .col-sm-6{padding: 0 10px;}
  875. .faq .con{border: 1px solid #e5e5e5; border-radius: 3px; padding: 30px 40px; margin-bottom: 20px;}
  876. .faq .con dl dt{font-size: 25px; color: #333; margin-bottom: 10px;}
  877. .faq .con dl dt span{width: 5px; height: 24px; background-color: #157df1; display: inline-block; position: relative; top: 3px; margin-right: 12px;}
  878. .faq .con dl dd{padding-left: 18px;}
  879. .faq .con dl dd a{font-size: 16px; color: #333; line-height: 34px;}
  880. .faq .con dl dd a:hover{color: #157df1;}
  881. .toolkit-common-wrap{background-color: #f2f2f5;}
  882. .toolkit-common .top{padding: 40px 0; border: 1px solid #e5e5e5; border-radius: 3px; background-color: #fff;}
  883. .toolkit-common .udid-top{text-align: center; padding-bottom: 0;}
  884. .toolkit-common .udid-top img{width: 155px; border: 1px solid #e5e5e5; padding: 5px;}
  885. .toolkit-common .top .tit{font-size: 36px; color: #333; text-align: center;}
  886. .toolkit-common .udid-top .p-top{color: #333; line-height: 24px; margin-top: 10px; margin-bottom: 20px;}
  887. .toolkit-common .udid-top p span{color: #157df1;}
  888. .toolkit-common .udid-top .p-bottom{color: #333; line-height: 24px; padding: 25px 35px; border-top: 1px solid #e5e5e5; margin-top: 40px; text-align: left;}
  889. .toolkit-common .ipa-top .form-group{width: 65%; margin: 0 auto;}
  890. .toolkit-common .ipa-top{text-align: center;}
  891. .toolkit-common .ipa-top .form-control{margin-top: 40px; margin-bottom: 10px;}
  892. .toolkit-common .ipa-top .ipa-p{text-align: left; font-size: 12px; color: #666;}
  893. .toolkit-common .ipa-top .ms-btn-primary{margin-top: 25px; width: 160px; padding: 9px 12px;}
  894. .toolkit-common .ipa-top .error{text-align: left; font-size: 12px; color: #fd641d; margin-bottom: 5px; display: none;}
  895. .toolkit-common .ipa-top .form-error .error{display: block;}
  896. .toolkit-common .ipa-top table{width: 600px; margin: 40px auto 0;}
  897. .toolkit-common .ipa-top table th{border-color: #e5e5e5 !important; text-align: center; vertical-align: middle; width: 150px;}
  898. .toolkit-common .ipa-top table td{border-color: #e5e5e5 !important; text-align: left; padding: 20px;}
  899. .toolkit-common .ipa-top table td a{color: #157df1;}
  900. .toolkit-common .ipa-top table td a:hover{text-decoration: underline;}
  901. .toolkit-common .ipa-top table td .icon-big-iphone{margin-right: 20px;}
  902. .toolkit-common .ipa-top table td img{width: 80px; height: 80px; border-radius: 15px; border: 1px solid #e5e5e5;}
  903. /*----------toolkit-new----------*/
  904. /*plist*/
  905. .toolkit-new{background-color: #fff; border: 1px solid #e5e5e5; border-radius: 3px; padding: 50px 0 40px;}
  906. .toolkit-new .con{padding: 0 200px;}
  907. .toolkit-new .tit{color: #333; font-size: 36px; text-align: center; margin-bottom: 50px;}
  908. @media (min-width: 1200px) {
  909. .toolkit-new .form-horizontal .col-sm-3{padding-left: 10px; padding-right: 10px;}
  910. .toolkit-new .form-horizontal .col-sm-9{padding-left: 10px; padding-right: 10px;}
  911. }
  912. .toolkit-new .form-horizontal .form-group{margin-bottom: 30px;}
  913. .toolkit-new .form-horizontal label{color: #333;}
  914. .toolkit-new .error{font-size: 12px; color: #fd641d; display: none;}
  915. .toolkit-new .form-error .error{display: block;}
  916. .toolkit-new .p1{color: #333; padding: 20px 0 0 30px; border-top: 1px solid #e5e5e5; margin-top: 40px;}
  917. .toolkit-new .p1 a{color: #157df1;}
  918. /*/plist*/
  919. /*制作图标*/
  920. .toolkit-make-icon .make-icon .sp-preview{width: 210px;}
  921. .toolkit-make-icon{background-color: #fff; border: 1px solid #e5e5e5; border-radius: 3px; padding: 30px; margin-bottom: 40px;}
  922. .toolkit-make-icon .m-left .m-tit{text-align: center;}
  923. .toolkit-make-icon .m-right{padding: 30px 40px; border: 1px solid #e5e5e5; border-radius: 3px;}
  924. .toolkit-make-icon .make-icon .m-tit{color: #333; margin-bottom: 7px;}
  925. .toolkit-make-icon .make-icon .m-left .m-tit{margin-bottom: 20px; margin-top: 20px;}
  926. .toolkit-make-icon .make-icon .m-icon{background-position: center; width: 180px; height: 180px; background-size: cover; display: flex; justify-content: center; align-items: center; margin: 0 auto; background-color: #157df1;}
  927. .toolkit-make-icon .make-icon .m-icon .m-icon-con{text-align: center;}
  928. .toolkit-make-icon .make-icon .m-icon.radius{border-radius: 15px;}
  929. .toolkit-make-icon .make-icon .m-icon img{max-width: 110px; height: auto;}
  930. .toolkit-make-icon .make-icon .m-icon .m-name{color: #fff; max-width: 150px; text-align: center;}
  931. .toolkit-make-icon .make-icon .m-icon .i-name1{color: #fff; text-align: center; font-size: 24px; margin-bottom: 5px; display: none;}
  932. .toolkit-make-icon .make-icon .m-icon .i-name2{color: #fff; text-align: center; font-size: 24px; margin-top: 5px; display: none;}
  933. .toolkit-make-icon .make-icon .icon-bg{border: 1px solid #e5e5e5; padding: 30px 25px; border-radius: 3px; margin-bottom: 50px;}
  934. .toolkit-make-icon .make-icon .icon-bg dl dt{color: #333; margin-right: 20px;}
  935. .toolkit-make-icon .make-icon .m-icon-bg1{margin-bottom: 20px;}
  936. .toolkit-make-icon .make-icon .m-icon-bg1 dt{line-height: 30px;}
  937. .toolkit-make-icon .make-icon .m-icon-bg1 dd{width: 40%;}
  938. .toolkit-make-icon .make-icon .m-icon-bg2 dt{line-height: 40px;}
  939. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li{width: 40px; height: 40px; padding: 10px; border: 1px solid #e5e5e5; float: left; cursor: pointer; position: relative;}
  940. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li+li{border-left-color: transparent;}
  941. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li:first-of-type{border-radius: 3px 0 0 3px;}
  942. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li:last-of-type{border-radius: 0 3px 3px 0;}
  943. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li .small-bg{width: 100%; height: 100%; border-radius: 2px; background-color: #157df1;}
  944. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li .icon-checkbox-small{display: none; position: absolute; right: 0; bottom: 0;}
  945. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li.active{border-color: #157df1;}
  946. .toolkit-make-icon .make-icon .m-icon-bg2 .small-bg-list li.active .icon-checkbox-small{display: block;}
  947. .toolkit-make-icon .make-icon .foreground-map .tab li{float: left; padding: 0 30px; line-height: 36px; border: 1px solid #e5e5e5; color: #333; background-color: #fbfbfb; cursor: pointer;}
  948. .toolkit-make-icon .make-icon .foreground-map .tab li+li{border-left-color: transparent;}
  949. .toolkit-make-icon .make-icon .foreground-map .tab li.active{background-color: #fff; border-bottom-color: transparent;}
  950. .toolkit-make-icon .make-icon .foreground-map .tab li:first-of-type{border-radius: 3px 0 0 0;}
  951. .toolkit-make-icon .make-icon .foreground-map .tab li:last-of-type{border-radius: 0 3px 0 0;}
  952. .toolkit-make-icon .make-icon .foreground-map .tab-con{border: 1px solid #e5e5e5; margin-top: -1px; width: 580px; border-radius: 0 3px 3px 3px; margin-bottom: 40px;}
  953. .toolkit-make-icon .make-icon .foreground-map .tab-con>div{display: none;}
  954. .toolkit-make-icon .make-icon .foreground-map .tab1{padding: 30px 30px 30px 10px;}
  955. .toolkit-make-icon .make-icon .foreground-map .tab1 .icons-ul{height: 204px; overflow-y: auto;}
  956. .toolkit-make-icon .make-icon .foreground-map .tab1 .icons-ul li{width: 50px; height: 50px; background: url("../img/m-bg.png") repeat-x; position: relative; margin-right: 1px; margin-bottom: 1px; float: left; cursor: pointer;}
  957. .toolkit-make-icon .make-icon .foreground-map .tab1 .icons-ul li .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  958. .toolkit-make-icon .make-icon .foreground-map .tab1 .icons-ul li.active{}
  959. .toolkit-make-icon .make-icon .foreground-map .tab1 .icons-ul li.active .icon-checkbox-small{display: block;}
  960. .toolkit-make-icon .make-icon .foreground-map .tab1 .icons-ul li .t-con{border: 1px solid transparent; padding: 10px;}
  961. .toolkit-make-icon .make-icon .foreground-map .tab1 .icons-ul li.active .t-con{border-color: #157df1;}
  962. .toolkit-make-icon .make-icon .foreground-map .tab1 .form-group{margin-bottom: 0; margin-top: 20px;}
  963. .toolkit-make-icon .make-icon .foreground-map .tab1 .form-group:first-of-type{margin-top: 0;}
  964. .toolkit-make-icon .make-icon .foreground-map .tab1 .form-group:last-of-type{margin-bottom: 0; margin-top: 30px;}
  965. .toolkit-make-icon .make-icon .foreground-map .tab1 .written-content{display: none;}
  966. .toolkit-make-icon .make-icon .foreground-map .tab1 .text-color{display: none;}
  967. .toolkit-make-icon .make-icon .foreground-map .tab2{padding: 30px 10px;}
  968. .toolkit-make-icon .make-icon .foreground-map .tab2 .edit-text{margin-bottom: 30px;}
  969. .toolkit-make-icon .make-icon .error{font-size: 12px; color: #fd641d; margin-top: 5px; display: none;}
  970. .toolkit-make-icon .make-icon .form-error .error{display: block;}
  971. .toolkit-make-icon .make-icon .control-label{color: #333;}
  972. .toolkit-make-icon .make-icon .prospects{padding-top: 7px; color: #333;}
  973. .toolkit-make-icon .make-icon .prospects li{float: left; margin-right: 35px; cursor: pointer;}
  974. .toolkit-make-icon .make-icon .prospects li .icon-radio{margin-right: 8px;}
  975. .toolkit-make-icon .make-icon .m-icon-radio{margin-bottom: 40px;}
  976. .toolkit-make-icon .make-icon .m-icon-radio li{float: left; width: 140px; height: 40px; line-height: 40px; border: 1px solid #e5e5e5; border-radius: 3px; text-align: center; margin-right: 20px; cursor: pointer; position: relative;}
  977. .toolkit-make-icon .make-icon .m-icon-radio li .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  978. .toolkit-make-icon .make-icon .m-icon-radio li.active{border-color: #157df1;}
  979. .toolkit-make-icon .make-icon .m-icon-radio li.active .icon-checkbox-small{display: block;}
  980. .toolkit-make-icon .make-icon .img-size dt{float: left; margin-right: 40px; cursor: pointer;}
  981. .toolkit-make-icon .make-icon .img-size dt .iconfont{margin-right: 7px; position: relative; top: 1px;}
  982. .toolkit-make-icon .make-icon .img-size dd{float: left; margin-right: 40px; cursor: pointer;}
  983. .toolkit-make-icon .make-icon .img-size dd .iconfont{margin-right: 7px;}
  984. .toolkit-make-icon .make-icon .img-size-tit{margin-bottom: 2px;}
  985. .toolkit-make-icon .make-icon .img-size dt .icon-checkbox-checked1{color: #157df1;}
  986. .toolkit-make-icon .make-icon .img-size dd .icon-checkbox-checked1{color: #157df1;}
  987. @media (min-width: 1200px) {
  988. .toolkit-make-icon .make-icon .foreground-map .tab-con .form-group{margin-left: -10px; margin-right: -10px;}
  989. .toolkit-make-icon .make-icon .foreground-map .tab-con .col-sm-2{width: 20%; padding-left: 10px; padding-right: 10px;}
  990. .toolkit-make-icon .make-icon .foreground-map .tab-con .col-sm-10{width: 80%; padding-left: 10px; padding-right: 10px;}
  991. .toolkit-make-icon .make-icon .foreground-map .tab-con .col-sm-push-2{left: 20%;}
  992. }
  993. .toolkit-make-icon .m-right .generated-icon{padding: 9px 35px; margin-top: 25px;}
  994. /*/制作图标*/
  995. /*----------/toolkit-new----------*/
  996. /*----------/工具箱-----------*/
  997. /*----------企业签名-----------*/
  998. .signature-banner{background: url("../img/s-banner.jpg") no-repeat center; height: 430px; display: block; padding: 110px 0 0 70px;}
  999. .signature-banner .con{color: #fff;}
  1000. .signature-banner .con .h1{font-size: 32px; font-weight: 600; margin-bottom: 15px;}
  1001. .signature-banner .con p{font-size: 18px; line-height: 28px; margin-bottom: 20px;}
  1002. .signature-banner .con .ms-btn-primary{width: 110px; background-color: transparent; border-color: #fff; font-size: 16px;}
  1003. /*.corporate-signature-wrap{background-color: #f5f9fe;}*/
  1004. .corporate-signature{padding: 70px 0;}
  1005. .corporate-signature .h1{color: #157df1; margin-bottom: 50px; text-align: center;}
  1006. /*.corporate-signature .ms-thumbnail .ms-caption .tit{font-weight: 600;}*/
  1007. .corporate-signature .ms-thumbnail img{margin-bottom: 15px;}
  1008. .signature-tool{padding: 70px 0;}
  1009. .signature-tool .h1{color: #157df1; text-align: center; margin-bottom: 60px;}
  1010. .signature-tool img{margin: 0 auto;}
  1011. .signature-process-wrap{background: url("../img/bg-4.jpg") no-repeat center; height: 440px;}
  1012. .signature-process{padding-top: 75px;}
  1013. .signature-process .h1{color: #fff; margin-bottom: 80px; text-align: center;}
  1014. .signature-process img{margin: 0 auto;}
  1015. .signature-process ul{padding: 0 50px;}
  1016. .signature-process ul li{float: left;}
  1017. .signature-process ul li img{margin: 0 auto 20px; display: block;}
  1018. .signature-process ul li p{color: #fff;}
  1019. .signature-process ul li:nth-child(even){background: url("../img/tt-13.png") no-repeat center; height: 100px; width: 50px;}
  1020. .signature-process ul li:nth-child(odd){width: calc((100% - 200px) / 5); text-align: center;}
  1021. /*----------/企业签名-----------*/
  1022. /*----------封装页面-----------*/
  1023. .encapsulation-banner-wrap{background: url("../img/banner-4.jpg?20190302") no-repeat center; height: 430px; position: relative; display: block;}
  1024. .encapsulation-banner{padding: 100px 0 0 90px;}
  1025. .encapsulation-banner .h1{color: #fff; font-size: 32px; margin-bottom: 15px;}
  1026. .encapsulation-banner p{color: #fff; font-size: 18px; margin-bottom: 10px;}
  1027. .encapsulation-banner ul{margin-bottom: 20px;}
  1028. .encapsulation-banner ul li{color: #fff; float: left; margin-right: 40px; font-size: 16px;}
  1029. .encapsulation-banner ul li .iconfont{font-size: 20px; position: relative; top: 2px; margin-right: 5px;}
  1030. .encapsulation-banner .ms-btn{border: 1px solid #fff; color: #fff; padding-left: 25px; padding-right: 25px;}
  1031. .encapsulation-introduce-wrap{background-color: #f5f9fe; padding: 20px 0 15px;}
  1032. .encapsulation-introduce .ms-thumbnail .img-wrap{width: 115px; height: 100px; margin: 0 auto; margin-bottom: 15px; display: flex; align-items: flex-end; justify-content: center;}
  1033. .encapsulation-introduce .ms-thumbnail .img-wrap img{margin-bottom: 0;}
  1034. .encapsulation-introduce .ms-thumbnail .ms-caption .tit{margin-bottom: 5px;}
  1035. .encapsulation-introduce .ms-thumbnail .ms-caption p{font-size: 12px; line-height: 20px;}
  1036. .function-of{padding: 70px 0 80px; text-align: center;}
  1037. .function-of .tit{font-size: 36px; color: #157df1;}
  1038. .function-of p{font-size: 16px; color: #666; margin: 20px 0 75px;}
  1039. .function-of ul li{float: left; width: 16.6666667%; border-bottom: 1px solid #f5f7f9; border-left: 1px solid #f5f7f9; padding: 30px 0;}
  1040. .function-of ul li .img-wrap{position: relative; width: 60px; height: 55px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center;}
  1041. .function-of ul li .img-wrap .hot{background: url("../img/e-5.png"); width: 31px; height: 19px; position: absolute; color: #fff; font-size: 12px; line-height: 19px; right: -30px; top: -7px;}
  1042. .function-of ul li:nth-of-type(1){border-left-color: transparent;}
  1043. .function-of ul li:nth-of-type(7){border-left-color: transparent;}
  1044. .function-of ul li:nth-of-type(13){border-left-color: transparent;}
  1045. .function-of ul li:nth-of-type(n+13){border-bottom-color: transparent;}
  1046. .function-of .f-img img{margin: 0 auto;}
  1047. /*.function-of .watermark{position: absolute; left: 0; top: 0px;}*/
  1048. .encapsulation-complete-wrap{background: url("../img/e-6.jpg") no-repeat center; height: 440px;}
  1049. .encapsulation-complete-6{padding-top: 80px;}
  1050. .encapsulation-complete-6 .h1{color: #fff; margin-bottom: 60px; text-align: center;}
  1051. .app-case-wrap{background-color: #f5f9fe;}
  1052. .app-case{padding: 70px 80px 45px;}
  1053. .app-case .tit{font-size: 36px; color: #157df1; text-align: center; margin-bottom: 70px;}
  1054. .app-case .list .con{position: relative; margin-bottom: 25px;}
  1055. .app-case .list .con img{height: 418px;}
  1056. .app-case .list .con .hover{position: absolute; left: -10px; top: -10px; width: calc(100% + 20px); height: calc(100% + 40px); background-color: #348dee; color: #fff; font-size: 24px; padding-top: 160px; text-align: center; opacity: 0; transition: all 600ms; cursor: pointer; z-index: 1;}
  1057. .app-case .list .con:hover .hover{opacity: 1;}
  1058. .price-pay .wechat-pay{padding: 100px 0;}
  1059. .price-pay .wechat-pay .wechat-img{padding: 10px; width: 200px; height: 200px; border: 1px solid #e5e5e5;}
  1060. .price-pay .wechat-pay .glyphicon-triangle-left{font-size: 30px; color: #333;}
  1061. .price-pay .wechat-pay .left{margin-top: 100px;}
  1062. .price-pay .wechat-pay .center{margin-top: 170px;}
  1063. .user-loss{padding: 80px 0;}
  1064. .user-loss .h1{color: #157df1; text-align: center; margin-bottom: 60px;}
  1065. .user-loss ul{background: url("../img/en-1.png") no-repeat center; position: relative; height: 320px;}
  1066. .user-loss ul li{color: #333; font-size: 18px; padding: 0 20px; border-radius: 30px; height: 42px; line-height: 42px; box-shadow: 0 0 15px rgba(21,125,241,.2); position: absolute;}
  1067. .user-loss ul li.con1{left: 130px; top: 50px;}
  1068. .user-loss ul li.con2{right: 0;}
  1069. .user-loss ul li.con3{left: 0; bottom: 40px;}
  1070. .user-loss ul li.con4{right: 100px; bottom: 100px;}
  1071. .problem-solving-wrap{background: #f7f8fc url("../img/en-6.png?12>") no-repeat center bottom;}
  1072. .problem-solving{padding: 80px 20px; height: 795px;}
  1073. .problem-solving .h1{color: #157df1; text-align: center; margin-bottom: 80px;}
  1074. @media (min-width: 1200px) {
  1075. .problem-solving .row{margin: 0 -45px;}
  1076. .problem-solving .row .col-sm-3{padding: 0 45px;}
  1077. .problem-solving .row .col-sm-3:nth-child(1){margin-top: 30px;}
  1078. .problem-solving .row .col-sm-3:nth-child(2){margin-top: 180px;}
  1079. .problem-solving .row .col-sm-3:last-of-type{margin-top: 228px;}
  1080. }
  1081. .problem-solving .ms-thumbnail{background-color: #fff; padding: 30px 0; position: relative; border-radius: 10px;}
  1082. .problem-solving .ms-thumbnail .ms-caption p{height: 100px;}
  1083. .problem-solving .ms-thumbnail .location{position: absolute; left: 50%; bottom: -33px; transform: translateX(-50%);}
  1084. .encapsulation-complete-6 ul{padding: 0 50px;}
  1085. .encapsulation-complete-6 ul li{float: left;}
  1086. .encapsulation-complete-6 ul li img{margin: 0 auto 20px; display: block;}
  1087. .encapsulation-complete-6 ul li p{color: #fff;}
  1088. .encapsulation-complete-6 ul li:nth-child(even){background: url("../img/tt-13.png") no-repeat center; height: 100px; width: 50px;}
  1089. .encapsulation-complete-6 ul li:nth-child(odd){width: calc((100% - 200px) / 5); text-align: center;}
  1090. /*----------/封装页面-----------*/
  1091. /*----------404 500-----------*/
  1092. .web404{padding: 150px 0 0; min-height: 790px;}
  1093. .web404 .img{position: relative; padding-left: 45px;}
  1094. .web404 .error{position: absolute; right: -70px; top: 50px;}
  1095. .web404 .error .text{font-size: 24px; color: #333;}
  1096. .web404 .error p{margin-top: 10px;}
  1097. .web404 .error .ms-btn-primary{margin-top: 30px; font-size: 18px; width: 160px;}
  1098. .web500{position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%);}
  1099. .web500 .error{position: absolute; bottom: -50px; left: 65%;}
  1100. .web500 .error .text{font-size: 24px; color: #333;}
  1101. .web500 .error p{margin-top: 10px;}
  1102. .web500 .error .ms-btn-primary{margin-top: 30px; font-size: 18px; width: 160px;}
  1103. /*----------/404 500-----------*/
  1104. /*----------关于我们-----------*/
  1105. .about-banner-wrap{background: no-repeat center; height: 200px;}
  1106. .about-banner{height: 200px; padding-top: 50px; text-align: center; color: #fff;}
  1107. .about-tab-wrap{background-color: rgba(0,0,0,.1); margin-top: -44px;}
  1108. .about-tab-wrap .about-tab>a{float: left; color: #fff; width: 20%; height: 44px; line-height: 44px; font-size: 16px; text-align: center; cursor: pointer; display: block;}
  1109. .about-tab-wrap .about-tab .router-link-active{background-color: #157df1;}
  1110. .about-tab-wrap .about-tab a .iconfont{font-size: 18px; margin-right: 5px; position: relative; top: 1px;}
  1111. .about-tab-wrap .about-tab a:hover{background-color: #157df1;}
  1112. /*.about-us>div{display: none;}*/
  1113. .about-us .common{padding: 70px 0;}
  1114. .about-us .common h1{text-align: center; color: #333; margin-bottom: 50px;}
  1115. .about-us .common .p2{font-size: 16px; color: #333; text-align: center; line-height: 30px; margin-bottom: 50px;}
  1116. .about-us .contact-us{padding-top: 0;}
  1117. .about-us .contact-us .contact-con{padding: 0 50px;}
  1118. .about-us .contact-us .contact-con .ms-thumbnail{border: 1px solid #e5e5e5; padding: 50px 0;}
  1119. .about-us .contact-us .contact-con .ms-thumbnail .ms-caption .tit{font-size: 24px;}
  1120. .about-us .contact-us .contact-con .ms-thumbnail .ms-caption p{color: #666; margin-bottom: 20px;}
  1121. .about-us .contact-us .contact-con .ms-thumbnail .ms-caption .p1 .iconfont{color: #adb6bc; font-size: 20px; margin-right: 10px; position: relative; top: 2px;}
  1122. .about-us .contact-us .contact-con .ms-thumbnail .ms-caption .p1 .feedback1{font-size: 12px; padding: 3px 8px; margin-left: 25px;}
  1123. .about-us .service_content{font-size: 16px; color: #525252; padding: 70px;}
  1124. .about-us .service_content p{color: #333; font-size: 16px; line-height: 28px;}
  1125. .about-us .service_content .font18{color: #333; margin-top: 5px; margin-bottom: 5px;}
  1126. .about-us .service_content h3{font-size: 24px; color: #333333; line-height: 33px; margin-top: 20px; margin-bottom: 10px;}
  1127. .about-us .service_content li{line-height: 30px; list-style: none; color: #333;}
  1128. .about-us .service_content a, a:hover{color: #157df1; text-decoration: none;}
  1129. .about-us p.item-title{margin: 0 0 10px 0; font-size: 24px; color: #333; line-height: 50px;}
  1130. /*----------/关于我们-----------*/
  1131. /*应用上传 重置*/
  1132. /*----------应用上传 重置----------*/
  1133. .qq-upload-list-selector {
  1134. text-align: center;
  1135. padding-top: 0 !important;
  1136. }
  1137. .qq-progress-bar-container-selector {
  1138. height: 12px !important;
  1139. border-radius: 6px;
  1140. }
  1141. .qq-progress-bar-container-selector .qq-progress-bar-selector {
  1142. height: 12px !important;
  1143. border-radius: 6px;
  1144. }
  1145. .qq-progress-bar-container-selector .qq-progress-bar-selector {
  1146. height: 12px !important;
  1147. }
  1148. .release-app .progress-bar.active, .release-app .progress.active .progress-bar {
  1149. /*
  1150. -webkit-animation: none !important;
  1151. -o-animation: none !important;
  1152. animation: none !important;
  1153. */
  1154. }
  1155. .release-app .progress-striped .progress-bar-warning {
  1156. /*background-image: none !important;*/
  1157. }
  1158. .release-app .progress-bar-warning {
  1159. background-color: #36b8f3 !important;
  1160. }
  1161. .big-bag .progress-bar-warning {
  1162. background-color: #ffa634 !important;
  1163. }
  1164. .release-app2 .qq-upload-list li{padding: 9px 55px;}
  1165. .tag-box {
  1166. padding: 50px 20px 60px !important;
  1167. height: 450px !important;
  1168. }
  1169. .release-app .progress {
  1170. margin-top: 20px !important;
  1171. }
  1172. .qq-upload-list-selector {
  1173. margin-top: 20px !important;
  1174. }
  1175. .qq-upload-button-selector {
  1176. margin-top: 130px !important;
  1177. }
  1178. .tag-box-v5 {
  1179. margin-bottom: 0 !important;
  1180. }
  1181. /*----------/应用上传 重置----------*/
  1182. /*----------企业签名----------*/
  1183. .signature1>.con{position: relative;}
  1184. .signature1>.con>.row{margin: 0 0 20px; overflow: hidden; height: 100%;}
  1185. @media (min-width: 1200px) {
  1186. .signature1>.con>.row>.col-sm-2{padding: 0 0 9999px; margin-bottom: -9999px;}
  1187. }
  1188. .signature1>.con>.row>.col-sm-2{background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  1189. .signature1>.con>.row>.col-sm-10{padding: 0 0 0 10px;}
  1190. .signature1 .left{padding-top: 15px;}
  1191. .signature1 .left ul li{margin-bottom: 10px;}
  1192. .signature1 .left ul li a{padding-left: 25px; display: block; height: 50px; line-height: 50px; border-left: 4px solid transparent; color: #333;}
  1193. .signature1 .left ul li a .iconfont{margin-right: 10px; color: #333; font-size: 18px;}
  1194. .signature1 .left ul li.active a{background-color: #e7f2fe; border-color: #157df1; color: #157df1;}
  1195. .signature1 .left ul li.active a .iconfont{color: #157df1;}
  1196. .signature1 .left ul li.active a .icon-upload1{font-size: 18px;}
  1197. .signature1 .left ul li:hover a{background-color: #e7f2fe; border-color: #157df1; color: #157df1;}
  1198. .signature1 .left ul li:hover a .iconfont{color: #157df1;}
  1199. .signature1 .left ul li .icon-xiangzi{position: relative; top: 1px;}
  1200. .signature1 .left ul li .icon-caidan{position: relative; top: 1px;}
  1201. .signature1 .right{position: relative;}
  1202. .signature1 .right .step{overflow: hidden; margin-bottom: 10px;}
  1203. .signature1 .right .step li{float: left; background-color: #fff; width: 19.5%; height: 44px; line-height: 44px; text-align: center; color: #666; position: relative; border: none;}
  1204. .signature1 .right .step li span{display: inline-block; width: 18px; height: 18px; border-radius: 50%; border: 1px solid #e5e5e5; line-height: 16px; text-align: center; font-size: 12px; margin-right: 10px;}
  1205. .signature1 .right .step li.active{color: #157df1;}
  1206. .signature1 .right .step li.active span{color: #157df1; border-color: #157df1;}
  1207. .signature1 .right .step li:after, .signature1 .right .step li:before{left: 100%; top: 50%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; z-index: 1;}
  1208. .signature1 .right .step li:before{border-color: rgba(255, 0, 0, 0); border-left-color: #f2f2f5; border-width: 30px; margin-top: -30px;}
  1209. .signature1 .right .step li:after{border-color: rgba(255, 255, 255, 0); border-left-color: #fff; border-width: 25px; margin-top: -25px; z-index: 1;}
  1210. .signature1 .right .step-common{box-shadow: 0 0 5px rgba(0,0,0,.05); background-color: #fff; border-radius: 3px; /*margin-top: 10px;*/ color: #333; padding-bottom: 30px; /*min-height: 446px;*/}
  1211. .signature1 .right .step-common .tit{line-height: 60px; border-bottom: 1px solid #e5e5e5; height: 60px; padding: 0 0 0 30px; margin-bottom: 20px;}
  1212. .signature1 .right .step-common ul{padding: 0 30px 30px 30px;}
  1213. .signature1 .warn-prompt-wrap{padding-bottom: 20px; margin-top: -20px;}
  1214. .signature1 .warn-prompt-wrap .warn-prompt{width: calc(100% - 16.66666667% - 10px);}
  1215. .signature1 .warn-prompt-wrap .warn-prompt-1{width: calc(100% - 16.66666667% - 10px); margin-bottom: 0;}
  1216. .release-app2 .warn-prompt-wrap{padding-bottom: 20px; margin-top: -20px;}
  1217. .release-app2 .warn-prompt-wrap .warn-prompt{width: calc(100% - 16.66666667% - 10px);}
  1218. .release-app2 .warn-prompt-wrap .warn-prompt-1{width: calc(100% - 16.66666667% - 10px); margin-bottom: 0;}
  1219. /*对公转账*/
  1220. .contrary-transfer{color: #666; padding: 0 25px; display: none;}
  1221. .contrary-transfer .warn-prompt{margin-top: 0; margin-bottom: 15px;}
  1222. .contrary-transfer dl dt{width: 60px; text-align: right; margin-right: 45px; padding-top: 7px;}
  1223. .contrary-transfer dl dd{height: 34px; line-height: 34px;}
  1224. .contrary-transfer .dl-input dd{height: auto; line-height: normal;}
  1225. .contrary-transfer .dl-input{margin-top: 10px;}
  1226. .contrary-transfer .dl-input .form-error+.error{display: block;}
  1227. .contrary-transfer .dl-input .error{color: #ff4222; display: none;}
  1228. .signature1 .right .step1 .upload-file{padding: 0; height: 436px; margin-top: 10px; text-align: center; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  1229. .signature1 .right .step1 .qq-upload-button-selector{margin-top: 100px !important;}
  1230. .signature1 .right .step1 .qq-upload-list-selector li{padding-left: 20px; padding-right: 20px;}
  1231. .signature1 .right .step2 .form-group{margin-bottom: 30px;}
  1232. .signature1 .right .step2 .form-group .col-sm-6{position: relative;}
  1233. .signature1 .right .step2 .form-group .error-prompt{position: absolute; left: 15px; top: calc(100% + 3px); color: #f00; display: none;}
  1234. .signature1 .right .step2 .form-group.form-error .error-prompt{display: block;}
  1235. .signature1 .right .step2 ul{padding: 7px 15px 0;}
  1236. .signature1 .right .step2 .form-group .col-sm-2{width: 14%;}
  1237. .signature1 .right .step2 .app-name img{border: 1px solid #e5e5e5; border-radius: 15px; width: 60px; height: 60px;}
  1238. .signature1 .right .step2 .app-name .col-sm-2:nth-of-type(1){line-height: 60px; padding-top: 0;}
  1239. .signature1 .right .step2 .app-name .col-sm-2:nth-of-type(2){width: auto; padding-right: 0;}
  1240. .signature1 .right .step2 .app-name .col-sm-4{line-height: 60px;}
  1241. .signature1 .right .step3 .text{padding-left: 30px; margin-bottom: 20px;}
  1242. .signature1 .right .step3 .text img{width: 30px; height: 30px; border: 1px solid #e5e5e5; border-radius: 6px;}
  1243. .signature1 .right .step3 .text p{line-height: 30px; margin-left: 15px;}
  1244. .signature1 .right .step3 .pay-money{padding-bottom: 0; padding-left: 30px;}
  1245. .signature1 .right .step3 .pay-money .ms-btn{width: auto; padding: 6px 12px;}
  1246. .signature1 .right .step3 .pay-money .ms-btn.color-hover{padding-left: 0;}
  1247. .signature1 .right .step3 .pay-money .ms-btn-primary{width: 160px; padding: 9px 0;}
  1248. .signature1 .right .step3 .choose-package li{height: 40px; line-height: 40px; text-align: center; width: 100px; border: 1px solid #e5e5e5; position: relative; border-radius: 3px; margin-right: 30px; float: left; cursor: pointer;}
  1249. .signature1 .right .step3 .choose-package li .icon-checkbox{position: absolute; right: 0; bottom: 0; border-bottom-right-radius: 3px; display: none;}
  1250. .signature1 .right .step3 .choose-package li.active{border-color: #157df1;}
  1251. .signature1 .right .step3 .choose-package li.active .icon-checkbox{display: block;}
  1252. .signature1 .right .step3 .tooltip .tooltip-inner{max-width: 300px;}
  1253. .signature1 .right .step4{padding-bottom: 0;}
  1254. .signature1 .right .step4 .top{padding: 30px; border-bottom: 1px solid #e5e5e5; min-height: 350px;}
  1255. .signature1 .right .step4 .top img{border: 1px solid #e5e5e5; border-radius: 15px; width: 80px; height: 80px; margin-right: 20px;}
  1256. .signature1 .right .step4 .top table{width: 45%; color: #333;}
  1257. .signature1 .right .step4 .top table caption{color: #333; font-size: 24px; margin-bottom: 5px;}
  1258. .signature1 .right .step4 .top table caption .tit1{position: relative;}
  1259. .signature1 .right .step4 .top table caption .version{position: absolute; left: calc(100% + 2px); top: 0; background-color: #ed2027; font-size: 12px; width: 42px; color: #fff; text-align: center; border-radius: 3px;}
  1260. .signature1 .right .step4 .top table td{padding: 2px 0; font-size: 12px;}
  1261. .signature1 .right .step4 .top.signature-disabled img{-webkit-filter: grayscale(1); filter: gray; filter: grayscale(1);}
  1262. .signature1 .right .step4 .top.signature-disabled table{color: #999;}
  1263. .signature1 .right .step4 .top.signature-disabled table caption{color: #999;}
  1264. .signature1 .right .step4 .step-bottom{padding: 20px 50px 15px;}
  1265. .signature1 .right .step4 .step-bottom table{width: 100%; }
  1266. .signature1 .right .step4 .step-bottom table th{font-weight: 600; padding: 5px;}
  1267. .signature1 .right .step4 .step-bottom table th span{display: inline-block; width: 3px; height: 16px; background-color: #157df1; position: relative; top: 3px; margin-right: 7px;}
  1268. .signature1 .right .step4 .step-bottom table td{padding: 5px;}
  1269. .signature1 .right .app-table{margin-bottom: 0;}
  1270. .signature1 .right .app-table th{border-bottom-width: 1px;}
  1271. .table-list .app-table tr:hover td{background-color: #ebf7ff;}
  1272. .table-list .app-table td .app-icon-size{margin-right: 10px;}
  1273. .table-list .app-table td .app-icon-size img{width: 45px; height: 45px; border-radius: 10px; border: 1px solid #e5e5e5;}
  1274. .signature1 .right .app-table td .icon-download{font-size: 20px; cursor: pointer; color: #157df1;}
  1275. /*.signature1 .right .app-table td .icon-download:hover{color: #157df1;}*/
  1276. .signature1 .right .app-table .number{cursor: pointer;}
  1277. .signature1 .right .app-table .number .text{position: relative;}
  1278. .signature1 .right .app-table .number .glyphicon{color: #bbb; display: block; font-size: 13px; position: absolute; left: calc(100% + 3px);}
  1279. .signature1 .right .app-table .number .glyphicon-triangle-top{top: -4px;}
  1280. .signature1 .right .app-table .number .glyphicon-triangle-bottom{top: 4px;}
  1281. .signature1 .right .app-table .number.sorted.ascending .glyphicon-triangle-top{color: #666;}
  1282. .signature1 .right .app-table .number.sorted.descending .glyphicon-triangle-bottom{color: #666;}
  1283. .signature1 .right .no-signature{background-color: #fff; min-height: 420px; text-align: center; padding-top: 130px; border: 1px solid #e5e5e5; border-top: none;}
  1284. .signature1 .right .no-signature .text{margin-top: 20px;}
  1285. /*.signature1 .release-app .app-table tr th:first-of-type{width: 80px;}*/
  1286. .signature1 .release-app .app-table td .tit-ellipsis{width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; position: relative; top: 5px;}
  1287. .signature1 .right .warn-prompt{margin-top: 20px;}
  1288. /*----------/企业签名----------*/
  1289. /*----------封装----------*/
  1290. .encapsulation{padding: 30px; background-color: #fff;}
  1291. .encapsulation .common .list2{padding: 7px 15px 0;}
  1292. .encapsulation .common .list2 li{margin-right: 40px;}
  1293. /*.encapsulation .version-number{margin-bottom: 20px !important;}*/
  1294. .encapsulation .form-horizontal .form-group:last-of-type{margin-bottom: 0;}
  1295. #device{position: relative;}
  1296. #device .error{position: absolute; top: 35px; left: 15px; white-space: nowrap; font-size: 12px; color: #fd641d; display: none;}
  1297. #device.form-error .error{display: block;}
  1298. .encapsulation .upload-icon{position: relative; border: 1px solid #ddd; height: 100px; width: 100px; /*border-radius: 15px;*/ background: url("../img/icon-10.png") no-repeat center 23px; margin-bottom: 30px; overflow: hidden; margin-left: 15px;}
  1299. .encapsulation .upload-icon img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; /*border-radius: 15px;*/ background-color: #fff; /*border: 1px solid #e5e5e5;*/}
  1300. .encapsulation .upload-icon .thumbnail{position: absolute; z-index: 2; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  1301. .encapsulation .upload-icon .thumbnail1{position: absolute; z-index: 2; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  1302. .encapsulation .upload-icon .text{text-align: center; margin-top: 60px; font-size: 14px; font-weight: 600; color: #999;}
  1303. .encapsulation .step2 .img-note{font-size: 12px; display: flex; align-items: flex-end; height: 90px; margin-left: 10px;}
  1304. .encapsulation .img-note .ms-btn{font-size: 14px;}
  1305. .encapsulation .step2 .control-label{color: #333;}
  1306. .encapsulation .upload-icon .reset{position: absolute; left: 0; bottom: 0; height: 20px; line-height: 20px; background: rgba(0,0,0,.5); width: 100%; color: #fff; text-align: center; font-size: 12px; display: none;}
  1307. .encapsulation .upload-icon .reset{display: none;}
  1308. .encapsulation .upload-icon.uploaded .reset{display: none;}
  1309. .encapsulation .upload-icon.uploaded:hover .reset{display: block;}
  1310. .encapsulation .upload-img{height: 215px; width: 120px; background-position: center 45%; /*border-radius: 5px;*/ margin-bottom: 0;}
  1311. .encapsulation .upload-img .text{text-align: center; margin-top: 120px;}
  1312. .encapsulation .upload-img img{/*border-radius: 5px;*/}
  1313. .encapsulation .step2 .img-note1{font-size: 12px; display: flex; align-items: flex-end; height: 215px; margin-left: 10px;}
  1314. .encapsulation .step2 .img-note1 .ms-btn{font-size: 14px;}
  1315. /*启动图 显示时间*/
  1316. .encapsulation .step2 .start-time .tit{color: #333;}
  1317. .encapsulation .step2 .start-time ul{padding-left: 0;}
  1318. .encapsulation .step2 .start-time ul li{float: left; cursor: pointer; margin-right: 30px;}
  1319. .encapsulation .step2 .start-time ul li .icon-radio{margin-right: 10px; top: 3px;}
  1320. /*/启动图 显示时间*/
  1321. /*启动图 显示跳过*/
  1322. .encapsulation .step2 .show-skip .tit{color: #333;}
  1323. .encapsulation .step2 .show-skip ul{padding-left: 0;}
  1324. /*/启动图 显示跳过*/
  1325. .encapsulation4{padding: 30px 0;}
  1326. .encapsulation4 .common{margin-bottom: 10px;}
  1327. .encapsulation4 .common .tit{padding: 0 30px 20px; border-bottom: 1px solid #e5e5e5; color: #333;}
  1328. .encapsulation4 .common .list2{padding: 20px 30px 30px; color: #333;}
  1329. .encapsulation4 .pay-money{padding-bottom: 0; margin-top: 0;}
  1330. .encapsulation4 .pay-money .ms-btn.color-hover{width: auto; padding: 6px 12px;}
  1331. .encapsulation5{padding: 0; background-color: transparent;}
  1332. .encapsulation5 .e-details dt{color: #333; font-size: 24px;}
  1333. .encapsulation5 .e-details dd{margin-top: 5px; font-size: 12px;}
  1334. .encapsulation5 .e-details dt .tit1{position: relative;}
  1335. .encapsulation5 .e-details .d-bottom>span{margin-right: 50px;}
  1336. .encapsulation5 table{table-layout: fixed;}
  1337. .encapsulation5 table .ellipsis-wrap{position: relative;}
  1338. .encapsulation5 table .ellipsis-wrap .popover{max-width: 410px; width: 410px; top: 15px; font-size: 14px;}
  1339. .encapsulation5 table .ellipsis-wrap .popover .popover-content span{color: #157df1; margin-left: 10px; cursor: pointer;}
  1340. .encapsulation5 table .ellipsis-wrap .ellipsis{width: 80%;}
  1341. .encapsulation5 table .ellipsis-wrap .popover.bottom>.arrow{left: 25px;}
  1342. .encapsulation5 table .ellipsis-wrap:hover .popover{display: block;}
  1343. .encapsulation-app1{padding: 0; background-color: transparent;}
  1344. .encapsulation-app1 .app-table{color: #666;}
  1345. .encapsulation-app1 .app-table .iconfont{color: #bbb;}
  1346. .encapsulation-app1 .app-table tr th{padding-left: 10px; padding-right: 10px;}
  1347. .encapsulation-app1 .app-table tr td{height: 60px; padding: 0 10px !important;}
  1348. /*.encapsulation-app1 .app-table tr th:nth-of-type(2){text-align: left;}*/
  1349. /*.encapsulation-app1 .app-table tr th:nth-of-type(3){text-align: left;}*/
  1350. /*.encapsulation-app1 .app-table tr td:nth-of-type(3){text-align: left;}*/
  1351. /*.encapsulation-app1 table tr td:nth-of-type(3) a{max-width: 160px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;}*/
  1352. .encapsulation-app1 .number{width: 120px;}
  1353. .table-list .app-table .tr-disabled:hover td{background-color: #f7f7f7;}
  1354. .table-list .app-table .td-disabled{color: #999; position: relative;}
  1355. .table-list .app-table .td-disabled .icon-download{display: none;}
  1356. .table-list .app-table .mask{position: absolute; background-color: red; opacity: 0; left: 0; top: 0; width: 100%; height: 100%; cursor: not-allowed;}
  1357. .table-list .app-table .td-disabled img{-webkit-filter: grayscale(1); filter: gray; filter: grayscale(1);}
  1358. .table-list .app-table .td-disabled.table-action-3 .table-btn{display: none;}
  1359. .encapsulation-app1 .no-app{background-color: #fff; padding-top: .1px; min-height: 420px; border: 1px solid #e5e5e5; border-top: none;}
  1360. .encapsulation-app1 .no-app .icon-zhuangxiang{margin-right: 5px; font-size: 18px;}
  1361. .encapsulation-app1 .no-app .ms-btn .text{margin-top: 3px;}
  1362. .no-app .big{display: none;}
  1363. .big-bag .no-app .small{display: none;}
  1364. .big-bag .no-app .big{display: block;}
  1365. .table-list .app-table .ellipsis{max-width: 160px; width: auto;}
  1366. .table-list .app-table .pack-name-ellipsis{max-width: 140px; width: auto;}
  1367. .table-list .app-table .table-btn{padding: 4px 10px; border: 1px solid #157df1; border-radius: 3px; display: inline-block;}
  1368. .table-list .app-table .table-btn + .table-btn{margin-left: 3px;}
  1369. .table-list .app-table .table-btn:hover{background-color: #157df1; color: #fff;}
  1370. .table-list .app-table .table-btn:focus{background-color: transparent; color: #157df1;}
  1371. .table-list .app-table .table-btn:focus:hover{background-color: #157df1; color: #fff;}
  1372. .table-list .app-table .table-btn[disabled=disabled]{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1373. .table-list .app-table .table-btn[disabled=disabled]:focus{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1374. .table-list .app-table .table-btn.disabled{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1375. .table-list .app-table .table-btn.disabled:focus{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1376. .table-list .app-table .table-btn.color-delete{border-color: #ee635d; margin-right: 0;}
  1377. .table-list .app-table .table-btn.color-delete:hover{background-color: #ee635d; color: #fff;}
  1378. .table-list .app-table .table-btn.color-delete:focus{background-color: transparent; color: #ee635d;}
  1379. .table-list .app-table .table-btn.color-delete:focus:hover{background-color: #ee635d; color: #fff;}
  1380. .table-list .app-table .table-btn.color-delete[disabled=disabled]{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1381. .table-list .app-table .table-btn.color-delete[disabled=disabled]:focus:hover{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1382. .table-list .app-table .table-btn.color-delete.disabled{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1383. .table-list .app-table .table-btn.color-delete.disabled:focus:hover{color: #ccc; cursor: not-allowed; border-color: #e8e8e8; background-color: #e8e8e8;}
  1384. .table-list .app-table .table-btn.disabled{color: #999; cursor: not-allowed;}
  1385. .table-list .app-table .table-action-2{width: 190px;}
  1386. .table-list .app-table .table-action-3{width: 225px;}
  1387. .table-list .app-table .table-action-4{width: 265px;}
  1388. .table-list .app-table td .tit2{max-width: 115px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; color: #333; font-size: 14px; text-align: left; line-height: 14px; margin-top: 10px;}
  1389. .table-list .app-table td .tit2:hover{color: #157df1;}
  1390. .table-list .app-table td .tit3{color: #999; font-size: 12px; text-align: left; display: block; margin-top: 2px;}
  1391. .table-list .app-table tr .angle-parent{position: relative;}
  1392. .table-list .app-table tr .angle-parent .angle{position: absolute; left: 0; top: 0;}
  1393. .app-details2 .angle-parent{position: relative;}
  1394. .app-details2 .angle-parent .angle{position: absolute; left: 0; top: 0;}
  1395. .encapsulation3{padding: 0;}
  1396. .encapsulation3 .step3{padding-top: .1px;}
  1397. .encapsulation3 .step3 .tit3{padding: 20px 30px; border-bottom: 1px solid #e5e5e5; color: #333;}
  1398. .encapsulation3 .step3 .free-tool{padding-left: 30px; margin-top: 25px; color: #333;}
  1399. .encapsulation3 .step3 .pay-tool{padding-left: 30px; color: #333;}
  1400. .encapsulation3 .step3 .plugin-list{padding: 20px 30px 10px;}
  1401. .encapsulation3 .step3 .plugin-list .con{border: 1px solid #e5e5e5; border-radius: 5px; cursor: pointer; position: relative;}
  1402. .encapsulation3 .step3 .plugin-list .con img{margin: 10px auto 6px; height: 25px;}
  1403. .encapsulation3 .step3 .plugin-list .con .text3{text-align: center; margin-bottom: 10px; color: #666; font-size: 12px;}
  1404. .encapsulation3 .step3 .plugin-list .con .icon-checkbox{position: absolute; bottom: 0; right: 0; display: none;}
  1405. .encapsulation3 .step3 .plugin-list .con.active{border-color: #157df1;}
  1406. .encapsulation3 .step3 .plugin-list .con.active .icon-checkbox{display: block;}
  1407. .encapsulation3 .step3 .plugin-list .row{margin-left: -10px; margin-right: -10px;}
  1408. .encapsulation3 .step3 .plugin-list .row .col-sm-2{padding-left: 10px; padding-right: 10px;}
  1409. .encapsulation3 .step3 .plugin-list .con .in-development{position: absolute; background-color: rgba(0,0,0,.7); left: 0; top: 0; width: 100%; height: 100%; color: #fff; border-radius: 5px; display: none; align-items: center; justify-content: center;}
  1410. .encapsulation3 .step3 .plugin-list .con:hover .in-development{display: flex;}
  1411. .encapsulation3 .step3 .plugin-list .col-sm-2{width: 20%; margin-bottom: 20px;}
  1412. /*.encapsulation3 .step3 .plugin-list .row .col-sm-2:nth-of-type(n+11){margin-bottom: 0;}*/
  1413. .encapsulation3 .step3 .plugin-list .con .c-left{font-size: 12px; width: 60%;}
  1414. .encapsulation3 .step3 .plugin-list .con .c-left .img-hide{display: none;}
  1415. .encapsulation3 .step3 .plugin-list .con.active .c-left .img-hide{display: block;}
  1416. .encapsulation3 .step3 .plugin-list .con.active .c-left .img-show{display: none;}
  1417. .encapsulation3 .step3 .plugin-list .con .c-right{padding: 15px 20px 15px 0; height: 68px; display: flex; align-items: center; justify-content: center;}
  1418. .encapsulation3 .step3 .plugin-list .con .c-right .line{border-left: 1px solid #e5e5e5; width: 1px; height: 100%; margin-right: 20px;}
  1419. .encapsulation3 .step3 .plugin-list .con .c-right .icon-checkbox-checked1{color: #157df1;}
  1420. .encapsulation3 .step3 .plugin-list .con:hover{border-color: #157df1;}
  1421. /*
  1422. * table列表 优化
  1423. * 2018/10/24
  1424. */
  1425. .table-list-wrap{box-shadow: 0 0 5px rgba(0,0,0,.05); background-color: #fff; padding: 20px; min-height: 550px;}
  1426. .new-encapsulation{}
  1427. .new-encapsulation .right .step li{width: 32.5%;}
  1428. .new-encapsulation .right .step-common{min-height: 450px;}
  1429. .new-encapsulation .right .step-common .form-group{margin-bottom: 30px;}
  1430. .new-encapsulation .right .step-common .form-group1{margin-bottom: 20px;}
  1431. @media (min-width: 1200px) {
  1432. .new-encapsulation .right .step-common .form-group .col-sm-2{width: 14%;}
  1433. }
  1434. .new-encapsulation .step-common .img-note{font-size: 12px; display: flex; align-items: flex-end; height: 90px; margin-left: 10px;}
  1435. .new-encapsulation .encapsulation .upload-icon{margin-bottom: 0;}
  1436. .encapsulation .prev-step{padding: 6px 0; margin-right: 12px;}
  1437. /*----------/封装----------*/
  1438. /*----------封装 配置插件----------*/
  1439. .plugin-modal .modal-dialog{width: 700px;}
  1440. .plugin-modal .modal-title{color: #333;}
  1441. .plugin-modal .modal-header{padding-left: 30px;}
  1442. .plugin-modal .modal-footer{padding: 30px 15px;}
  1443. .plugin-modal .modal-header .close{opacity: 1; color: #333; font-size: 26px;}
  1444. .plugin-modal .modal-body{max-height: 600px; overflow-y: auto; position: relative;}
  1445. .modal-aside .modal-body{min-height: 600px;}
  1446. .plugin-modal .modal-body .more-gif{position: absolute; left: 50%; bottom: 0px; margin-left: -52px;}
  1447. .plugin-modal .modal-aside{background-color: #f0f0f0; border-radius: 6px;}
  1448. .plugin-modal .modal-aside .modal-aside-left{width: 35%;}
  1449. .plugin-modal .modal-aside .modal-aside-left .tit1{color: #333; font-size: 16px; text-align: center; margin-top: 55px; margin-bottom: 25px;}
  1450. .plugin-modal .modal-aside .modal-aside-right{width: 65%; background-color: #fff; /*min-height: 710px;*/ border-radius: 0 6px 6px 0;}
  1451. .sp-button-container{width: 75px;}
  1452. .sp-input{border: 1px solid #222;}
  1453. /*浏览器*/
  1454. .plugin-browser .select-browser{color: #157df1; font-size: 12px; margin-left: 125px;}
  1455. .plugin-browser .select-browser:hover{text-decoration: underline;}
  1456. /*/浏览器*/
  1457. /*加载动画*/
  1458. .config-plugin{}
  1459. .config-plugin .plugin-common{padding: 15px 20px;}
  1460. .config-plugin .plugin-common .sp-replacer{width: 100%;}
  1461. .config-plugin .plugin-common .sp-preview{width: 90%;}
  1462. .plugin-loading .tit3{color: #333; margin: 45px 0 15px;}
  1463. .plugin-loading .con{border: 1px solid #e5e5e5; border-radius: 5px; padding: 0 10px; position: relative; overflow: hidden; cursor: pointer;}
  1464. .plugin-loading .con .icon-checkbox{position: absolute; right: 0; bottom: 0; display: none;}
  1465. .plugin-loading .con.active{border-color: #157df1;}
  1466. .plugin-loading .con.active .icon-checkbox{display: block;}
  1467. .plugin-loading .con .tit1{padding: 15px 0;}
  1468. .plugin-loading .con.active .tit1{color: #157df1;}
  1469. .plugin-loading .con-1{border: 1px solid #e5e5e5; border-radius: 5px 5px 0 0; border-bottom: none; height: 140px;}
  1470. .config-plugin .plugin-common .top{color: #333; text-align: center;}
  1471. .config-plugin .plugin-common .top .time{font-size: 12px; font-weight: 600; padding-left: 20px; margin-top: 3px; display: inline-block;}
  1472. .config-plugin .plugin-common .top .num{font-size: 12px; font-weight: 600; margin: 3px 5px 0 0;}
  1473. .config-plugin .plugin-common .top .icon-signal{margin-left: 3px;}
  1474. .config-plugin .plugin-common .top .icon-wifi{font-size: 15px; margin-left: 5px;}
  1475. .config-plugin .plugin-common .top .icon-dianliang{font-size: 14px; margin-right: 3px;}
  1476. .plugin-loading .con-1 .tit2{text-align: center; color: #157df1; font-weight: 600; border-bottom: 1px solid #e5e5e5; padding-bottom: 5px; position: relative;}
  1477. .plugin-loading .con-1 .tit2 .progress1{position: absolute; left: 0; bottom: -1px; background: #157df1; height: 1px; width: 80%;}
  1478. .plugin-loading .con-1 img{margin: 35px auto 0; width: 26px; height: 26px; display: block;}
  1479. /*/加载动画*/
  1480. /*清除缓存*/
  1481. .config-plugin .plugin-common .common-ul li{float: left; width: 140px; height: 40px; line-height: 40px; text-align: center; border: 1px solid #e5e5e5; position: relative; border-radius: 5px; margin-right: 25px; overflow: hidden; cursor: pointer;}
  1482. .config-plugin .plugin-common .common-ul li .icon-checkbox{position: absolute; right: 0; bottom: 0; display: none;}
  1483. .config-plugin .plugin-common .common-ul li.active{border: 1px solid #157df1; color: #157df1;}
  1484. .config-plugin .plugin-common .common-ul li.active .icon-checkbox{display: block;}
  1485. /*/清除缓存*/
  1486. /*极光推送*/
  1487. .config-plugin .plugin-common label{color: #333;}
  1488. /*/极光推送*/
  1489. /*退出提示*/
  1490. .plugin-exit .con-1{position: relative;}
  1491. .plugin-exit .con-1 .shadow{position: absolute; background-color: rgba(0,0,0,.7); left: 0; top: 0; width: 100%; height: 100%; border-radius: 5px 5px 0 0; padding: 20px 30px;}
  1492. .plugin-exit .con-1 .shadow .s-con{background-color: #fff; border-radius: 5px; height: 100%; text-align: center; font-size: 12px; color: #333; padding-top: .1px;}
  1493. .plugin-exit .con-1 .shadow .s-con .s-tit{font-weight: 600; margin-top: 15px;}
  1494. .plugin-exit .con-1 .shadow .s-con p{margin-top: 5px;}
  1495. .plugin-exit .con-1 .shadow .s-con ol{margin-top: 15px;}
  1496. .plugin-exit .con-1 .shadow .s-con ol li{float: left; color: #157df1; border-top: 1px solid #e5e5e5; width: 50%; height: 30px; line-height: 30px;}
  1497. .plugin-exit .con-1 .shadow .s-con ol li:first-of-type{border-right: 1px solid #e5e5e5;}
  1498. .plugin-exit .con-1 .shadow1{position: absolute; background-color: rgba(0,0,0,.7); left: 15%; top: 55%; width: 70%; height: 30px; border-radius: 5px; line-height: 30px; color: #fff; text-align: center; font-size: 12px;}
  1499. .plugin-exit .mode dd{cursor: pointer;}
  1500. .plugin-exit .mode dd{margin-bottom: 10px;}
  1501. .plugin-exit .mode dd .text{margin-left: 3px;}
  1502. p{}
  1503. /*退出提示*/
  1504. /*引导页*/
  1505. #guideModal .modal-dialog{width: 1070px;}
  1506. #guideModal .modal-aside-left .bg{background: url("../img/aside-10.png") no-repeat center; width: 268px; height: 564px; margin: 0 auto;}
  1507. @media (min-width: 1200px) {
  1508. .plugin-guide .row{margin: 0 -10px;}
  1509. .plugin-guide .row .col-sm-3{width: 20%; padding: 0 10px;}
  1510. }
  1511. #guideModal .modal-aside-left .bg{position: relative;}
  1512. #guideModal img[src=""], #guideModal img:not([src]){opacity: 0;}
  1513. #guideModal .modal-aside-left .bg img{display: block; background-color: #fff; width: 240px; height: 425px; position: absolute; left: 14px; top: 70px;}
  1514. #guideModal .modal-aside-left .bg .experience-btn{position: absolute; left: 50%; bottom: 110px; margin-left: -65px; width: 130px; height: 30px; text-align: center; line-height: 28px; color: #fff; border: 1px solid #fff; border-radius: 15px; z-index: 2;}
  1515. .plugin-guide .upload-img{position: relative; border: 1px dashed #e5e5e5; height: 190px; width: 100%; border-radius: 5px; background: url("../img/icon-10.png") no-repeat center 40%; /*overflow: hidden;*/}
  1516. .plugin-guide .upload-img img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: 5px; background-color: #fff; border: 1px solid #e5e5e5;}
  1517. .plugin-guide .upload-img .thumbnail{position: absolute; z-index: 2; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  1518. .plugin-guide .upload-img .text{text-align: center; margin-top: 100px; font-size: 12px;}
  1519. .plugin-guide .upload-img .reset{position: absolute; left: 0; bottom: 0; height: 20px; line-height: 20px; background: rgba(0,0,0,.7); width: 100%; color: #fff; text-align: center; font-size: 12px; display: none;}
  1520. .plugin-guide .upload-img .reset{display: none;}
  1521. .plugin-guide .upload-img.uploaded .reset{display: none;}
  1522. .plugin-guide .upload-img.uploaded:hover .reset{display: block;}
  1523. /*删除*/
  1524. .plugin-guide .upload-img .icon-delete2{position: absolute; color: #ff6565; right: -8px; top: -8px; right: 0\9; top: 0\9; display: none; cursor: pointer; z-index: 2;}
  1525. .plugin-guide .upload-img.uploaded .icon-delete2{display: block;}
  1526. .plugin-guide .experience{margin-top: 20px;}
  1527. .plugin-guide .experience-color{margin-top: 45px;}
  1528. .plugin-guide .experience .tit{color: #333; margin-bottom: 7px;}
  1529. /*/引导页*/
  1530. /*第三方分享*/
  1531. .plugin-share .con{border: 1px solid #e5e5e5; border-radius: 5px; padding: 0 10px; position: relative; overflow: hidden; cursor: pointer;}
  1532. .plugin-share .con .icon-checkbox{position: absolute; right: 0; bottom: 0; display: none;}
  1533. .plugin-share .con.active{border-color: #157df1;}
  1534. .plugin-share .con.active .icon-checkbox{display: block;}
  1535. .plugin-share .con .tit1{padding: 15px 0; color: #333;}
  1536. .plugin-share .con.active .tit1{color: #157df1;}
  1537. .plugin-share .con-1{border: 1px solid #e5e5e5; border-radius: 5px 5px 0 0; border-bottom: none; height: 140px;}
  1538. .plugin-share .plugin-common .top{color: #333; text-align: center;}
  1539. .plugin-share .plugin-common .top .time{font-size: 12px; font-weight: 600; padding-left: 20px; margin-top: 3px; display: inline-block;}
  1540. .plugin-share .plugin-common .top .num{font-size: 12px; font-weight: 600; margin: 3px 5px 0 0;}
  1541. .plugin-share .plugin-common .top .icon-signal{margin-left: 3px;}
  1542. .plugin-share .plugin-common .top .icon-wifi{font-size: 15px; margin-left: 5px;}
  1543. .plugin-share .plugin-common .top .icon-dianliang{font-size: 14px; margin-right: 3px;}
  1544. .plugin-share .con-1 .tit2{text-align: center; color: #157df1; font-weight: 600; border-bottom: 1px solid #e5e5e5; padding-bottom: 5px; position: relative;}
  1545. .plugin-share .con-1 .tit2 .share-left{position: absolute; left: 5px; bottom: 3px;}
  1546. .plugin-share .con-1 .tit2 .share-right{position: absolute; right: 5px; bottom: 3px;}
  1547. .plugin-share .con .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  1548. .plugin-share .con.active .icon-checkbox-small{display: block;}
  1549. .plugin-share .s-tit{color: #333; margin-bottom: 8px;}
  1550. .plugin-share .s-tit1{color: #fd641d; margin-top: 5px; font-size: 12px; display: none;}
  1551. .plugin-share .s-way{margin-top: 0;}
  1552. .plugin-share .s-way .w-top{margin-bottom: 8px;}
  1553. .plugin-share .s-way .w-top .t-left{color: #333;}
  1554. .plugin-share .s-way .w-top .t-right{color: #157df1; font-size: 12px;}
  1555. /*第三方分享三期完成后 删除*/
  1556. .plugin-share .s-way .w-con{border: 1px solid #e5e5e5; border-radius: 5px; padding: 15px 12px 0; position: relative; cursor: pointer;}
  1557. .plugin-share .s-way .w-con .s-tit2{color: #333; margin-bottom: 5px;}
  1558. .plugin-share .s-way .w-con p{color: #666; font-size: 12px; margin-bottom: 10px; height: 34px;}
  1559. .plugin-share .s-way .w-con.active{border-color: #157df1;}
  1560. .plugin-share .s-way .w-con.active .s-tit2{color: #157df1;}
  1561. .plugin-share .s-way .w-con .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  1562. .plugin-share .s-way .w-con.active .icon-checkbox-small{display: block;}
  1563. /*/第三方分享三期完成后 删除*/
  1564. .plugin-share .s-way .s-ul li{position: relative; overflow: visible;}
  1565. .plugin-share .s-way .s-ul li .way-top{position: absolute; bottom: 100%; right: 0; color: #157df1; z-index: 2; font-size: 12px; height: 28px; line-height: 28px;}
  1566. .plugin-share .s-way .s-ul li .recommended{position: absolute; left: 0; top: 0;}
  1567. .plugin-share .s-way .s-ul li .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  1568. .plugin-share .s-way .s-ul li.active .icon-checkbox-small{display: block;}
  1569. .plugin-share .app-share{display: none; position: relative;}
  1570. /*.plugin-share .app-share .label-wrap{margin-bottom: 8px;}*/
  1571. .plugin-share .app-share .label-wrap label{color: #333;}
  1572. .plugin-share .app-share .label-wrap a{color: #157df1; font-size: 12px; position: absolute; right: 0; top: -21px;}
  1573. .plugin-share .s-con{border: 1px solid #e5e5e5; padding: 15px 20px 20px; border-radius: 4px;}
  1574. .plugin-share .app-share .s-con{margin-top: 20px;}
  1575. .plugin-share .s-con .s-tit3{color: #333;}
  1576. .plugin-share .s-con dl{color: #333; margin-top: 10px;}
  1577. .plugin-share .s-con dl dt{font-weight: 600; margin-bottom: 5px;}
  1578. .plugin-share .s-con .save-txt{padding: 3px 5px 2px; font-size: 12px; line-height: 14px; margin-top: 5px; margin-bottom: 25px;}
  1579. .plugin-share .app-share input{margin-top: 10px;}
  1580. .plugin-share .form-group{margin-bottom: 30px;}
  1581. .plugin-share .form-group:last-of-type{margin-bottom: 0;}
  1582. .plugin-share .form-group .row .col-sm-8{margin-bottom: 10px;}
  1583. .plugin-share .share-location{margin-top: 40px;}
  1584. .plugin-share .share-location .s-tit4{color: #333; margin-bottom: 2px;}
  1585. .plugin-share .share-location p{color: #fd641d;}
  1586. .plugin-share .share-content{margin-top: 40px;}
  1587. .plugin-share .share-content .tab .s-con{display: none;}
  1588. .plugin-share .share-content .radio-round{margin-bottom: 20px; color: #333;}
  1589. .plugin-share .share-content label{margin-bottom: 5px;}
  1590. .plugin-share .share-content .form-group{margin-bottom: 15px;}
  1591. .plugin-share .share-content .form-group .error{color: #fd641d; font-size: 12px; display: none;}
  1592. .plugin-share .share-content .form-group.form-error .error{display: block;}
  1593. .plugin-share .share-content .s-con .form-group:last-of-type{margin-bottom: 0;}
  1594. /*/第三方分享*/
  1595. /*状态栏*/
  1596. @media (min-width: 1200px) {
  1597. #stateModal .modal-dialog{width: 1070px;}
  1598. }
  1599. #stateModal .modal-aside-left .bg{background: url("../img/plugin-aside-3.png") no-repeat center top; width: 268px; height: 564px; margin: 0 auto; padding-top: .1px; position: relative;}
  1600. .plugin-modal .common-top{height: 24px; line-height: 24px; background-color: #157df1; color: #fff;}
  1601. .plugin-modal .common-top.white{color: #fff;}
  1602. .plugin-modal .common-top.black{color: #333;}
  1603. .plugin-modal .common-top .icon-signal{margin-left: 3px; font-size: 13px;}
  1604. .plugin-modal .common-top .font12{font-size: 12px; transform: scale(.8);}
  1605. .plugin-modal .common-top .icon-dianliang{margin-top: -1px; margin-right: 5px; font-size: 12px;}
  1606. #stateModal .common-top{width: auto; margin: 71px 15px 0; height: 16px; line-height: 16px;}
  1607. .plugin-state .tit1{color: #333; margin-bottom: 5px;}
  1608. .config-plugin .plugin-common .bg-text-color ol li{width: 30px; height: 30px; background-color: #e5e5e5; border: 1px solid #999; border-radius: 5px; float: left; padding: 6px; cursor: pointer;}
  1609. .config-plugin .plugin-common .bg-text-color ol li.active{border: 3px solid #157df1;}
  1610. .config-plugin .plugin-common .bg-text-color ol li:last-of-type{margin-left: 10px;}
  1611. .config-plugin .plugin-common .bg-text-color ol li:first-of-type span{display: block; background-color: #fff; width: 100%; height: 100%;}
  1612. .config-plugin .plugin-common .bg-text-color ol li:last-of-type span{display: block; background-color: #333; width: 100%; height: 100%;}
  1613. /*/状态栏*/
  1614. /*标题栏*/
  1615. @media (min-width: 1200px) {
  1616. #titleModal .modal-dialog{width: 1070px;}
  1617. }
  1618. #titleModal .modal-aside-left .bg{background: url("../img/plugin-aside-1.png") no-repeat center top; width: 268px; height: 564px; margin: 0 auto; padding-top: .1px;}
  1619. .plugin-title input{color: #333;}
  1620. .plugin-title .tit1{color: #333; margin-bottom: 5px;}
  1621. #titleModal .modal-aside-left .state-title-header{margin-top: 71px;}
  1622. #titleModal .modal-aside-left .state-top{width: auto; margin: 0 15px; height: 16px; line-height: 16px;}
  1623. #titleModal .modal-aside-left .title-top{height: 26px; line-height: 26px; position: relative; /*margin-top: 85px;*/ width: auto; margin-left: 15px; margin-right: 15px;}
  1624. #titleModal .modal-aside-left .title-top .iconfont{font-size: 20px; display: none;}
  1625. #titleModal .modal-aside-left .title-top .t-left .iconfont{margin-left: 5px; margin-top: 1px;}
  1626. #titleModal .modal-aside-left .title-top .t-right .iconfont{margin-right: 5px; margin-top: 1px;}
  1627. #titleModal .modal-aside-left .title-top .text{position: absolute; left: 0; top: 50%; transform: translate(0, -50%); width: 100%; text-align: center; white-space: nowrap; font-size: 13px; line-height: 27px;}
  1628. .plugin-title .form-group{margin-bottom: 40px;}
  1629. .plugin-title .form-group:last-of-type{margin-bottom: 0;}
  1630. .plugin-title .function-keys-wrap{margin-top: 40px;}
  1631. .plugin-title .function-keys-wrap .form-group{margin-bottom: 20px;}
  1632. .plugin-title .function-keys-wrap .form-group:last-of-type{margin-bottom: 0;}
  1633. .plugin-title .function-keys li{float: left; margin-right: 25px; cursor: pointer; margin-bottom: 10px;}
  1634. .plugin-title .function-keys li .icon{position: relative; top: 3px; margin-right: 5px;}
  1635. .plugin-title .function-keys li .iconfont{position: relative; top: 1px; margin-right: 5px;}
  1636. .plugin-title .function-keys li.disabled{background-color: transparent !important;}
  1637. .plugin-title .function-keys li .icon-checkbox-checked1{color: #157df1;}
  1638. .plugin-title .title-top dd .icon-text{display: none;}
  1639. .plugin-title .title-top dd.vertical{background-color: rgba(21, 125, 241, .5); width: 100px; padding: 10px 0 10px 8px; margin-top: 4px;}
  1640. .plugin-title .title-top .t-right dd.vertical{padding-left: 20px;}
  1641. .plugin-title .title-top dd.vertical .icon-text{display: block;}
  1642. .plugin-title .title-top dd.vertical .icon-wrap{width: 100%; height: 32px; line-height: 32px;}
  1643. .plugin-title .title-top dd.vertical .icon-wrap .iconfont{margin-top: 0; margin-right: 5px;}
  1644. /*.plugin-title .common-ul{margin-bottom: 40px;}*/
  1645. .plugin-title .state-way{position: relative; margin-top: 40px;}
  1646. .plugin-title .bg-text-color1{margin-top: 40px;}
  1647. .plugin-title .bg-text-color1 ol li{width: 30px; height: 30px; background-color: #e5e5e5; border: 1px solid #999; border-radius: 5px; float: left; padding: 6px; cursor: pointer;}
  1648. .plugin-title .bg-text-color1 ol li.active{border: 3px solid #157df1;}
  1649. .plugin-title .bg-text-color1 ol li:last-of-type{margin-left: 10px;}
  1650. .plugin-title .bg-text-color1 ol li:first-of-type span{display: block; background-color: #fff; width: 100%; height: 100%;}
  1651. .plugin-title .bg-text-color1 ol li:last-of-type span{display: block; background-color: #333; width: 100%; height: 100%;}
  1652. .plugin-title .state-bg-extension{display: none; padding-left: 15px;}
  1653. .plugin-title .state-bg-extension .tit{color: #333; margin-bottom: 3px;}
  1654. .plugin-title .state-way .way-popover{position: absolute; top: 0; left: 198px; color: #157df1; font-size: 12px;}
  1655. .plugin-title .hr{margin-top: 50px; margin-bottom: 45px;}
  1656. .plugin-title .state-way .extend-prompt{color: #fd641d; font-size: 12px; margin-top: 10px;}
  1657. #titleModal .plugin-title .state-top-extension{background: url("../img/img-ys.png") no-repeat center top; width: 237px; height: 128px;}
  1658. /*/标题栏*/
  1659. /*导航栏*/
  1660. /*改版完成后,删除*/
  1661. .config-plugin .plugin-common .common-top.white .n-text{color: #fff;}
  1662. .config-plugin .plugin-common .common-top.black .n-text{color: #333;}
  1663. .config-plugin .plugin-common .common-top.white .n-icon{border-color: #fff; color: #fff;}
  1664. .config-plugin .plugin-common .common-top.black .n-icon{border-color: #333; color: #333;}
  1665. /*/改版完成后,删除*/
  1666. #navModal .modal-dialog{width: 1070px;}
  1667. #navModal .modal-aside-left .bg{background: url("../img/plugin-aside-2.png") no-repeat center top; width: 268px; height: 564px; margin: 0 auto; padding-top: .1px; position: relative;}
  1668. .plugin-nav .nav-top{background-color: #157df1; height: 38px; line-height: normal; position: absolute; bottom: 74px; left: 15px; right: 15px; width: auto;}
  1669. .plugin-nav .nav-top ul{width: 100%; /*height: 36px;*/ /*table-layout: fixed; display: table;*/}
  1670. .plugin-nav .nav-top ul li{display: table-cell; text-align: center; width: 1%; height: 38px;}
  1671. .plugin-nav .nav-top ul li:nth-of-type(n+3){display: none;}
  1672. .plugin-nav .icon-null{border: 1px solid #ddd; width: 14px; height: 14px; border-radius: 50%; background-color: #fff; display: inline-block;}
  1673. .plugin-nav .n-text{color: #333;}
  1674. .plugin-nav .nav-top .n-icon{color: #ddd;}
  1675. .plugin-nav .nav-top .n-text{color: #ddd;}
  1676. .plugin-nav .nav-top ul li:first-of-type .n-icon{color: #fff; border-color: #fff;}
  1677. .plugin-nav .nav-top ul li:first-of-type .n-text{color: #fff;}
  1678. .plugin-nav .nav-top ul li .li-con{display: flex; justify-content: center; align-items: center; height: 100%;}
  1679. /*.config-plugin .plugin-nav .tit1{color: #333; margin-bottom: 5px;}*/
  1680. .config-plugin .plugin-nav .set-nav .tit2{color: #333;}
  1681. .config-plugin .plugin-nav .set-nav .tit2 span{color: #999;}
  1682. /*.config-plugin .plugin-nav .set-nav .tit2 span{color: #f00;}*/
  1683. .config-plugin .plugin-nav .set-nav .reset{font-size: 12px; color: #157df1; line-height: 20px; cursor: pointer;}
  1684. .config-plugin .plugin-nav .set-nav .set-con{border: 1px solid #e5e5e5; border-radius: 3px; margin-top: 5px;}
  1685. /*配置插件 导航改版完成后将此处删除*/
  1686. /*
  1687. .config-plugin .plugin-nav .set-nav .set-ul li{float: left; padding: 0 15px; height: 54px; background-color: #f9f9f9; border: 1px solid #e5e5e5; border-top: none; border-left: none; cursor: pointer; display: flex; align-items: center; justify-content: center; text-align: center; position: relative;}
  1688. .config-plugin .plugin-nav .set-nav .set-ul li:nth-of-type(n+3):not(.add-li){display: none;}
  1689. .config-plugin .plugin-nav .set-nav .set-ul li.active{border-bottom-color: transparent; background-color: #fff;}
  1690. .config-plugin .plugin-nav .set-nav .set-ul li.active .n-text{color: #333;}
  1691. .config-plugin .plugin-nav .set-nav .set-ul li.bg-error{background-color: #fd641d; color: #fff; border-bottom-color: #fd641d;}
  1692. .config-plugin .plugin-nav .set-nav .set-ul li.bg-error .n-text{color: #fff;}
  1693. .config-plugin .plugin-nav .set-nav .set-ul li.bg-error .iconfont{color: #fff !important;}
  1694. .config-plugin .plugin-nav .set-nav .set-ul li.add-li{padding: 0; width: 54px;}
  1695. .config-plugin .plugin-nav .set-nav .set-ul li .icon-null{margin-top: 0;}
  1696. .config-plugin .plugin-nav .set-nav .set-ul li.add-li .iconfont{color: #e5e5e5; font-size: 30px; margin-top: 7px; display: inline-block;}
  1697. .config-plugin .plugin-nav .set-nav .set-ul li .mask{position: absolute; right: 0; top: -1px; background-color: rgba(0,0,0,.5); color: #fff; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; display: none;}
  1698. .config-plugin .plugin-nav .set-nav .set-ul li .mask .iconfont{font-size: 14px;}
  1699. .config-plugin .plugin-nav .set-nav .set-ul li:hover .mask{display: flex;}
  1700. .config-plugin .plugin-nav .set-nav .set-ul li .li-con{}
  1701. .config-plugin .plugin-nav .set-nav .tab{padding: 25px 10px 10px;}
  1702. .config-plugin .plugin-nav .set-nav .tab .add-icon-wrap .col-sm-7{width: auto;}
  1703. .config-plugin .plugin-nav .set-nav .tab .add-icon-wrap .add-link{margin-top: 10px;}
  1704. .config-plugin .plugin-nav .set-nav .tab .add-icon{border: 1px solid #e5e5e5; border-radius: 3px; width: 40px; height: 40px; text-align: center; cursor: pointer;}
  1705. .config-plugin .plugin-nav .set-nav .tab .add-icon .iconfont{color: #e5e5e5; font-size: 22px; margin-top: 2px; margin-left: 2px; display: inline-block;}
  1706. .config-plugin .plugin-nav .set-nav .tab .col-sm-2{width: 60px ; padding-right: 0;}
  1707. .config-plugin .plugin-nav .set-nav .tab .col-sm-2 .control-label{width: 100%;}
  1708. .config-plugin .plugin-nav .set-nav .tab .t-con{display: none;}
  1709. #navModal .error{display: none;}
  1710. #navModal .form-error .error{font-size: 12px; color: #fd641d; display: block; margin-left: 0px;}!*导航栏改版完成后,再改回50px*!
  1711. */
  1712. /*/配置插件 导航改版完成后将以上删除*/
  1713. .config-plugin .plugin-nav .set-nav .set-bottom{margin-top: 40px;}
  1714. .config-plugin .plugin-nav .set-nav .set-bottom .b-tit{color: #333; margin-bottom: 5px;}
  1715. .config-plugin .plugin-nav .set-nav .set-bottom ul li{float: left; margin-right: 40px; cursor: pointer;}
  1716. .config-plugin .plugin-nav .set-nav .set-bottom ul li .icon-radio{position: relative; top: 3px; margin-right: 5px;}
  1717. .plugin-modal .icons li{float: left; text-align: center; cursor: pointer; margin: 5px; color: #666;}
  1718. .plugin-modal .icons li div{font-size: 12px; }
  1719. .plugin-modal .icons li .iconfont{font-size: 36px;}
  1720. .plugin-modal .icons li:hover{color: #157df1;}
  1721. /*2018/10/30 重构*/
  1722. /*.plugin-nav .plugin-common{padding: 15px 40px;}*/
  1723. /*.plugin-nav .bg-text-color{margin-top: 40px;}*/
  1724. .plugin-nav .tit1{margin-bottom: 5px; color: #333;}
  1725. .plugin-nav .nav-font-color1{margin-top: 40px;}
  1726. .plugin-nav .nav-font-color2{margin-top: 40px;}
  1727. .plugin-nav .n-nav{background-color: #e5e5e5; height: 36px; line-height: 36px; padding-left: 70px;}
  1728. .plugin-nav .n-nav li{float: left; margin: 0 5px; text-align: center;}
  1729. .plugin-nav .n-nav .nav-fun{width: 140px;}
  1730. .plugin-nav .n-nav .nav-name{width: 90px;}
  1731. .plugin-nav .n-nav .nav-icon{width: 34px; margin-left: 0;}
  1732. .plugin-nav .n-list{padding: 20px; color: #333;}
  1733. .plugin-nav .n-list dd{margin-bottom: 30px; position: relative;}
  1734. .plugin-nav .n-list dd:nth-of-type(n+3){display: none;}
  1735. .plugin-nav .n-list .n-num{margin-right: 15px; padding-top: 7px;}
  1736. .plugin-nav .n-list .n-text{margin-right: 10px; width: 90px; padding: 6px;}
  1737. .plugin-nav .n-list select{margin-right: 10px; width: 140px; padding: 6px; color: #999;}
  1738. .plugin-nav .n-list .add-icon{border: 1px solid #e5e5e5; border-radius: 3px; width: 34px; height: 34px; text-align: center; cursor: pointer; margin-right: 10px;}
  1739. .plugin-nav .n-list .add-icon .iconfont{color: #e5e5e5; font-size: 22px; /*margin-top: 2px;*/ margin-left: 3px; display: inline-block;}
  1740. .plugin-nav .n-list .n-link{margin-right: 20px; width: 175px; padding: 6px; visibility: hidden;}
  1741. .plugin-nav .n-list .n-delete{font-size: 24px; color: #f17d78; cursor: pointer; display: none;}
  1742. .plugin-nav .n-list dd:hover .n-delete{display: block;}
  1743. .plugin-nav .n-list dd .error{color: #ff4222; position: absolute; left: 50px; top: 100%; display: none;}
  1744. .plugin-nav .n-list dd.form-error .error{display: block;}
  1745. /*2018/10/30 重构*/
  1746. /*导航栏*/
  1747. /*升级提示*/
  1748. .plugin-upgrade-prompt .u-con{margin-bottom: 40px;}
  1749. .plugin-upgrade-prompt .u-tit{color: #333; margin-bottom: 5px;}
  1750. .plugin-upgrade-prompt ul li{float: left; color: #333; cursor: pointer;}
  1751. .plugin-upgrade-prompt ul li+li{margin-left: 30px;}
  1752. .plugin-upgrade-prompt ul li .icon-radio{position: relative; top: 3px; margin-right: 8px;}
  1753. .plugin-upgrade-prompt .u-con select+input[type=text]{display: none;}
  1754. .plugin-upgrade-prompt .style li{text-align: center; color: #666;}
  1755. .plugin-upgrade-prompt .style li .s-con{position: relative; margin-bottom: 5px; border-radius: 5px; overflow: hidden; border: 1px solid transparent;}
  1756. .plugin-upgrade-prompt .style li .s-con .icon-checkbox{position: absolute; bottom: 0; right: 0; display: none;}
  1757. .plugin-upgrade-prompt .style li.active .s-con{border-color: #157df1;}
  1758. .plugin-upgrade-prompt .style li.active .s-con .icon-checkbox{display: block;}
  1759. .plugin-upgrade-prompt .download-address{margin-bottom: 0;}
  1760. /*/升级提示*/
  1761. /*左侧栏*/
  1762. @media (min-width: 1200px) {
  1763. #asideModal .modal-dialog{width: 1070px;}
  1764. }
  1765. #asideModal .modal-content{overflow: hidden; background-color: #f0f0f0;}
  1766. #asideModal .aside-modal .a-left{width: 35%; float: left; /*background-color: #f0f0f0; padding-bottom: 100px;*/}
  1767. #asideModal .aside-modal .a-right{width: 65%; float: right; background-color: #fff;}
  1768. #asideModal .aside-modal .a-left .phone{background: url("../img/aside-phone.png") no-repeat; width: 268px; height: 564px; position: relative; margin: 30px auto 0;}
  1769. #asideModal .aside-modal .a-left .phone .bg{position: absolute; left: 13px; top: 70px; width: 241px; height: 422px; background-color: rgb(0,0,0); padding: 30px 20px;}
  1770. #asideModal .aside-modal .a-left .l-tit{text-align: center; margin-top: 60px; color: #333; font-size: 16px;}
  1771. #asideModal .aside-modal .a-left .phone .bg .aside-icon{margin-bottom: 18px;}
  1772. #asideModal .aside-modal .a-left .phone .bg .aside-icon img{border-radius: 3px; width: 40px; height: 40px;}
  1773. #asideModal .aside-modal .a-left .phone .bg .aside-nav li{border-bottom: 1px solid #e5e5e5; padding: 4px 0; display: none;}
  1774. #asideModal .aside-modal .a-left .phone .bg .aside-nav li .iconfont{font-size: 20px; color: #333;}
  1775. #asideModal .aside-modal .a-left .phone .bg .aside-nav li .text{margin-left: 5px; margin-top: 5px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 95px; color: #333;}
  1776. /*#asideModal .aside-modal .a-left .phone .bg .aside-nav.white licolor: #fff;}*/
  1777. /*#asideModal .aside-modal .a-left .phone .bg .aside-nav.black li{color: #000;}*/
  1778. #asideModal .aside-modal .a-left .phone .bg .b-right{position: absolute; top: 0; right: 0;}
  1779. #asideModal .aside-modal .a-left .phone .bg .b-right img{display: none;}
  1780. #asideModal .plugin-remind{display: block; margin-top: 20px;}
  1781. .plugin-aside .set-bottom ul li{float: left; margin-right: 40px; cursor: pointer;}
  1782. .plugin-aside .set-nav .set-bottom ul li .icon-radio{position: relative; top: 3px; margin-right: 5px;}
  1783. .plugin-aside .tit1{color: #333; margin-bottom: 5px;}
  1784. .plugin-aside .set-nav .tit2{color: #333;}
  1785. .plugin-aside .set-nav .tit2 span{color: #999;}
  1786. .plugin-aside .set-nav .reset{font-size: 12px; color: #157df1; line-height: 20px; cursor: pointer;}
  1787. .plugin-aside .set-nav .set-con{border: 1px solid #e5e5e5; border-radius: 3px; margin-top: 5px;}
  1788. .plugin-aside .set-nav .set-bottom{margin-top: 40px;}
  1789. .plugin-aside .set-nav .set-bottom .b-tit{color: #333; margin-bottom: 5px;}
  1790. .plugin-aside .set-nav .set-bottom ul li{float: left; margin-right: 40px; cursor: pointer; color: #333;}
  1791. .plugin-aside .set-nav .set-bottom ul li .icon-radio{position: relative; top: 3px; margin-right: 5px;}
  1792. .plugin-aside .n-nav{background-color: #e5e5e5; height: 36px; line-height: 36px; padding-left: 65px;}
  1793. .plugin-aside .n-nav li{float: left; margin: 0 5px; text-align: center;}
  1794. .plugin-aside .n-nav .nav-fun{width: 140px;}
  1795. .plugin-aside .n-nav .nav-name{width: 90px;}
  1796. .plugin-aside .n-nav .nav-icon{width: 34px;}
  1797. .plugin-aside .n-list{padding: 20px; color: #333;}
  1798. .plugin-aside .n-list dd{margin-bottom: 30px; position: relative;}
  1799. .plugin-aside .n-list dd:nth-of-type(n+2){display: none;}
  1800. .plugin-aside .n-list .n-num{margin-right: 10px; padding-top: 7px; width: 45px;}
  1801. .plugin-aside .n-list .n-text{margin-right: 10px; width: 90px; padding: 6px;}
  1802. .plugin-aside .n-list select{margin-right: 10px; width: 135px; padding: 6px; color: #999;}
  1803. .plugin-aside .n-list .add-icon{border: 1px solid #e5e5e5; border-radius: 3px; width: 34px; height: 34px; text-align: center; cursor: pointer; margin-right: 10px;}
  1804. .plugin-aside .n-list .add-icon .iconfont{color: #e5e5e5; font-size: 22px; /*margin-top: 2px;*/ margin-left: 2px; display: inline-block;}
  1805. .plugin-aside .n-list .n-link{margin-right: 20px; width: 170px; padding: 6px; visibility: hidden;}
  1806. .plugin-aside .n-list .n-delete{font-size: 24px; color: #f17d78; cursor: pointer; display: none;}
  1807. .plugin-aside .n-list dd:hover .n-delete{display: block;}
  1808. .plugin-aside .n-list dd .error{color: #ff4222; margin-left: 50px; /*position: absolute; left: 50px; top: 100%;*/ display: none;}
  1809. .plugin-aside .n-list dd.form-error .error{display: block;}
  1810. .plugin-modal .icons li{float: left; text-align: center; cursor: pointer; width: calc(100% / 12); /*margin: 5px 4px;*/ color: #666;}
  1811. .plugin-modal .icons li div{font-size: 12px; }
  1812. .plugin-modal .icons li .iconfont{font-size: 36px;}
  1813. .plugin-modal .icons li:hover{color: #157df1;}
  1814. .plugin-aside .error{display: none;}
  1815. .plugin-aside .form-error .error{font-size: 12px; color: #fd641d; display: block;}
  1816. .plugin-aside .top-show{margin-top: 40px;}
  1817. .plugin-aside .top-show .b-tit{color: #333; margin-bottom: 5px;}
  1818. .plugin-aside .top-show ul li{float: left; width: 140px; padding: 9px 12px; position: relative; margin-right: 20px;}
  1819. .plugin-aside .top-show ul li .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  1820. .plugin-aside .top-show ul li.active{border-color: #157df1;}
  1821. .plugin-aside .top-show ul li.active .icon-checkbox-small{display: block;}
  1822. .plugin-aside .con{border: 1px solid #e5e5e5; border-radius: 5px; padding: 0 10px; position: relative; overflow: hidden; cursor: pointer;}
  1823. .plugin-aside .con .icon-checkbox{position: absolute; right: 0; bottom: 0; display: none;}
  1824. .plugin-aside .con.active{border-color: #157df1;}
  1825. .plugin-aside .con.active .icon-checkbox{display: block;}
  1826. .plugin-aside .con .tit1{padding: 15px 0;}
  1827. .plugin-aside .con.active .tit1{color: #157df1;}
  1828. .plugin-aside .con-1{border: 1px solid #e5e5e5; border-radius: 5px 5px 0 0; border-bottom: none; height: 140px;}
  1829. .plugin-aside .con-1 .a-icon{color: #333; padding: 0 5px; border-bottom: 1px solid #e5e5e5;}
  1830. .plugin-aside .con-1 .a-icon .iconfont{font-size: 20px;}
  1831. .plugin-aside .con-1 .tit2{text-align: center; color: #157df1; margin-top: 5px;}
  1832. .plugin-aside .con .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  1833. .plugin-aside .con.active .icon-checkbox-small{display: block;}
  1834. .plugin-remind{margin-top: 45px; display: none;}
  1835. .plugin-remind .r-tit{color: #333; margin-bottom: 2px;}
  1836. .plugin-remind p{color: #fd641d;}
  1837. .plugin-remind1{margin-top: 45px; display: none;}
  1838. .plugin-remind1 .r-tit{color: #333; margin-bottom: 2px;}
  1839. .plugin-remind1 p{color: #fd641d;}
  1840. /*/左侧栏*/
  1841. /*制作启动图*/
  1842. #startPicModal .modal-dialog{width: 1010px;}
  1843. #startPicModal .modal-content{overflow: hidden;}
  1844. #startPicModal .modal-body{max-height: 630px; min-height: 630px; padding: 20px 30px;}
  1845. #startPicModal .aside-modal{background-color: #f0f0f0;}
  1846. #startPicModal .aside-modal .a-left{width: 35%; float: left; padding-top: 30px;}
  1847. #startPicModal .aside-modal .a-right{width: 65%; float: right; background-color: #fff;}
  1848. #startPicModal .aside-modal .a-left .l-tit{text-align: center; /*margin-top: 60px;*/ color: #333; font-size: 16px;}
  1849. #startPicModal .aside-modal .a-left .phone{background: url("../img/aside-phone1.png") no-repeat; width: 304px; height: 640px; position: relative; margin: 30px auto 0;}
  1850. #startPicModal .aside-modal .a-left .phone .bg{position: absolute; left: 17px; top: 70px; width: 270px; height: 480px; overflow: hidden; /*padding: 60px 20px;*/ background-position: center; background-size: cover;}
  1851. #startPicModal .aside-modal .a-left .phone .bg img{border: 1px solid #e5e5e5;}
  1852. #startPicModal .aside-modal .a-left .phone .s-app-icon{text-align: center; margin-bottom: 7px;}
  1853. #startPicModal .aside-modal .a-left .phone .s-app-icon img{width: 65px; height: 65px; border-radius: 5px;}
  1854. #startPicModal .aside-modal .a-left .phone .s-app-name{text-align: center; color: #fff; position: absolute; left: 0; top: 132px; width: 100%;}
  1855. #startPicModal .aside-modal .a-left .phone .s-app-introduce{color: #fff; font-size: 12px; margin-top: 5px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; width: 100%; text-align: center; position: absolute; left: 0; top: 152px;}
  1856. /*#startPicModal .making-startup{padding: 10px 35px;}*/
  1857. #startPicModal .making-startup .s-tit{color: #333; margin-bottom: 5px;}
  1858. #startPicModal .making-startup .pic-list{width: 460px; margin-bottom: 40px;}
  1859. #startPicModal .making-startup .pic-list li{float: left; position: relative; border: 1px solid #e5e5e5; margin-right: 10px; margin-bottom: 10px; cursor: pointer;}
  1860. #startPicModal .making-startup .pic-list li.active{border-color: #157df1;}
  1861. #startPicModal .making-startup .pic-list li .icon-checkbox{position: absolute; right: 0; bottom: 0; display: none;}
  1862. #startPicModal .making-startup .pic-list li.active .icon-checkbox{display: block;}
  1863. #startPicModal .making-startup .radio-tick{margin-bottom: 45px;}
  1864. #startPicModal .a-left .phone .bg-3 .s-app-icon{margin-top: 100px;}
  1865. #startPicModal .a-left .phone .bg-3 .s-app-name{color: #333; top: 232px;}
  1866. #startPicModal .a-left .phone .bg-3 .s-app-introduce{color: #333; top: 252px;}
  1867. /*#startPicModal .aside-modal .a-left .phone .bg-4{height: 475px;}*/
  1868. #startPicModal .a-left .phone .bg-4 .s-app-wrap{position: absolute; bottom: 10px; left: 5px; width: 100%;}
  1869. #startPicModal .a-left .phone .bg-4 .s-app-icon{float: left;}
  1870. #startPicModal .a-left .phone .bg-4 .s-name-wrap{float: left; width: 70%; margin-top: 13px; margin-left: 5px;}
  1871. #startPicModal .a-left .phone .bg-4 .s-app-name{color: #333; text-align: left; position: static;}
  1872. #startPicModal .a-left .phone .bg-4 .s-app-introduce{color: #333; position: static; text-align: left;}
  1873. #startPicModal .a-left .phone .bg-5{border: 1px solid #e5e5e5;}
  1874. #startPicModal .a-left .phone .bg-5 .s-app-icon{margin-top: 30px;}
  1875. #startPicModal .a-left .phone .bg-5 .s-app-name{color: #333; top: 163px;}
  1876. #startPicModal .a-left .phone .bg-5 .s-app-introduce{color: #333; top: 183px;}
  1877. #startPicModal .a-left .phone .bg-6 .s-app-name{color: #333;}
  1878. #startPicModal .a-left .phone .bg-6 .s-app-introduce{color: #333;}
  1879. #startPicModal .a-left .phone .bg-7 .s-app-name{color: #333;}
  1880. #startPicModal .a-left .phone .bg-7 .s-app-introduce{color: #333;}
  1881. /*#startPicModal .aside-modal .a-left .phone .bg-8{height: 475px;}*/
  1882. #startPicModal .a-left .phone .bg-8 .s-app-wrap{position: absolute; bottom: 10px; left: 5px; width: 100%;}
  1883. #startPicModal .a-left .phone .bg-8 .s-app-icon{float: left;}
  1884. #startPicModal .a-left .phone .bg-8 .s-name-wrap{float: left; width: 70%; margin-top: 13px; margin-left: 5px;}
  1885. #startPicModal .a-left .phone .bg-8 .s-app-name{color: #333; text-align: left; position: static;}
  1886. #startPicModal .a-left .phone .bg-8 .s-app-introduce{color: #333; position: static; text-align: left;}
  1887. #startPicModal .a-left .phone .bg-9 .s-app-name{color: #333;}
  1888. #startPicModal .a-left .phone .bg-9 .s-app-introduce{color: #333;}
  1889. /*/制作启动图*/
  1890. /*制作图标*/
  1891. /*2019/4/9/ 改版*/
  1892. @media (min-width: 1200px) {
  1893. #makeIconsModal .modal-dialog{width: 1010px;}
  1894. #makeIconsModal .modal-dialog .modal-body{padding: 20px 30px; min-height: 410px;}
  1895. }
  1896. #makeIconsModal .m-tit{color: #333; margin-bottom: 10px;}
  1897. #makeIconsModal .m-icon{background-position: center; width: 150px; height: 150px; background-size: cover; display: flex; justify-content: center; align-items: center; margin: 0 auto;}
  1898. #makeIconsModal .m-icon img{width: 150px; height: auto; display: block; border-radius: 15px;}
  1899. #makeIconsModal .m-icon .m-name{color: #fff; max-width: 120px; text-align: center;}
  1900. #makeIconsModal .icon-bg{border: 1px solid #e5e5e5; padding: 30px 25px; border-radius: 5px; margin-bottom: 50px;}
  1901. #makeIconsModal .icon-bg dl dt{color: #333; margin-right: 20px;}
  1902. #makeIconsModal .m-icon-bg1{margin-bottom: 20px;}
  1903. #makeIconsModal .m-icon-bg1 dt{line-height: 30px;}
  1904. #makeIconsModal .m-icon-bg1 dd{width: 40%;}
  1905. #makeIconsModal .m-icon-bg2 dt{line-height: 40px;}
  1906. .make-img-common .tab{border-right: 1px solid #e5e5e5;}
  1907. .make-img-common .tab li{float: left; width: 16.66666667%; text-align: center; line-height: 32px; border: 1px solid #e5e5e5; color: #333; background-color: #fbfbfb; cursor: pointer;}
  1908. .make-img-common .tab li+li{border-left-color: transparent;}
  1909. .make-img-common .tab li:last-of-type{border-right-color: transparent;}
  1910. .make-img-common .tab li.active{background-color: #fff; border-bottom-color: transparent;}
  1911. /*#makeIconsModal .foreground-map .tab li:first-of-type{border-radius: 5px 0 0 0;}*/
  1912. /*#makeIconsModal .foreground-map .tab li:last-of-type{border-radius: 0 5px 0 0;}*/
  1913. .make-img-common .tab-con{border: 1px solid #e5e5e5; margin-top: -1px;}
  1914. .make-img-common .tab-con>div{display: none;}
  1915. .make-img-common .tab-common{padding: 30px 40px;}
  1916. .make-img-common .tab-common ul{/*height: 204px; overflow-y: auto;*/}
  1917. .make-img-common .tab-common ul li{width: calc((100% - 24px) / 7); position: relative; margin-right: 4px; margin-bottom: 4px; float: left; cursor: pointer; border: 1px solid #e5e5e5;}
  1918. #startPicModal .make-img-common .tab-common ul li{width: calc((100% - 16px) / 5);}
  1919. #makeIconsModal .make-img-common .tab-common ul li:nth-child(7n){margin-right: 0;}
  1920. #startPicModal .make-img-common .tab-common ul li:nth-child(5n){margin-right: 0;}
  1921. .make-img-common .tab-common ul li .icon-checkbox-small{position: absolute; right: 0; bottom: 0; display: none;}
  1922. .make-img-common .tab-common ul li.active{}
  1923. .make-img-common .tab-common ul li.active .icon-checkbox-small{display: block;}
  1924. .make-img-common .tab-common ul li .t-con{}
  1925. .make-img-common .tab-common ul li.active{border-color: #157df1;}
  1926. #makeIconsModal .error{font-size: 12px; color: #fd641d; margin-top: 5px; display: none;}
  1927. #makeIconsModal .form-error .error{display: block;}
  1928. /*/制作图标*/
  1929. /*网页缩放*/
  1930. .plugin-web-zoom .tit{color: #333; margin-bottom: 5px;}
  1931. /*/网页缩放*/
  1932. /*手势配置*/
  1933. .plugin-gestures .tit{color: #333; margin-bottom: 3px;}
  1934. .plugin-gestures .gestures-list1{margin-bottom: 40px;}
  1935. .plugin-gestures .gestures-list1 li{float: left; margin-right: 40px; cursor: pointer;}
  1936. .plugin-gestures .gestures-list2 .tit{margin-bottom: 5px;}
  1937. .plugin-gestures .gestures-list2 p{color: #fd641d; margin-top: 10px;}
  1938. /*/手势配置*/
  1939. /*浏览器UA*/
  1940. .plugin-ua .ua{margin-bottom: 40px;}
  1941. .plugin-ua .ua:last-of-type{margin-bottom: 10px;}
  1942. .plugin-ua .ua .tit{color: #333; margin-bottom: 5px;}
  1943. .plugin-ua .ua-con{border: 1px solid #e5e5e5; padding: 30px 0;}
  1944. .plugin-ua .ua-con .form-control{margin-bottom: 8px;}
  1945. .plugin-ua .ua-con .form-group{margin: 0 -5px 25px;}
  1946. .plugin-ua .ua-con .form-group:last-of-type{margin-bottom: 0;}
  1947. .plugin-ua .ua-con .col-sm-3{padding: 10px 5px 0;}
  1948. @media (min-width: 1200px) {
  1949. .plugin-ua .ua-con .col-sm-3{width: 22%;}
  1950. }
  1951. .plugin-ua .ua-con .col-sm-8{padding: 0 5px;}
  1952. .plugin-ua .ua-con label{font-size: 12px; color: #333;}
  1953. .plugin-ua .ua-con p{font-size: 12px;}
  1954. .plugin-ua .ua-con p span{color: #157df1;}
  1955. .plugin-ua .ua-con .error{font-size: 12px; color: #fd641d; margin-top: 5px; display: none;}
  1956. .plugin-ua .ua-con .form-error .error{display: block;}
  1957. /*/浏览器UA*/
  1958. /*保存账户密码*/
  1959. .plugin-save-pwd .tit{color: #333; margin-bottom: 5px;}
  1960. /*/保存账户密码*/
  1961. /*----------/封装 配置插件----------*/
  1962. /*----------应用发布 改版----------*/
  1963. .release-app2>.row{margin: 0 0 20px; overflow: hidden; height: 100%;}
  1964. @media (min-width: 1200px) {
  1965. .release-app2>.row>.col-sm-2{padding: 0 0 9999px; margin-bottom: -9999px;}
  1966. }
  1967. .release-app2>.row>.col-sm-2{background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  1968. .release-app2>.row>.col-sm-10{padding: 0 0 0 10px;}
  1969. /*
  1970. .release-app2>.row{margin-left: -5px; margin-right: -5px;}
  1971. .release-app2>.row>.col-sm-2,.release-app2>.row>.col-sm-10{padding-left: 5px; padding-right: 5px;}
  1972. */
  1973. aside.aside-left{padding-top: 15px;}
  1974. aside.aside-left ul li{margin-bottom: 10px;}
  1975. aside.aside-left ul li a{padding-left: 25px; display: block; height: 50px; line-height: 50px; border-left: 4px solid transparent; color: #333;}
  1976. aside.aside-left ul li a .iconfont{margin-right: 10px; color: #157df1;}
  1977. aside.aside-left ul li.active a{background-color: #e7f2fe; border-color: #157df1; color: #157df1;}
  1978. aside.aside-left ul li.active a .iconfont{color: #157df1;}
  1979. aside.aside-left ul li.active a .icon-upload1{font-size: 18px;}
  1980. aside.aside-left ul li:hover a{background-color: #e7f2fe; border-color: #157df1; color: #157df1;}
  1981. aside.aside-left ul li:hover a .iconfont{color: #157df1;}
  1982. .release-app2 .aside-right .a-top{margin-bottom: 5px;}
  1983. .release-app2 .aside-right .a-top.mb10{margin-bottom: 10px;}
  1984. .release-app2 .aside-right .a-top .app-icon{width: 100px; border-radius: 20px; background-color: #fff; cursor: pointer; border: 1px solid #e5e5e5; overflow: hidden;}
  1985. .release-app2 .aside-right .a-top .app-icon li{float: left; width: 50%; height: 38px; display: flex; justify-content: center; align-items: center; border-right: 1px solid #e5e5e5;}
  1986. .release-app2 .aside-right .a-top .app-icon li:last-of-type{border-right-color: transparent;}
  1987. .release-app2 .aside-right .a-top .app-icon li .iconfont{font-size: 22px; color: #bbb;}
  1988. .release-app2 .aside-right .a-top .app-icon li.active{background-color: #157df1;}
  1989. .release-app2 .aside-right .a-top .app-icon li.active .iconfont{color: #fff;}
  1990. .release-app2 .aside-right .search{position: relative; margin-left: 30px;}
  1991. .release-app2 .aside-right .search .iconfont{position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 18px;}
  1992. .release-app2 .aside-right .search input{height: 40px; line-height: 38px; width: 160px; border: 1px solid #e5e5e5; padding-left: 40px; background-color: transparent; color: #333;}
  1993. .release-app2 .aside-right .search input::-webkit-input-placeholder{color: #333 !important;}
  1994. .release-app2 .aside-right .search input::-moz-placeholder{color: #333 !important;}
  1995. .release-app2 .aside-right .search input::-ms-input-placeholder{color: #333 !important;}
  1996. .release-app2 .aside-right .search .btn-search{line-height: 40px; color: #157df1; margin-left: 15px;}
  1997. .release-app2 .aside-right .how-many dl dd{text-align: right; position: relative; padding-right: 20px; margin-right: 20px;}
  1998. .release-app2 .aside-right .how-many dl dd .p1{font-size: 12px; float: left; color: #999;}
  1999. .release-app2 .aside-right .how-many dl dd .icon-prompt1{font-size: 14px; color: #999; float: left; margin: -3px 0 0 3px;}
  2000. .release-app2 .aside-right .how-many dl dd .icon-prompt{margin-left: 5px; float: left;}
  2001. .release-app2 .aside-right .how-many dl dd .p2{color: #333; float: right; font-size: 19px;}
  2002. .release-app2 .aside-right .how-many dl dd .p2 i{font-size: 12px; color: #999;}
  2003. .release-app2 .aside-right .how-many dl dd .p2 span{float: right;}
  2004. .release-app2 .aside-right .how-many dl dd .p2 span:last-child{margin-right: 10px;}
  2005. .release-app2 .aside-right .how-many dl dd .right-line{position: absolute; top: 6px; right: 0; background-color: #e5e5e5; width: 1px; height: 30px;}
  2006. .release-app2 .aside-right .how-many .ms-btn-primary.w60{padding: 3px 12px; margin-top: 6px;}
  2007. .release-app2 .aside-right .how-many .big-bag-btn{background-color: #fd9817; border-color: #fd9817; color: #fff;}
  2008. .release-app2 .aside-right .app-table-wrap{/*min-height: 502px;*/ margin-top: 5px; /*margin-bottom: 40px;*/ /*background-color: #fff;*/ /*border: 1px solid #e5e5e5; border-top: none;*/}
  2009. .release-app2 .aside-right .app-table{border: 1px solid #e5e5e5; font-size: 12px; margin-bottom: 0;}
  2010. .release-app2 .aside-right .app-table tr th{text-align: center; font-weight: 600; color:#666; padding: 15px 0; background-color: #f7f7fa; border-color: #e5e5e5;}
  2011. .release-app2 .aside-right .app-table tr td{text-align: center; padding: 0 10px; vertical-align: middle; border-color: #e5e5e5; color: #666; height: 60px;}
  2012. /*.release-app2 .aside-right .app-table tr .app-th-name{width: 160px;}*/
  2013. .release-app2 .aside-right .app-table>tbody>tr>td.color-danger{color: #fd641d;}
  2014. .release-app2 .aside-right .app-table>tbody>tr>td.color-999{color: #999;}
  2015. .release-app2 .aside-right .app-table>tbody>tr>td td{text-align: left;}
  2016. .release-app2 .aside-right .app-table tr:hover td{background-color: #ebf7ff;}
  2017. .release-app2 .aside-right .app-table .app-icon1{border-radius: 15px; border: 1px solid #e5e5e5; width: 50px; height: 50px;}
  2018. .table-list .app-table .download-code{/*display: inline-block;*/}
  2019. .table-list .app-table .download-code-wrap{line-height: 16px; height: 16px;}
  2020. .table-list .app-table .download-code1{display: inline-block;}
  2021. .table-list .app-table .download-code .ellipsis{color: #157df1;}
  2022. .table-list .app-table .download-code .ellipsis:hover{text-decoration: underline;}
  2023. .table-list .app-table .download-code .icon-small-code{margin-top: 1px; margin-left: 3px;}
  2024. .release-app2 .aside-right .app-table .app-name1{display: block; color: #666; max-width: 96px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
  2025. .release-app2 .aside-right .app-table .app-icon-name{position: relative;}
  2026. .release-app2 .aside-right .app-table .app-icon-name .big-package-1{position: absolute; left: -11px; top: -10px; background-color: #fd9817; height: 16px; line-height: 16px; padding: 0 3px 0 1px; border-radius: 0 10px 10px 0; color: #fff; font-size: 12px; display: none;}
  2027. .release-app2 .aside-right .app-table .app-icon-name .app-expired{position: absolute; left: -11px; top: -10px; background-color: #fd641d; height: 16px; line-height: 16px; padding: 0 3px 0 1px; border-radius: 0 10px 10px 0; color: #fff; font-size: 12px; z-index: 2; display: none;}
  2028. .release-app2 .aside-right .app-table tr td.disabled{background-color: #fff !important;}
  2029. .release-app2 .aside-right .app-table tr td.disabled img{-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;}
  2030. .release-app2 .aside-right .app-table tr td.disabled .tit2{color: #999;}
  2031. .release-app2 .aside-right .app-table tr td.disabled .ellipsis{color: #ccc;}
  2032. .version-history-table{border: 1px solid #e5e5e5;}
  2033. .version-history-table th{border: none !important; text-align: center; font-weight: normal; color: #666; height: 40px; background-color: #f5f6f7; font-size: 12px; vertical-align: middle !important;}
  2034. .version-history-table tr td{padding: 0 15px !important; height: 50px; vertical-align: middle !important; font-size: 12px; text-align: center;}
  2035. .version-history-table tr td .bundle-length{display: block;}
  2036. .version-history-table tr td .iconfont{font-size: 20px; cursor: pointer;}
  2037. /*.release-app2 .aside-right .no-app{min-height: 326px; border: 1px solid #e5e5e5; border-top: none;}*/
  2038. .release-app2 .aside-right .no-app .iconfont{font-size: 20px;}
  2039. .release-app2 .aside-right .no-app .text{margin: 4px 0 0 5px;}
  2040. /*.app-details{margin-bottom: 40px;}*/
  2041. .app-details .details-top{padding: 25px 20px; background-color: #fff; margin-bottom: 20px; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  2042. .app-details .details-top>img{border: 1px solid #e5e5e5; border-radius: 12px; width: 60px; height: 60px;}
  2043. .app-details .details-top .information{margin-left: 15px;}
  2044. .app-details .details-top .information dt{color: #333; margin-bottom: 2px; margin-top: -5px;}
  2045. .app-set1 .details-top .information dt{margin-top: 0;}
  2046. .app-details .details-top .information dt .i-tit{position: relative;}
  2047. .app-details .details-top .information dt .i-tit .iconfont{color: #bbb; font-size: 21px;}
  2048. .app-details .details-top .information dt .text{font-size: 20px;}
  2049. /*.app-details .details-top .information dt .iconfont{position: absolute; right: -20px; top: 0;}*/
  2050. .app-details .details-top .information dt .version{position: absolute; left: calc(100% + 5px); top: -10px; background-color: #fc4e54; font-size: 12px; width: 42px; height: 18px; line-height: 18px; color: #fff; text-align: center; border-radius: 3px;}
  2051. .app-details .details-top .information dt .version-private{background-color: #fd641d;}
  2052. .app-details .details-top .information dt .no-flash-back{background-color: #2fc302; width: 52px;}
  2053. .app-details .details-top .information dd{color: #999;}
  2054. /*.app-details .details-top .information dd:first-of-type{margin-bottom: 3px;}*/
  2055. .app-details .details-top .information dd span{margin-right: 30px;}
  2056. .app-details .details-top .information dd i{margin-left: 10px;}
  2057. .add-notes-wrap{cursor: pointer; margin-right: 0 !important;}
  2058. .add-notes-wrap span{margin-right: 0 !important;}
  2059. .add-notes .icon-compile{cursor: pointer; margin-top: -1px;}
  2060. .add-notes .icon-compile:hover{color: #157df1;}
  2061. .add-notes .text{max-width: 250px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-right: 3px !important;}
  2062. /*.add-notes>span:last-of-type:hover{color: #157df1;}*/
  2063. .add-notes:hover>span:last-of-type{color: #157df1;}
  2064. .add-notes:hover .icon-compile{color: #157df1;}
  2065. .add-notes-wrap input[name='remark']{display: inline-block; width: 200px; height: 26px; display: none;}
  2066. #notesModal .modal-content .close{position: absolute; right: 10px; top: 10px; z-index: 2; color: #333; opacity: 1; font-size: 24px;}
  2067. #notesModal .modal-footer{border-top: none; padding: 20px 30px 30px;}
  2068. #notesModal .modal-body{padding: 25px 30px 0;}
  2069. #notesModal .modal-body .tit{margin-bottom: 15px; color: #333;}
  2070. #notesModal .modal-footer .ms-btn-primary{width: 130px; padding: 9px;}
  2071. .app-list-notes-wrap{line-height: 100%;}
  2072. .app-list-notes:empty{display: none;}
  2073. .app-list-notes{margin-top: 3px; font-size: 12px; color: #999; display: block;}
  2074. .app-list-notes2{margin-top: 6px; display: inline-block;}
  2075. .app-details .details-bottom{padding: 10px 0; /*background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,.05);*/}
  2076. .app-details .details-bottom table{width: 100%; table-layout: fixed;}
  2077. .app-details .details-bottom table th{font-weight: normal; padding: 20px 10px 10px 0; color: #333; white-space: nowrap; vertical-align: middle;}
  2078. .app-details .details-bottom table th .th-line{border-left: 4px solid #157df1; height: 22px; line-height: 22px; display: inline-block; padding-left: 10px;}
  2079. .app-details .details-bottom table th .icon-prompt{position: relative; margin-left: 3px; top: -3px;}
  2080. .app-details .details-bottom table th .icon-prompt1{position: relative; margin-left: 0px; top: 0;}
  2081. .app-details .details-bottom table th .icon-prompt .popover1-content{width: 210px; font-size: 12px;}
  2082. .app-details .details-bottom table th .icon-prompt1 .popover1-content{width: 220px; font-size: 12px; white-space: normal;}
  2083. .app-details .details-bottom table td{padding: 10px 0 10px 15px; vertical-align: top; white-space: nowrap; color: #999;}
  2084. .app-details .details-bottom .d-table-wrap{position: relative;}
  2085. .app-details .details-bottom .points-line{position: absolute; left: 50%; height: calc(100% - 20px); width: 1px; background-color: #e5e5e5; top: 50%; transform: translateY(-50%);}
  2086. .app-details .details-bottom .points-line-l{left: 33.33%;}
  2087. .app-details .details-bottom .points-line-r{right: 33.33%; left: auto;}
  2088. .app-details .details-bottom .points-line-wrap .points-line-3:nth-of-type(1){left: 25%;}
  2089. .app-details .details-bottom .points-line-wrap .points-line-3:nth-of-type(2){left: 50%;}
  2090. .app-details .details-bottom .points-line-wrap .points-line-3:nth-of-type(3){left: 75%;}
  2091. .app-details .bundle-length{max-width: 200px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: inline-block;}
  2092. .app-details .details-bottom .d-table-wrap .test-download{}
  2093. .app-details .details-bottom .d-table-wrap .link{max-width: 170px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: inline-block;}
  2094. /*.app-details .details-bottom .d-table-wrap .test-download img{margin: 0 5px;}*/
  2095. .app-details .details-bottom .d-table-wrap .more{color: #157df1;}
  2096. .app-details .details-bottom .d-table-wrap .more:hover{text-decoration: underline;}
  2097. .app-details .details-bottom .d-table-wrap .private-equipment-wrap{display: inline-block;}
  2098. .app-details .details-bottom .d-table-wrap .private-equipment{max-width: 170px; width: auto;}
  2099. .app-details2 .bundle-length1{max-width: 255px !important;}
  2100. .app-details2 .bundle-length2{max-width: 292px !important;}
  2101. .app-details2 .bundle-length3{max-width: 310px !important;}
  2102. /*下载明细*/
  2103. .download-details{background-color: #fff; padding: 20px; min-height: 360px;}
  2104. .download-details .date{float: left; width: 140px; position: relative;}
  2105. .download-details .date1{margin-right: 10px;}
  2106. .download-details .date2{margin-right: 20px;}
  2107. .download-details .date input{position: relative; z-index: 1; background-color: transparent; cursor: pointer;}
  2108. .download-details .date .icon-date{color: #aaa; position: absolute; right: 10px; top: 4px; z-index: 0;}
  2109. .download-details .date:hover .icon-date{color: #157df1;}
  2110. .download-details .d-top{margin-bottom: 15px;}
  2111. .download-details .d-top .form-control{height: 30px;}
  2112. .download-details .d-top .line{margin-right: 10px; color: #aaa;}
  2113. .download-details .d-top .query{font-size: 13px; padding: 5px 12px;}
  2114. .download-details .d-top .num{line-height: 34px; margin-left: 30px; color: #333; font-size: 13px;}
  2115. .download-details .d-top .num i{color: #157df1;}
  2116. .download-details .table{border: 1px solid #e5e5e5; table-layout: fixed;}
  2117. .download-details .table tr th{border-top-color: #e5e5e5 !important; height: 50px; vertical-align: middle; text-align: center; background-color: #f5f6f7; font-weight: 600; font-size: 12px; color: #333;}
  2118. .download-details .table tr td{border-top-color: #e5e5e5 !important; height: 50px; vertical-align: middle; text-align: center; font-size: 12px; color: #666;}
  2119. .download-details .table tr:hover{background: #ebf7ff;}
  2120. .download-details .no{text-align: center; margin-top: 100px;}
  2121. /*/下载明细*/
  2122. /*详情页 签名*/
  2123. .app-details .d-signature{/*background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,.05);*/ padding: 30px 20px; position: relative;}
  2124. .app-details .d-signature dl{color: #333;}
  2125. .app-details .d-signature dl dd{color: #666;}
  2126. .app-details .d-signature dl dd span{color: #157df1; position: relative; top: -1px; margin-right: 3px;}
  2127. .app-details .d-signature .signature-link{position: absolute; right: 30px; top: 50%; padding: 6px 21px; border-radius: 20px; transform: translateY(-50%);}
  2128. /*/详情页 签名*/
  2129. .release-app2 .aside-right .version-history-table td{position: relative; height: 50px; border-color: #e5e5e5;}
  2130. .release-app2 .aside-right .version-history-table td .angle{position: absolute; left: 0; top: 0;}
  2131. /*
  2132. .release-app2 .aside-right .app-details .downloads{padding: 10px 0; background-color: #fff; margin-bottom: 20px; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  2133. .release-app2 .aside-right .app-details .downloads li{float: left; width: 50%; height: 70px; line-height: 70px; padding-left: 20px; color: #333;}
  2134. .release-app2 .aside-right .app-details .downloads li .d-left{background-color: #7fb8f7; width: 45px; height: 45px; display: flex; justify-content: center; align-items: center; color: #fff; margin-top: 13px;}
  2135. .release-app2 .aside-right .app-details .downloads li .d-left .iconfont{font-size: 20px;}
  2136. .release-app2 .aside-right .app-details .downloads li .d-text{margin-left: 10px;}
  2137. .release-app2 .aside-right .app-details .downloads li .d-num{margin-left: 15px; font-size: 16px;}
  2138. .release-app2 .aside-right .app-details .downloads li:first-of-type{border-right: 1px solid #e5e5e5;}
  2139. .release-app2 .aside-right .app-details .downloads li:last-of-type .d-left{background-color: #a59bf6;}
  2140. */
  2141. .release-app2 .aside-right .app-details .details-bottom .ellipsis-wrap{position: relative;}
  2142. .release-app2 .aside-right .app-details .details-bottom .ellipsis-wrap .popover{max-width: 410px; width: 410px; top: 15px; font-size: 14px;}
  2143. .release-app2 .aside-right .app-details .details-bottom .ellipsis-wrap .popover .popover-content span{color: #157df1; margin-left: 10px; cursor: pointer;}
  2144. .release-app2 .aside-right .app-details .details-bottom .ellipsis-wrap .ellipsis{width: 80%;}
  2145. .release-app2 .aside-right .app-details .details-bottom .ellipsis-wrap .popover.bottom>.arrow{left: 25px;}
  2146. .release-app2 .aside-right .app-details .details-bottom .ellipsis-wrap:hover .popover{display: block;}
  2147. .release-app2 .app-details .app-set{box-shadow: 0 0 5px rgba(0,0,0,.05); background-color: #fff; margin-top: 20px; padding-bottom: 15px; min-height: 360px;}
  2148. .release-app2 .app-details .app-set .tab{background-color: #f2f2f5; height: 44px; line-height: 44px; border-bottom: 1px solid #e5e5e5;}
  2149. .release-app2 .app-details .app-set .tab li{float: left; padding: 0 20px; cursor: pointer; color: #333;}
  2150. .release-app2 .app-details .app-set .tab li.active{background-color: #fff; border-right: 1px solid #e5e5e5; border-left: 1px solid #e5e5e5; margin-left: -1px; color: #157df1;}
  2151. .release-app2 .app-details .app-set .tab-con{margin-top: 30px;}
  2152. .release-app2 .app-details .app-set .col-sm-1{width: 13%;}
  2153. .release-app2 .app-details .app-set .tab-con label{color: #333;}
  2154. .release-app2 .app-details .app-set .tab-con .form-control{color: #333;}
  2155. .release-app2 .app-details .app-set .tab-con>div{display: none;}
  2156. .release-app2 .app-details .app-set .tab-con .form-group{margin-bottom: 30px;}
  2157. .release-app2 .app-details .app-set .trust{margin-top: 7px; font-size: 12px;}
  2158. .release-app2 .app-details .app-set .trust li{float: left; margin-right: 50px; margin-top: 2px; cursor: pointer; color: #333;}
  2159. .release-app2 .app-details .app-set .trust li .icon-radio{margin-right: 8px; top: 0;}
  2160. .release-app2 .app-details .app-set .download-way{margin-top: 7px; font-size: 12px;}
  2161. .release-app2 .app-details .app-set .download-way li{float: left; margin-right: 50px; cursor: pointer; color: #333; font-size: 14px;}
  2162. .release-app2 .app-details .app-set .download-way li .icon-radio{margin-right: 8px; top: 2px;}
  2163. .release-app2 .app-details .app-set .short-link>.col-sm-6>.col-sm-6{padding-left: 0; padding-right: 0;}
  2164. .release-app2 .app-details .app-set .short-link .form-control{border-radius: 0 4px 4px 0; border-left: none;}
  2165. .release-app2 .app-details .app-set .short-link .link{padding: 6px 12px !important; height: 34px; background-color: #f2f2f5; border: 1px solid #e5e5e5; border-radius: 4px 0 0 4px; color: #333;}
  2166. .release-app2 .app-details .app-set .language .control-label{padding-top: 0;}
  2167. .release-app2 .app-details .app-set .language .radio-round{color: #333;}
  2168. .release-app2 .app-screenshots .example-image-link{position: relative; margin-right: 20px; float: left; border: 1px solid #e5e5e5;}
  2169. .release-app2 .app-screenshots .example-image-link .icon{position: absolute; color: #ff6565; right: -8px; top: -8px; right: 0\9; top: 0\9;}
  2170. .release-app2 .app-screenshots a{width: 90px\9; height: 160px\9; overflow: hidden\9;} /*\9为ie9以上,除ie11*/
  2171. .release-app2 .app-screenshots a img{max-width: 90px; max-height: 160px; width: 90px\9; height: 160px\9;}
  2172. .release-app2 .upload-screenshots{position: relative; border: 1px solid #e5e5e5; height: 80px; width: 80px; border-radius: 5px; background: url("../img/icon-10.png") no-repeat center 20px; overflow: hidden; /*margin-left: 15px;*/}
  2173. .release-app2 .upload-screenshots .thumbnail-s{position: absolute; left: 0; top: 0; z-index: 2; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  2174. .release-app2 .upload-screenshots .text{text-align: center; margin-top: 55px; font-size: 12px;}
  2175. .upload-icon-common{position: relative; border: 1px solid #e5e5e5; height: 80px; width: 80px; border-radius: 15px; background: url("../img/icon-10.png") no-repeat center 20px; overflow: hidden; /*margin-left: 15px;*/}
  2176. .upload-icon-common img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: 15px; background-color: #fff;}
  2177. .upload-icon-common .thumbnail{position: absolute; left: 0; top: 0; z-index: 2; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  2178. .upload-icon-common .text{text-align: center; margin-top: 55px; font-size: 12px;}
  2179. .release-app2 .app-details .app-set .img-note{font-size: 12px; display: flex; align-items: flex-end; height: 90px; margin-left: 10px;}
  2180. .upload-icon-common .reset{position: absolute; left: 0; bottom: 0; height: 24px; line-height: 24px; background: rgba(0,0,0,.6); width: 100%; color: #fff; text-align: center; font-size: 12px; display: none;}
  2181. .upload-icon-common.uploaded .reset{display: none;}
  2182. .upload-icon-common.uploaded:hover .reset{display: block;}
  2183. .release-app2 .aside-right .app-set .basic input::-webkit-input-placeholder{color: #333 !important;}
  2184. .release-app2 .aside-right .app-set .basic input::-moz-placeholder{color: #333 !important;}
  2185. .release-app2 .aside-right .app-set .basic input::-ms-input-placeholder{color: #333 !important;}
  2186. .release-app2 .aside-right .app-set .download-template ul li{float: left; margin-right: 30px; text-align: center; margin-bottom: 20px;}
  2187. .release-app2 .aside-right .app-set .download-template .t-checked-wrap{width: 125px; height: 155px; position: relative; border: 1px solid #e5e5e5; overflow: hidden; margin-bottom: 10px; cursor: pointer;}
  2188. .release-app2 .aside-right .app-set .download-template .text{color: #157df1;}
  2189. .release-app2 .aside-right .app-set .download-template .t-checked-wrap .t-checked{position: absolute; left: 0; top: 0; background-color: rgba(0,0,0,.6); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; display: none;}
  2190. .release-app2 .aside-right .app-set .download-template .t-checked-wrap .t-checked .iconfont{color: #fff; font-size: 32px;}
  2191. .release-app2 .upload-file{padding: 0; padding-top: 0; margin-top: 0;}
  2192. .release-app2 .warn-prompt{margin-top: 0;}
  2193. .release-app2 .tag-box{padding: 0 !important; height: 404px !important;}
  2194. .release-app2 .qq-upload-button-selector{margin-top: 180px !important; margin-bottom: 0;}
  2195. .release-app2 .tag-box-v5{border: none; margin-top: 0;}
  2196. /*侧栏增加大包上传入口*/
  2197. .big-bag-upload{margin-bottom: 40px; display: block;}
  2198. .big-bag .aside-left{height: 500px; margin-bottom: 40px;}
  2199. .big-bag aside.aside-left ul li a .iconfont{margin-right: 10px; color: #fd9817;}
  2200. .big-bag aside.aside-left ul li.active a{background-color: #fff4e7; border-color: #fd9817; color: #fd9817;}
  2201. .big-bag aside.aside-left ul li.active a .iconfont{color: #fd9817;}
  2202. .big-bag aside.aside-left ul li.active a .icon-upload1{font-size: 18px;}
  2203. .big-bag aside.aside-left ul li:hover a{background-color: #fff4e7; border-color: #fd9817; color: #fd9817;}
  2204. .big-bag aside.aside-left ul li:hover a .iconfont{color: #fd9817;}
  2205. .big-bag .upload-file .upload-btn .iconfont{}
  2206. .big-bag .upload-file .upload-btn{background-color: #fd9817; border-color: #fd9817;}
  2207. .big-bag .aside-right .a-top .app-icon li.active{background-color: #fd9817;}
  2208. .big-bag .aside-right .search .btn-search{color: #fd9817;}
  2209. .big-bag .ms-btn-primary.btn-new-release{background-color: #fd9817; border-color: #fd9817;}
  2210. /*大包立即购买按钮*/
  2211. .upload-file .upload-buy{width: 240px; padding: 0; height: 60px; font-size: 18px; line-height: 58px; margin: 0 auto; display: block; position: relative; background-color: #fd9817; border-color: #fd9817;}
  2212. .upload-file .upload-buy .iconfont{font-size: 24px; margin-right: 5px; position: relative; top: 1px;}
  2213. .details-upload-new-version{background-color: #157df1; color: #fff; border-radius: 25px; padding: 10px 20px; height: 50px; align-items: center; box-shadow: 0 5px 10px rgba(202,225,252,.5);}
  2214. .details-upload-new-version:hover{background-color: #348dee; color: #fff;}
  2215. .details-upload-new-version:focus{background-color: #348dee; color: #fff;}
  2216. .details-upload-new-version .iconfont{margin-right: 10px;}
  2217. .details-upload-new-version .icon-upload1{font-size: 20px; position: relative; top: 2px;}
  2218. .details-upload-new-version .icon-upload1+.text{position: relative; top: -1px;}
  2219. .details-upload-new-version .icon-xiazai{font-size: 24px; margin-right: 5px; position: relative; top: -3px;}
  2220. .details-upload-new-version .icon-xiazai+.text{position: relative; top: -6px;}
  2221. .details-preview{width: 50px; height: 50px; padding: 0; text-align: center; line-height: 50px; border-radius: 50%; border: 1px solid #1a80f1; color: #1a80f1;}
  2222. .details-preview:focus{background-color: transparent; color: #1a80f1;}
  2223. .details-preview:hover{background-color: #1a80f1; color: #fff;}
  2224. .details-preview:focus:hover{background-color: #1a80f1; color: #fff;}
  2225. .details-merge{width: 50px; height: 50px; padding: 0; text-align: center; border-radius: 50%; border: 1px solid #ee635d; color: #ee635d; white-space: normal; padding: 0 5px; line-height: 14px;}
  2226. .details-merge.details-renewal{line-height: 50px;}
  2227. .details-merge:focus{background-color: transparent;}
  2228. .details-merge:hover{background-color: #ee635d; color: #fff;}
  2229. .details-merge.btn-success:focus{border-color: #ee635d; color: #ee635d; background-color: transparent;}
  2230. .details-merge.btn-success:hover{border-color: #ee635d;}
  2231. /*----------/应用发布 改版----------*/
  2232. /*----------应用发布 改版2019/1/22----------*/
  2233. .app-details2{background-color: #fff; min-height: 450px;}
  2234. .app-details2 .details-top{background-color: transparent; box-shadow: none; margin-bottom: 0;}
  2235. .app-details2 .details-top .d-right{margin-top: 5px;}
  2236. .app-details2 .app-information{padding: 0 20px;}
  2237. .app-details2 .app-information .more-wrap{position: relative;}
  2238. .app-details2 .app-information .more-wrap img{width: 50px; height: 50px; position: absolute; left: 90px; top: -30px; transition: all 500ms; background-color: #fff;}
  2239. .app-details2 .app-information .test-download2 img{left: 175px; top: -35px;}
  2240. .app-details2 .app-information .more-wrap img:hover{width: 125px; height: 125px; position: absolute; left: 70px; top: -80px;}
  2241. .app-details2 .app-information .test-download2 img:hover{position: absolute; left: 150px; top: -80px;}
  2242. .app-details2 .table-list{padding: 25px 20px 30px;}
  2243. .app-details2 .version-tit{color: #333; font-size: 16px; margin-bottom: 15px;}
  2244. .app-details2 .version-tit .iconfont{font-size: 18px; margin-right: 5px; position: relative; top: 1px;}
  2245. .app-details2 .version-history-table .bundle-length{max-width: 150px; display: inline-block; position: relative; top: 3px;}
  2246. .app-details2 .version-history-table td .iconfont{font-size: 24px; margin-left: 8px;}
  2247. .app-details2 .version-history-table td .icon-shanchu:hover{color: #fd641d;}
  2248. .app-details2 .version-history-table tr:hover td{background-color: #ebf7ff;}
  2249. .app-details2 .icon-prompt1{font-size: 14px; color: #999; position: relative; margin-left: 3px;}
  2250. .app-details2 .upload-icon-common{width: 60px; height: 60px; border-radius: 12px;}
  2251. .app-details2 .countdown-btn{border-radius: 30px; height: 50px; padding: 0 20px; line-height: 48px; color: #fd641d; background-color: #e8e8e8; border-color: #e8e8e8;}
  2252. .app-details .details-bottom{padding: 5px 0 15px;}
  2253. .app-details2 .d-table-wrap table td{padding: 0 0 0 15px;}
  2254. .app-details .d-table-wrap table th{padding: 20px 0 2px 0;}
  2255. .app-details2 .details-top .information{width: 60%;}
  2256. .app-details2 .copy.top-5{font-size: 12px;}
  2257. #app_setting_form .app-details2{background-color: transparent;}
  2258. #app_setting_form .app-details2 .details-top{background-color: #fff;}
  2259. #updateModal .modal-header h4{color: #333;}
  2260. #updateModal .modal-header .close{color: #333; font-size: 26px; opacity: 1;}
  2261. #updateModal .modal-body{padding: 25px 10px 25px 0;}
  2262. #updateModal .app-details-update{color: #333;}
  2263. #updateModal .app-details-update .form-group{margin-bottom: 25px;}
  2264. #updateModal .app-details-update .form-group:last-of-type{margin-bottom: 0;}
  2265. #updateModal .app-details-update .control-label{text-align: right; padding-right: 10px;}
  2266. #updateModal .app-details-update ul li{margin-right: 25px; cursor: pointer;}
  2267. #updateModal .app-details-update ul li .icon-radio{position: relative; top: 2px;}
  2268. /*
  2269. #updateModal .app-details-update dl dt{margin-right: 25px; margin-bottom: 25px;}
  2270. #updateModal .app-details-update dl dd{margin-right: 25px; cursor: pointer;}
  2271. #updateModal .app-details-update dl dd .icon-radio{position: relative; top: 2px;}
  2272. #updateModal .app-details-update dl dd textarea{}
  2273. */
  2274. .app-details2 .no-flash-back-js{padding: 25px 20px 30px;}
  2275. .app-details2 .no-flash-back-js .tit{color: #333; margin-bottom: 8px;}
  2276. .app-details2 .no-flash-back-js .tit a{color: #157df1;}
  2277. .app-details2 .no-flash-back-js pre{background-color: #fff; border-radius: 0; border-color: #eee; padding: 5px; color: #666;}
  2278. .app-details2 .no-flash-back-js #copy1{margin-bottom: 8px;}
  2279. .app-details2 .no-flash-back-js .color-danger{margin-bottom: 15px; font-size: 12px;}
  2280. .app-details2 .no-flash-back-js .copy{margin-left: 0; color: #fff; margin-bottom: 20px;}
  2281. .app-details2 .no-flash-back-js .tit1{color: #333; margin-bottom: 3px;}
  2282. .app-details2 .no-flash-back-js p{line-height: 1.8;}
  2283. /*----------/应用发布 改版2019/1/22----------*/
  2284. /*----------推广页----------*/
  2285. /*nav*/
  2286. .promote-nav .logo img{width: 138px; height: 60px;}
  2287. .promote-nav{padding: 2px 0;}
  2288. .promote-nav ul{margin: 16px 0 0 20px;}
  2289. .promote-nav ul li{float: left; margin: 0 15px;}
  2290. .promote-nav ul li:last-of-type{margin-right: 0;}
  2291. .promote-nav ul li a{padding: 0 10px 5px; border-bottom: 2px solid transparent; color: #333;}
  2292. .promote-nav ul li.active a{border-bottom-color: #157df1; color: #157df1;}
  2293. .promote-nav ul li:hover a{border-bottom-color: #157df1;}
  2294. /*footer*/
  2295. .promote-footer-wrap{border-top: 1px solid #e5e5e5; padding: 50px 0;}
  2296. .promote-footer{color: #333; padding: 0 60px;}
  2297. .promote-footer .p-con dl dt{font-size: 14px; margin-bottom: 12px; margin-top: 10px;}
  2298. .promote-footer .p-con dl dd{font-size: 12px; margin-bottom: 12px;}
  2299. .promote-footer .p-con dl dd a{color: #333;}
  2300. .promote-footer .p-con .f-logo{margin-left: 270px; margin-top: 30px;}
  2301. .promote-footer .p-con .promote-code{text-align: center;}
  2302. .promote-footer .p-con .promote-code .img-wrap{width: 115px; height: 115px; border: 1px solid #e5e5e5;}
  2303. .promote-footer .p-con .promote-code p{margin-top: 5px;}
  2304. .promote-footer>p{text-align: center; margin-top: 40px;}
  2305. /*签名*/
  2306. /*banner*/
  2307. .promote-signature-banner{height: 430px; background: url("../img/tg-banner-1.jpg") no-repeat center;}
  2308. .signature-banner1{color: #fff;}
  2309. .signature-banner1 .s-left{padding: 90px 0 0 90px;}
  2310. .signature-banner1 h1{font-size: 40px; font-weight: 600;}
  2311. .signature-banner1 h5{font-size: 20px; margin-top: 15px;}
  2312. .signature-banner1 ul{margin-top: 25px;}
  2313. .signature-banner1 ul li{float: left; margin-right: 35px; font-size: 15px;}
  2314. .signature-banner1 ul li .iconfont{font-size: 14px; position: relative; top: -1px; margin-right: 5px;}
  2315. .signature-banner1 .s-left .ms-btn{width: 110px; border-color: #fff; color: #fff; margin-top: 35px;}
  2316. /*/banner*/
  2317. .signature-list{padding: 60px 0;}
  2318. .signature-list .row .col-sm-3:nth-of-type(n+5){margin-top: 35px;}
  2319. .promote-thumbnail{text-align: center;}
  2320. .promote-thumbnail h4{color: #333; font-size: 18px; margin-top: 20px; margin-bottom: 5px;}
  2321. .promote-thumbnail .img-wrap{height: 59px; display: flex; align-items: flex-end;}
  2322. .promote-thumbnail img{margin: 0 auto;}
  2323. .promote-thumbnail .blue-line{margin: 0 auto 15px; width: 30px;}
  2324. .promote-thumbnail p{line-height: 24px; height: 48px; color: #333; font-size: 13px;}
  2325. .solve-certificate-wrap{background-color: #f7f8fc; padding: 70px 0;}
  2326. .solve-certificate h1{text-align: center; color: #333; font-size: 32px; margin-bottom: 20px;}
  2327. .solve-certificate img.fr{margin-right: 30px;}
  2328. .promote-common{padding: 70px 0; text-align: center;}
  2329. .promote-common .blue-line{margin: 0 auto 20px;}
  2330. .promote-common h1{font-size: 32px; color: #333; margin-bottom: 8px;}
  2331. .promote-common h3{font-size: 16px; color: #666; margin-bottom: 55px;}
  2332. .how-operate-wrap{background: url("../img/promote-bg-1.jpg") no-repeat center; height: 378px;}
  2333. .how-operate h1{margin-top: 60px;}
  2334. .how-operate h3{margin-bottom: 45px;}
  2335. .how-operate .ms-btn-secondary{padding: 9px; width: 100px;}
  2336. .signature-process1 ul{padding-left: 125px;}
  2337. .signature-process1 ul li{float: left; text-align: center; padding: 0 40px;}
  2338. .signature-process1 ul li:nth-of-type(even){background: url("../img/promote-icon-23.png") no-repeat center; width: 61px; height: 85px;}
  2339. .signature-process1 ul li .img-wrap{height: 85px; display: flex; align-items: center; justify-content: center;}
  2340. .signature-process1 ul li .tit1{font-size: 16px; color: #333; font-weight: 600; margin-top: 25px;}
  2341. /*/签名*/
  2342. /*内测分发*/
  2343. .promote-distribution-banner{background: url("../img/promote-banner-1.jpg") no-repeat center; height: 430px;}
  2344. .distribution-banner1 img{margin-left: 120px; margin-top: 55px;}
  2345. .distribution-banner1 .d-right{color: #fff;}
  2346. .distribution-banner1 .d-right{margin-left: 80px;}
  2347. .distribution-banner1 .d-right h1{font-size: 40px; margin-top: 110px; margin-bottom: 15px;}
  2348. .distribution-banner1 .d-right .p1{font-size: 16px; line-height: 30px;}
  2349. .distribution-banner1 .d-right .p1 span{font-size: 20px;}
  2350. .distribution-banner1 .d-right .ms-btn{width: 110px; border-color: #fff; color: #fff; margin-top: 35px;}
  2351. .distribution-list{padding: 70px 0;}
  2352. .distribution-list .promote-thumbnail .blue-line{margin-bottom: 5px;}
  2353. .provide-services-wrap{background: url("../img/tg-37.jpg") no-repeat center; height: 340px; padding: 60px 0;}
  2354. .provide-services{padding: 0;}
  2355. .provide-services h1{color: #fff;}
  2356. .provide-services .blue-line{margin-bottom: 40px;}
  2357. .provide-services .row{margin: 0 -10px;}
  2358. .provide-services .row .col-sm-4{padding: 0 10px;}
  2359. .provide-services .p-con{background-color: #fff; border-radius: 5px; padding: 20px 0 20px 15px;}
  2360. .provide-services .p-con .p-text{width: 71%; text-align: left; padding-left: 10px;}
  2361. .provide-services .p-con .p-text dt{color: #333; font-size: 18px; font-weight: 600;}
  2362. .provide-services .p-con .p-text dt span{font-size: 12px; height: 60px;}
  2363. .provide-services .p-con .p-text dd{color: #333; margin-top: 5px;}
  2364. .web-encapsulation .promote-thumbnail .img-wrap{height: 51px; display: flex; align-items: flex-end; justify-content: center;}
  2365. .web-encapsulation .w-list{padding: 0 140px;}
  2366. .web-encapsulation .w-list .row .col-sm-3:nth-of-type(n+5){margin-top: 65px;}
  2367. .web-encapsulation .promote-common h3{margin-bottom: 45px;}
  2368. .promote-signature-wrap{background: url("../img/tg-29.jpg") no-repeat center; height: 700px;}
  2369. .promote-signature h1{font-size: 32px; color: #fff; text-align: center; margin-top: 55px;}
  2370. .promote-signature h3{font-size: 16px; color: #fff; text-align: center; margin-top: 15px; margin-bottom: 50px;}
  2371. .promote-signature .text li{background: url("../img/promote-bg-3.png") no-repeat; width: 263px; height: 79px; float: left; margin-right: 125px; padding: 0 15px; color: #fff; padding-top: 7px;}
  2372. .promote-signature .text li:last-of-type{margin-right: 0;}
  2373. .promote-signature .text li dt{font-size: 18px; font-weight: 600; font-family: "Microsoft YaHei UI Light";}
  2374. .promote-signature .text li dd{font-size: 12px; margin-top: 3px;}
  2375. /*/内测分发*/
  2376. /*封装*/
  2377. .promote-encapsulation-banner{background: url("../img/promote-banner-2.jpg") no-repeat center; height: 430px;}
  2378. .encapsulation-banner1 h1{text-align: center; font-size: 40px; color: #fff; font-weight: 600; margin-top: 90px;}
  2379. .encapsulation-banner1 h5{text-align: center; font-size: 18px; color: #fff; line-height: 30px; margin-top: 15px;}
  2380. .encapsulation-banner1 .ms-btn{color: #6c4409; background-color: #ffec06; font-size: 16px; font-weight: 600; width: 110px; margin-top: 25px;}
  2381. .encapsulation-banner1 img{margin: 45px auto 0;}
  2382. .encapsulation-banner1 ol{margin-left: 55px;}
  2383. .encapsulation-banner1 ol li{float: left; text-align: center; padding: 0 20px;}
  2384. .encapsulation-banner1 ol li .e-text{color: #333; font-size: 12px; font-weight: 600; margin-top: 5px;}
  2385. .feature-plugin h1{color: #333; font-size: 32px; text-align: center;}
  2386. .feature-plugin .blue-line{margin: 10px auto 0;}
  2387. .feature-plugin .f-list{padding: 0 120px; margin-top: 35px;}
  2388. .feature-plugin .f-list .promote-thumbnail .img-wrap{height: 51px; display: flex; align-items: flex-end;}
  2389. .feature-plugin .f-list li{float: left; width: 20%; position: relative; padding-bottom: 25px; cursor: pointer;}
  2390. .feature-plugin .f-list li .icon-arrow-top2{position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); font-size: 30px; color: #68a4e8; display: none;}
  2391. .feature-tab-wrap{background: url("../img/promote-bg-4.jpg") no-repeat center; height: 460px;}
  2392. .feature-tab img{display: none; margin: 50px auto 0;}
  2393. .our-advantages img{margin: 40px auto 0;}
  2394. .price-introduced-wrap{background-color: #f7f8fc;}
  2395. .price-introduced .promote-common .blue-line{margin-bottom: 40px;}
  2396. .price-introduced .table{background-color: #fff; table-layout: fixed; margin-bottom: 0;}
  2397. .price-introduced .table tr th{background-color: #157df1; padding: 20px; color: #fff; text-align: center; font-size: 18px;}
  2398. .price-introduced .table tr td{padding: 20px; color: #333; text-align: center; vertical-align: middle; font-size: 16px;}
  2399. .price-introduced .table tr td .text1{text-align: left; display: inline-block;}
  2400. .price-introduced .table tr td .text{font-size: 24px; position: relative; display: inline-block;}
  2401. .price-introduced .table tr td .text span{position: absolute; top: -5px; left: calc(100% + 2px); background: #ffcd20 url("../img/promote-arrrow.jpg") no-repeat left center; padding: 0 5px 0 15px; height: 17px; font-size: 12px; white-space: nowrap;}
  2402. .good-case .promote-common{padding-left: 120px; padding-right: 120px;}
  2403. .good-case .g-con{box-shadow: 0 7px 20px rgba(21,125,241,.2); padding-top: .1px;}
  2404. .good-case .g-con .tab-list{padding-left: 200px; margin-top: 40px;}
  2405. .good-case .g-con .tab-list li{float: left; height: 28px; line-height: 28px; padding: 0 15px; border-radius: 15px; font-size: 16px; margin-right: 90px; cursor: pointer; color: #333;}
  2406. .good-case .g-con .tab-list li.active{background-color: #157df1; color: #fff;}
  2407. .good-case .tab-con{padding: 30px 125px 45px;}
  2408. .good-case .tab-con ul{display: none;}
  2409. .good-case .tab-con ul li{float: left; margin-right: 40px;}
  2410. .good-case .tab-con ul li:last-of-type{margin-right: 0;}
  2411. .package-number{color: #fff; background: url("../img/promote-bg-6.jpg") no-repeat center; height: 100px; line-height: 100px; font-size: 24px; text-align: center;}
  2412. .package-number span{font-size: 36px;}
  2413. .encapsulation-process ul{margin-left: 70px; margin-top: 40px;}
  2414. .encapsulation-process ul li{float: left; text-align: left; padding: 15px 15px 0;}
  2415. .encapsulation-process ul li:nth-of-type(odd){width: 180px; height: 155px; box-shadow: 0 0 20px rgba(21,125,241,.2);}
  2416. .encapsulation-process ul li:nth-of-type(even){height: 155px; width: 110px; background: url("../img/promote-icon-23.png") no-repeat center;}
  2417. .encapsulation-process ul li dt{font-size: 18px; color: #333; font-weight: 600;}
  2418. .encapsulation-process ul li dd{font-size: 16px; color: #333; margin-top: 10px;}
  2419. .promote-function-of{padding-top: 0; padding-bottom: 60px;}
  2420. .promote-function-of .tit{margin-bottom: 8px; color: #333; font-size: 32px;}
  2421. .promote-blue-line{margin: 0 auto 20px; width: 35px; height: 2px; background-color: #157df1;}
  2422. .promote-function-of .promote-blue-line{margin-bottom: 30px;}
  2423. .promote-function-of ul li .text{color: #333; font-size: 16px;}
  2424. .promote-our-advantages-wrap{background-color: #f7f8fc;}
  2425. .promote-meal{padding: 70px 0 0;}
  2426. .promote-meal>h1{color: #333; margin-bottom: 8px; text-align: center; font-size: 32px;}
  2427. .promote-meal>p{color: #666; font-size: 16px; margin-bottom: 40px; text-align: center;}
  2428. .promote-meal .table{table-layout: fixed; box-shadow: 0 0 10px rgba(0,0,0,.1); margin-bottom: 0;}
  2429. .promote-meal .table th{text-align: center; height: 50px; color: #333; border-top: none; position: relative; vertical-align: middle; border-left: 1px solid #ddd; font-weight: 600; font-size: 15px; background-color: #f5f6f7;}
  2430. .promote-meal .table td{text-align: center; border: 1px solid #ddd; height: 50px; color: #333; vertical-align: middle;}
  2431. .promote-meal .table th:first-of-type{border-left-color: transparent;}
  2432. .promote-meal .table th:last-of-type{border-right-color: transparent;}
  2433. .promote-meal .table td:first-of-type{border-left-color: transparent;}
  2434. .promote-meal .table td:last-of-type{border-right-color: transparent;}
  2435. .promote-meal .table tr:last-of-type td{border-bottom: none;}
  2436. .promote-meal .table tr:nth-of-type(odd) td{background-color: transparent;}
  2437. .promote-meal .table .recommend-wrap1{position: relative;}
  2438. .promote-meal .table .recommend-wrap1 .recommended{position: absolute; top: -9px; background: url("../img/price-tip1.png") no-repeat; width: 32px; height: 22px; color: #fff; font-size: 12px; line-height: 20px; background-size: contain; font-weight: normal;}
  2439. .promote-meal .table .recommend-wrap1 .recommended{background: url("../img/price-tip2.png") no-repeat; width: 60px; height: 22px; background-size: contain; font-size: 12px; line-height: 22px; font-weight: normal;}
  2440. .promote-meal .table td .num{font-size: 18px;}
  2441. .promote-pack-meal{padding-top: 0; padding-bottom: 70px;}
  2442. .promote-pack-meal .table .basis-pack{background: url("../img/tg-1.jpg") no-repeat center; height: 50px; color: #fff;}
  2443. .promote-pack-meal .table .senior-pack{background: url("../img/tg-2.jpg") no-repeat center; height: 50px; color: #fff;}
  2444. .promote-sign-meal{padding-top: 0; padding-bottom: 70px;}
  2445. .promote-sign-meal .table .recommend-wrap1 .recommended{position: absolute; top: -9px; background: url("../img/price-tip1.png") no-repeat; width: 32px; height: 22px; color: #fff; font-size: 12px; line-height: 20px; background-size: contain; font-weight: normal;}
  2446. .promote-sign-meal .table .basis-sign{background: url("../img/tg-3.jpg") no-repeat center; height: 50px; color: #fff;}
  2447. .promote-sign-meal .table .senior-sign{background: url("../img/tg-4.jpg") no-repeat center; height: 50px; color: #fff;}
  2448. .promote-sign-meal .table .independent-sign{background: url("../img/tg-5.jpg") no-repeat center; height: 50px; color: #fff;}
  2449. .promote-meal .blue-line{margin: 0 auto 20px;}
  2450. /*/封装*/
  2451. .promote-help{padding-bottom: 45px;}
  2452. .promote-help h1{text-align: center; color: #333; font-size: 32px; margin-bottom: 8px;}
  2453. .promote-help .promote-blue-line{margin-bottom: 30px;}
  2454. /*---------- /推广页----------*/
  2455. /*----------分发落地页----------*/
  2456. .template-common .form-control{height: 40px;}
  2457. .passwords .template-common{padding: 0 320px;}
  2458. .template-common{padding: 0 235px;}
  2459. .template-common hr{border-top-color: #e5e5e5; margin-top: 25px; display: none;}
  2460. .template-common .t-icon{background-color: #fff; width: 180px; height: 180px; border-radius: 25px; box-shadow: 0 0 10px rgba(0,0,0,.2); display: flex; align-items: center; margin: 0 auto;}
  2461. .template-common .t-icon img{width: 120px; height: 120px; border-radius: 30px; border: 1px solid #e5e5e5; margin: 0 auto;}
  2462. .template-common .template-btn-wrap{text-align: center;}
  2463. .template-common .template-btn{color: #fff; background-color: #157df1; height: 50px; padding: 0 38px; line-height: 48px; font-size: 18px; margin: 35px auto 15px; display: inline-block;}
  2464. .template-common .decoding{color: #fff; background-color: #157df1; height: 50px; padding: 0; width: 180px; text-align: center; line-height: 48px; font-size: 18px; margin: 30px auto 20px; display: block;}
  2465. .template-common .template-btn span:last-of-type{line-height: 50px;}
  2466. .template-common .template-btn .iconfont{font-size: 36px; margin-left: -5px;}
  2467. .template-common .t-apply{color: #666; text-align: center;}
  2468. .template-common .t-code{color: #666; width: 200px; overflow: hidden; margin: 35px auto 0; text-align: center;}
  2469. .template-common .t-code img{border: 1px solid #e5e5e5; width: 150px; height: 150px; margin: 0 auto 5px;}
  2470. .template-common .t-name{color: #333; text-align: center;}
  2471. .template-common .t-name .name-info span{margin-right: 10px; color: #666;}
  2472. .template-common .t-name .tit{font-size: 28px; margin-bottom: 10px; margin-top: 15px;}
  2473. .template-common .t-introduce{color: #333;}
  2474. .template-common .t-introduce .tit{font-size: 20px; margin-top: 25px;}
  2475. .template-common .t-introduce p{margin-top: 15px;}
  2476. .template-common .t-contact{color: #333; margin-top: 20px;}
  2477. .template-common .t-contact .tit{font-size: 20px; margin-bottom: 15px;}
  2478. .template-common .t-contact dl{margin-bottom: 5px;}
  2479. .template-common .t-contact dl dt{margin-right: 10px;}
  2480. .template-pwd{border: 1px solid #e5e5e5; border-radius: 3px; padding: 45px 35px; margin-top: 45px; /*margin-bottom: 50px;*/ display: none;}
  2481. .template-pwd label{color: #3e4753; text-align: center; display: block;}
  2482. .template-pwd .form-control{margin-top: 15px;}
  2483. .passwords+.template-footer{margin-top: 50px;}
  2484. .template-footer{margin-top: 30px;}
  2485. .template-footer .methods-tutorial-full{background-color: #ff6666;}
  2486. .template-footer .methods-tutorial-full a{color: #fff;}
  2487. .template-footer .methods-tutorial-full a.fl{height: 50px; line-height: 50px;}
  2488. .template-footer .methods-tutorial-full a.fl:hover{text-decoration: underline;}
  2489. .template-footer .methods-tutorial-full a.fr{width: 22px; height: 22px; line-height: 22px; border: 1px solid #fff; border-radius: 50%; text-align: center; margin-top: 14px;}
  2490. .template-footer .methods-tutorial-full a.fr .iconfont{color: #fff;}
  2491. .template-footer .t-footer{text-align: center; margin-top: 30px; padding-bottom: 30px;}
  2492. .template-footer .t-footer a{color: #157df1;}
  2493. .template-footer .t-footer a:hover{text-decoration: underline;}
  2494. /*应用截图*/
  2495. .template-common .app-screen{margin-top: 20px;}
  2496. .template-common .app-screen .tit{font-size: 20px; margin-bottom: 15px; color: #333;}
  2497. .template-common .app-screen .s-responsive{overflow: hidden; height: 405px; width: 100%; overflow-x: auto;}
  2498. /*.template-common .app-screen ul{height: 405px;}*/
  2499. .template-common .app-screen ul li{float: left; margin-right: 20px;}
  2500. .template-common .app-screen ul li img{width: auto; height: auto; max-width: 800px; max-height: 405px;}
  2501. .template-common .app-screen ul li:last-of-type{margin-right: 0;}
  2502. /*模板1*/
  2503. .template-1 .t-bg-1{background: #157df1 url("../img/t-04.png") repeat-x center bottom; height: 175px;}
  2504. .template-1 .content{margin-top: -125px; padding: 0 80px;}
  2505. .template-1 .template-common{padding: 0;}
  2506. .template-1 .template-common .t-icon{box-shadow: none; width: auto; height: auto; background-color: transparent;}
  2507. .template-1.passwords .template-common .t-code{width: 125px; margin-top: 35px;}
  2508. .template-1 .template-common .t-code{width: 200px; margin-top: 15px;}
  2509. .template-1 .template-common .t-code img{width: 125px; height: 125px; margin: 0 auto;}
  2510. .template-1 .template-common .t-name{text-align: left;}
  2511. .template-1 .template-common .t-name .name-info span{color: #fff;}
  2512. .template-1+.template-footer{margin-top: 140px;}
  2513. .template-1 .template-common .template-btn{margin-top: 30px; margin-bottom: 15px; padding: 0 15px;}
  2514. .template-1 .content .c-left{background: url("../img/t-05.png") no-repeat center; width: 308px; height: 608px; padding-top: 110px;}
  2515. .template-1.passwords .content .c-left{padding-top: 140px;}
  2516. .template-1.passwords .content .c-right{margin-left: 130px; width: auto;}
  2517. .template-1 .content .c-right{margin-left: 100px; width: 630px;}
  2518. .template-1 .content .c-right .t-name{color: #fff; margin-bottom: 100px;}
  2519. .template-1 .template-common .t-name .tit{margin-top: 5px;}
  2520. .template-1 .content .c-right .t-introduce{/*margin-top: 100px;*/ margin-bottom: 45px;}
  2521. .template-1 .content .c-right .t-contact{margin-top: 0; margin-bottom: 45px;}
  2522. .template-1 .template-pwd{width: 500px; height: 230px; background-color: #fafafa; margin-top: 90px; padding: 60px 30px 0; position: relative; border-radius: 5px; display: none; border: none;}
  2523. .template-1 .template-pwd .form-group{text-align: center;}
  2524. .template-1 .template-pwd .form-group label{color: #3e4753;}
  2525. .template-1 .template-pwd .form-group .form-control{border-color: #e5e5e5; margin-top: 5px;}
  2526. .template-1 .template-pwd .form-group .form-control:focus{border-color: #66afe9;}
  2527. .template-1 .template-pwd .top-pwd{position: absolute; left: 50%; top: -20px; margin-left: -30px; width: 60px; height: 60px; border: 1px solid #157df1; border-radius: 50%; display: flex; justify-content: center; align-items: center; background-color: #fafafa;}
  2528. .template-1 .template-pwd .top-pwd .iconfont{color: #157df1; font-size: 30px;}
  2529. .template-1 .template-common .app-screen .s-responsive{width: 730px;}
  2530. /*/模板1*/
  2531. /*模板2*/
  2532. .template-2 .t-bg-2{background: url("../img/t-06.jpg") center; height: 130px;}
  2533. .template-2 .content{margin-top: -90px;}
  2534. /*/模板2*/
  2535. /*模板3*/
  2536. .template-3 .t-bg-3{background: url("../img/t-07.jpg") center; height: 160px;}
  2537. .template-3 .content{margin-top: 20px;}
  2538. .template-3 .template-common .t-icon{width: 160px; height: 160px; border-radius: 50%;}
  2539. .template-3 .template-common .t-icon img{width: 105px; height: 105px;}
  2540. /*/模板3*/
  2541. /*模板4*/
  2542. .template-4 .t-bg-4{background: url("../img/t-09.png") no-repeat center; height: 485px;}
  2543. .template-4 .t-left{width: 255px; margin-left: 265px; margin-top: 150px;}
  2544. .template-4 .t-right{margin-left: 225px; margin-top: 45px;}
  2545. .template-4 .content4 .template-common{padding: 0;}
  2546. .template-4 .content4 .template-common .t-icon{width: auto; height: auto; background-color: transparent; box-shadow: none;}
  2547. .template-4 .content4 .template-common .t-icon img{border: none;}
  2548. .template-4 .content4 .template-common .t-name .tit{color: #fff; margin-top: 25px; margin-bottom: 20px;}
  2549. .template-4 .content4 .template-common .t-name .name-info span{display: block; text-align: center; margin-right: 0; color: #fff; line-height: 24px;}
  2550. .template-4 .template-common .template-btn{margin-bottom: 20px;}
  2551. .template-4 .content>.template-common{padding: 80px 100px 0;}
  2552. .template-4 .template-common .t-code{width: 200px;}
  2553. .template-4 .template-common .t-code img{width: 120px; height: 120px; margin-left: auto; margin-right: auto;}
  2554. .template-4 .template-common .decoding{width: 100%; margin-top: 30px;}
  2555. .template-4 .template-pwd{border: none; padding: 0; width: 490px; margin: 0 auto;}
  2556. .template-4+.template-footer{margin-top: 100px;}
  2557. .template-4 .content>.template-common .app-screen{width: 730px;}
  2558. /*/模板4*/
  2559. /*模板5*/
  2560. .template-5 .left-bg{position: absolute; left: 0; top: 0; background: url("../img/t11.png") no-repeat left top; width: 283px; height: 1012px;}
  2561. .template-5 .right-bg{position: absolute; right: 0; top: 0; background: url("../img/t12.png") no-repeat right top; width: 283px; height: 1012px;}
  2562. .template-5 .content{padding-top: 100px;}
  2563. .template-5 .template-common{padding: 0 235px;}
  2564. .template-5 .template-common .t-icon{border-radius: 50%; position: relative; margin-left: 180px;}
  2565. .template-5 .template-common .t-icon .bg-shadow{position: absolute; left: -20px; top: 70px; border-radius: 90px; width: 360px; height: 180px; background-color: #eff2f2; z-index: -1; transform: rotate(45deg);}
  2566. .template-5 .template-common .t-icon .code{position: absolute; top: 160px; right: -160px; transition: all 500ms;}
  2567. .template-5 .template-common .t-icon .code img{border-radius: 0; border: none; width: 110px; height: 110px; transition: all 500ms;}
  2568. .template-5 .template-common .t-icon .code:hover{width: 240px; height: 240px; right: -190px; top: 130px;}
  2569. .template-5 .template-common .t-icon .code:hover img{width: 160px; height: 160px;}
  2570. .template-5 .template-common .t-name-wrap{width: 350px; margin-left: auto; margin-right: auto;}
  2571. .template-5 .template-common .t-name-wrap .t-name{text-align: left;}
  2572. .template-5 .template-common .t-name-wrap .template-btn{margin: 45px 0 20px}
  2573. .template-5 .template-common .t-name{margin-top: 200px;}
  2574. .template-5 .template-common .t-name .tit{margin-bottom: 20px;}
  2575. .template-5 .template-common .t-name .name-info{text-align: left; line-height: 24px;}
  2576. .template-5 .template-common .t-apply{text-align: left; padding-left: 15px;}
  2577. .template-5 .template-common .template-btn{padding: 0 53px;}
  2578. .template-5 .template-common hr{margin-top: 50px;}
  2579. .template-5 .template-common .t-introduce .tit{margin-top: 50px;}
  2580. .template-5 .template-common .t-contact{margin-top: 25px;}
  2581. .template-5.passwords+.template-footer{margin-top: 99px;}
  2582. .template-5+.template-footer{margin-top: 40px;}
  2583. .template-5 .template-pwd{width: 555px; height: 245px; margin: 80px auto 0; padding: 60px 30px 0; position: relative; border-radius: 5px;}
  2584. .template-5 .template-pwd .top-pwd{position: absolute; left: 50%; top: -30px; margin-left: -30px; width: 60px; height: 60px; border: 1px solid #157df1; border-radius: 50%; display: flex; justify-content: center; align-items: center; background-color: #fafafa;}
  2585. .template-5 .template-pwd .top-pwd .iconfont{color: #157df1; font-size: 30px;}
  2586. .template-5 .template-pwd .decoding{width: 100%; margin-top: 30px; margin-bottom: 30px;}
  2587. /*/模板5*/
  2588. /*模板6*/
  2589. .template-6 .t-bg-6{background-color: #f4f4f4; height: 80px; line-height: 80px;}
  2590. .template-6 .t-top .tit{font-size: 30px; color: #333;}
  2591. .template-6 .t-top .name-info{font-size: 18px; color: #666;}
  2592. .template-6 .t-top .name-info span{margin-left: 10px;}
  2593. .template-6 .content{margin-top: 55px;}
  2594. .template-6 .template-common .template-btn{margin-bottom: 15px;}
  2595. .template-6 .template-common .show-hr{display: block; margin-top: 40px;}
  2596. .template-6 .template-common .t-code{margin-top: 40px;}
  2597. /*/模板6*/
  2598. /*密码显示控制*/
  2599. .passwords .template-pwd{display: block;}
  2600. .passwords .pc-pwd{display: none !important;}
  2601. .passwords .template-pwd{display: block;}
  2602. /*----------/分发落地页----------*/
  2603. /*----------通知中心----------*/
  2604. .user-center1 .message-list .no-msg{display: flex; align-items: center; justify-content: center; height: 550px;}
  2605. .user-center1 .message-list .no-msg .no{display: inline-block; text-align: center;}
  2606. .user-center1 .message-list .no-msg .no .no-text{margin-top: 15px;}
  2607. .user-center1 .message-list{box-shadow: 0 0 5px rgba(0,0,0,.05); background-color: #fff; min-height: 550px; padding-bottom: 20px;}
  2608. .user-center1 .message-list dt{background-color: #f5f6f7; padding: 12px 30px; border-bottom: 1px solid #e5e5e5;}
  2609. .user-center1 .message-list dt .all{color: #333;}
  2610. .user-center1 .message-list dt .all:hover{color: #157df1;}
  2611. .user-center1 .message-list dt .all .icon-checkbox1{margin-top: 2px; color: #999; margin-right: 10px; cursor: pointer;}
  2612. .user-center1 .message-list dt .all:hover .icon-checkbox1{color: #157df1;}
  2613. .user-center1 .message-list dt .all .icon-checkbox-checked1{margin-top: 2px; color: #157df1; margin-right: 10px;}
  2614. .user-center1 .message-list dt .all .text{padding-top: 6px; margin-right: 20px;}
  2615. .user-center1 .message-list dt button{padding: 4px 12px; line-height: normal; margin-right: 10px;}
  2616. .user-center1 .message-list .list li{float: left; font-size: 12px;}
  2617. .user-center1 .message-list dd{padding: 20px 30px; border-bottom: 1px solid #e5e5e5;}
  2618. .user-center1 .message-list dd .list{height: 22px;}
  2619. .user-center1 .message-list dd .checkbox-li .iconfont{margin-right: 20px;}
  2620. .user-center1 .message-list dd .checkbox-li .icon-checkbox-checked1{color: #157df1;}
  2621. .user-center1 .message-list dd .msg-icon .iconfont{margin-right: 30px;}
  2622. .user-center1 .message-list dd .msg-icon .icon-unread{color: #fed735;}
  2623. .user-center1 .message-list dd .msg-icon .icon-read{color: #999; font-size: 20px; position: relative; top: -3px;}
  2624. .user-center1 .message-list dd .li-msg-con{line-height: 24px;}
  2625. .user-center1 .message-list dd .li-msg-con span{float: left; line-height: 22px;}
  2626. .user-center1 .message-list dd .li-msg-con .text1{color: #333; font-weight: 600;}
  2627. .user-center1 .message-list dd.read{background-color: #f9f9f9;}
  2628. .user-center1 .message-list dd.read .li-msg-con .text1{font-weight: normal;}
  2629. .user-center1 .message-list dd .li-msg-con .text2{color: #666; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 500px;}
  2630. .user-center1 .message-list dd .li-msg-con .text3{margin: 0 5px;}
  2631. /*.user-center1 .message-list dd .li-msg-con a:hover {color: #157df1;}*/
  2632. .user-center1 .message-list dd .time{float: right; line-height: 22px; color: #666;}
  2633. .user-center1 .message-details{padding: 40px; height: 550px; background-color: #fff; box-shadow: 0 0 5px rgba(0,0,0,.05);}
  2634. .user-center1 .message-details .details-tit{color: #333; font-size: 26px; text-align: center; margin-bottom: 10px;}
  2635. .user-center1 .message-details .details-time{color: #666; font-size: 12px; text-align: center; margin-bottom: 25px;}
  2636. .user-center1 .message-details .details-p{color: #333; font-size: 14px; /*margin-bottom: 25px;*/ line-height: 24px;}
  2637. .user-center1 .message-details .details-con-wrap{border: 1px solid #e5e5e5; border-radius: 3px; padding: 30px; margin-top: 25px;}
  2638. .user-center1 .message-details .details-con dt{color: #333; font-weight: 600; margin-bottom: 18px; margin-left: 45px;}
  2639. .user-center1 .message-details .details-con.text-lg dt{color: #333; font-weight: 600; margin-bottom: 18px; margin-left: 95px;}
  2640. .user-center1 .message-details .details-con dd{font-size: 12px; margin-bottom: 12px;}
  2641. .user-center1 .message-details .details-con dd .d-left{color: #333; float: left; width: 60px; font-weight: 600; text-align: right;}
  2642. .user-center1 .message-details .details-con.text-lg dd .d-left{color: #333; float: left; width: 110px; font-weight: 600; text-align: right;}
  2643. .user-center1 .message-details .details-con dd .d-right{color: #333; margin-left: 85px; display: block;}
  2644. .user-center1 .message-details .details-con dd .d-right.color-danger{color: #fd641d;}
  2645. .user-center1 .message-details .details-con dd .d-right.color-hover{color: #157df1;}
  2646. .user-center1 .message-details .details-con dd .d-right.color-hover{color: #157df1;}
  2647. .user-center1 .message-details .details-con dd .d-right.color-666{color: #666;}
  2648. .user-center1 .message-details .details-con.text-lg dd .d-right{margin-left: 135px;}
  2649. .user-center1 .message-details .ms-btn-secondary{padding: 6px 20px;}
  2650. /*/----------通知中心----------*/
  2651. /*----------文档中心----------*/
  2652. /*列表*/
  2653. .doc-banner{background: url("../img/document-1.jpg?20190116") no-repeat center; height: 200px; padding-top: .1px;}
  2654. .doc-banner .tit{color: #fff; font-size: 28px; height: 100%; display: flex; justify-content: center; align-items: center; font-weight: 600;}
  2655. .doc-banner .b-con{width: 480px; margin: 50px auto 0;}
  2656. .doc-banner .b-con p{color: #fff; margin-top: 5px;}
  2657. .doc-banner .url-text{background-color: rgba(255,255,255,.2); height: 50px; padding: 6px; border-radius: 10px; color: #333;}
  2658. .doc-banner .url-text input{background-color: #fff; border: none; width: 75%; height: 100%; border-radius: 5px 0 0 5px; padding-left: 30px;}
  2659. .doc-banner .url-text .submit{background-color: #157df1; border: none; width: 25%; height: 100%; border-radius: 0 5px 5px 0; text-align: center; font-size: 17px; color: #fff; line-height: 38px;}
  2660. .doc-list-wrap{padding: 35px 50px 20px;}
  2661. .doc-list .tit{font-size: 24px; color: #157df1; margin-bottom: 15px;}
  2662. .doc-list .tit .icon{margin-right: 10px; position: relative; top: 2px;}
  2663. .doc-list .tit .icon-document2{top: 4px;}
  2664. .doc-list .tit .icon-document3{top: 4px;}
  2665. .doc-list .con{border: 1px solid #e5e5e5; padding: 25px 25px 15px; margin-bottom: 60px;}
  2666. .doc-list .con .common{margin-bottom: 8px;}
  2667. .doc-list .con .common .arrow{float: left; color: #333; font-size: 14px;}
  2668. .doc-list .con .common .tit1{margin-left: 15px; color: #333; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
  2669. .doc-list .con .common .tit1:hover{color: #157df1;}
  2670. .doc-list .con:last-of-type{margin-bottom: 20px;}
  2671. .doc-list .advice{color: #333; text-align: center;}
  2672. .doc-list .advice a{color: #157df1;}
  2673. .doc-list .tit .icon-document2{top: 4px;}
  2674. .doc-list .tit .icon-document3{top: 4px;}
  2675. /*banner添加教程*/
  2676. .doc-tutorial{padding: 0 105px; margin: -40px 0 20px;}
  2677. .doc-tutorial .con{background-color: #fff; padding: 20px 40px; border: 1px solid #f5f5f5;}
  2678. .doc-tutorial .con .ms-thumbnail:hover .ms-caption .tit{color: #157df1;}
  2679. .doc-tutorial .con .ms-thumbnail img{margin-bottom: 10px;}
  2680. .doc-tutorial .con .ms-thumbnail .ms-caption .tit{margin-bottom: 0;}
  2681. /*/列表*/
  2682. /*详情*/
  2683. @media (min-width: 1200px) {
  2684. .doc-details .row{margin: 0 -5px;}
  2685. .doc-details .col-sm-2{padding: 0 5px;}
  2686. .doc-details .col-sm-10{padding: 0 5px;}
  2687. }
  2688. .doc-details .details-left{border: 1px solid #e5e5e5; border-bottom: none; border-radius: 3px; margin-bottom: 40px;}
  2689. .doc-details .details-left dt{border-left: 4px solid transparent; height: 44px; line-height: 44px; border-bottom: 1px solid #e5e5e5; color: #333; padding-left: 10px; cursor: pointer;}
  2690. .doc-details .details-left dt .icon{position: relative; top: 2px; margin-right: 8px;}
  2691. .doc-details .details-left dt .iconfont{margin-right: 7px;}
  2692. .doc-details .details-left dt .icon-arrow-up{display: none;}
  2693. .doc-details .details-left dt.active{border-left-color: #157df1; background-color: #d0e5fc;}
  2694. .doc-details .details-left dt.active .icon-arrow-up{display: block;}
  2695. .doc-details .details-left dt.active .icon-arrow-down{display: none;}
  2696. /*.doc-details .details-left dt.active+dd{display: block;}*/
  2697. .doc-details .details-left dt .icon-sdk2{color: #157df1;}
  2698. .doc-details .details-left dd{display: none;}
  2699. .doc-details .details-left dd a{display: block; padding: 10px 20px; border-bottom: 1px solid #e5e5e5; font-size: 12px;}
  2700. .doc-details .details-left dd a.active{color: #157df1;}
  2701. .details-right{border: 1px solid #e5e5e5; border-radius: 3px; min-height: 600px; margin-bottom: 40px;}
  2702. .details-right .article-tit{color: #333; border-bottom: 1px solid #e5e5e5; padding: 18px 20px; font-size: 16px;}
  2703. .details-right .article-con{padding: 25px 40px; line-height: 24px; color: #333;}
  2704. .details-right .article-con img{max-width: 700px;}
  2705. /*/详情*/
  2706. /*更新日志*/
  2707. .update-log-banner{background: url("../img/time-2.jpg") no-repeat center; height: 170px; color: #fff; font-size: 28px; font-weight: 600; display: flex; justify-content: center; align-items: center;}
  2708. .update-log-wrap{padding: 70px 240px;}
  2709. .update-log-wrap .update-log:first-of-type{padding-top: 70px;}
  2710. .update-log{background: url("../img/time-1.png") no-repeat 115px top;}
  2711. .update-log .con{padding-bottom: 35px;}
  2712. .update-log .u-left{width: 100px; text-align: right;}
  2713. .update-log .u-left dt{color: #333; font-size: 16px; margin-bottom: 2px;}
  2714. .update-log .u-left dd{color: #333; font-size: 12px;}
  2715. .update-log .u-right{width: 590px; margin-left: 24px;}
  2716. .update-log .u-right .u-icon{border: 1px solid #157df1; border-radius: 50px; width: 13px; height: 13px; padding: 2px; position: relative; top: 2px;}
  2717. .update-log .u-right .u-icon span{display: block; background-color: #157df1; border-radius: 50%; width: 100%; height: 100%;}
  2718. .update-log .u-right dl{margin-left: 30px;}
  2719. .update-log .u-right dt{color: #333; font-size: 16px; font-weight: 600; margin-bottom: 5px;}
  2720. .update-log .u-right dd{color: #333; line-height: 24px;}
  2721. /*/更新日志*/
  2722. /*反馈 建议*/
  2723. .feedback-wrap{padding: 25px 150px 40px;}
  2724. .feedback{border-radius: 5px; background-color: #fff; padding: 25px 30px 30px;}
  2725. .feedback .tit{font-size: 18px; color: #333; font-weight: 600; margin-bottom: 20px;}
  2726. .feedback .form-group{margin-bottom: 35px;}
  2727. .feedback label{color: #333; margin-bottom: 10px;}
  2728. .feedback label span{color: #fd641d; margin-right: 10px;}
  2729. .feedback .type li{float: left; margin-right: 40px; cursor: pointer;}
  2730. .feedback .type li .icon-radio{top: 3px;}
  2731. .feedback .submit{padding-left: 40px; padding-right: 40px;}
  2732. .feedback .uploaded-img{border: 1px solid #e5e5e5; width: 90px; height: 90px; position: relative; border-radius: 5px; margin-right: 20px;}
  2733. .feedback .uploaded-img img{width: 100%; height: 100%; border-radius: 5px;}
  2734. .feedback .uploaded-img .delete-img{position: absolute; right: -9px; top: -9px; right: 0\9; top: 0\9; cursor: pointer; z-index: 2;}
  2735. .feedback .upload-img{position: relative; border: 1px dashed #e5e5e5; width: 90px; height: 90px; border-radius: 5px; background: url("../img/icon-10.png") no-repeat center 20px; overflow: hidden;}
  2736. .feedback .upload-img input{position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;}
  2737. .feedback .upload-img .text{text-align: center; font-size: 12px; color: #666; margin-top: 60px;}
  2738. /*/反馈 建议*/
  2739. /*----------/文档中心列表----------*/
  2740. /*----------工具箱----------*/
  2741. .tool-banner{background: url("../img/tool-banner.jpg?20181228") no-repeat center; height: 200px; background-size: cover;}
  2742. .tool-banner .con{color: #fff; font-size: 28px; padding-left: 100px; font-weight: 600; padding-top: 55px;}
  2743. .tool-banner .con .p2{text-indent: 2em;}
  2744. .tool-classs{padding: 60px 80px;}
  2745. .tool-classs .con{box-shadow: 0 0 20px rgba(21,125,241,.2); background-color: #fff; border-radius: 5px;}
  2746. .tool-classs .con ul li{float: left; width: 33.333333%; text-align: center; padding-top: 20px;}
  2747. .tool-classs .con ul li:nth-of-type(1){padding-left: 20px;}
  2748. .tool-classs .con ul li:nth-of-type(3){padding-right: 20px;}
  2749. .tool-classs .con ul li .t-con{border-right: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; padding-bottom: 40px; padding-top: 20px;}
  2750. .tool-classs .con ul li:hover{box-shadow: 0 3px 10px rgba(193,220,251,.8);}
  2751. .tool-classs .con ul li .img-wrap{height: 66px; display: flex; justify-content: center; align-items: center; margin-bottom: 15px;}
  2752. .tool-classs .con ul li .tit{font-size: 24px; color: #333; margin-bottom: 10px;}
  2753. .tool-classs .con ul li p{margin-bottom: 15px; height: 80px; padding: 0 50px;}
  2754. .tool-classs .con ul li .ms-btn{padding: 3px 35px; border-radius: 15px;}
  2755. .tool-classs .con ul li:nth-of-type(n+4){padding-top: 0; padding-bottom: 20px;}
  2756. .tool-classs .con ul li:nth-of-type(3n) .t-con{border-right-color: transparent;}
  2757. .tool-classs .con ul li:nth-of-type(n+4) .t-con{border-bottom-color: transparent; padding-top: 30px; padding-bottom: 20px;}
  2758. .tool-classs .con ul li:hover .ms-btn{background-color: #157df1; color: #fff;}
  2759. /*----------/工具箱----------*/
  2760. /*----------新价格页----------*/
  2761. .new-price-btn{width: 150px; height: 40px; line-height: 40px; border-radius: 20px; background: linear-gradient(to right, #ff3794, #fc753b); display: block; color: #fff; text-align: center; margin: 0 auto;}
  2762. .new-price-btn:hover{/*box-shadow: 0 2px 5px rgba(255,55,148,.5);*/ color: #fff; background: linear-gradient(to right, #fe1064, #ff9c00)}
  2763. .new-price-btn:focus{color: #fff;}
  2764. .new-price-banner{background: url("../img/price-banner-1.jpg") no-repeat center; height: 200px;}
  2765. .new-price-banner .banner-con{color: #fff; padding: 65px 0 0 110px;}
  2766. .new-price-banner .banner-con h3{font-size: 30px; font-weight: 600; margin-bottom: 10px;}
  2767. .new-price-banner .banner-con p{font-size: 16px;}
  2768. .new-price-list{padding: 0 110px; margin: 85px 0;}
  2769. .new-price-list li{width: 33.333333%; float: left; text-align: center; padding: 35px 20px; background-color: #fff; box-shadow: 0 0 10px rgba(112,61,231,.1); height: 695px; transition: transform 100ms;}
  2770. .new-price-list li.active{transform: scale(1.02); z-index: 2; position: relative;}
  2771. .new-price-list li h3{color: #333; margin-top: 20px;}
  2772. .new-price-list li p{color: #666; margin-top: 10px; line-height: 24px; margin-bottom: 5px;}
  2773. .new-price-list li .amount{font-size: 18px; color: #fd9817;}
  2774. .new-price-list li .amount .num{font-size: 30px;}
  2775. .new-price-list li .more{margin: 10px auto 20px;}
  2776. .new-price-list li dl dd{line-height: 32px; color: #333;}
  2777. .new-price-details{margin-top: 30px;}
  2778. .new-price-details h1{color: #157df1; text-align: center; margin-bottom: 10px;}
  2779. .new-price-details p{color: #666; font-size: 16px; text-align: center; margin-bottom: 80px;}
  2780. .new-price-details .new-price-btn{margin-bottom: 80px;}
  2781. .new-price-details .table{table-layout: fixed; box-shadow: 0 0 10px rgba(0,0,0,.1); margin-bottom: 0;}
  2782. .new-price-details .table th{text-align: center; height: 50px; color: #333; font-size: 16px; font-weight: 600; border-top: none; position: relative; vertical-align: middle;}
  2783. .new-price-details .table th:nth-of-type(2){border-left: 1px solid #ddd;}
  2784. .new-price-details .table td{text-align: center; border: 1px solid #ddd; height: 50px; color: #333; vertical-align: middle;}
  2785. .new-price-details .table th:first-of-type{border-left-color: transparent;}
  2786. .new-price-details .table th:last-of-type{border-right-color: transparent;}
  2787. .new-price-details .table td:first-of-type{border-left-color: transparent;}
  2788. .new-price-details .table td:last-of-type{border-right-color: transparent;}
  2789. .new-price-details .table tr:last-of-type td{border-bottom: none;}
  2790. .new-price-details .table tr:nth-of-type(odd) td{background-color: #f5f6f7;}
  2791. /*.new-price-details .table tr:nth-of-type(even) td:first-of-type{border-left-color: #ddd; border-right-color: #ddd;}*/
  2792. /*.new-price-details .table tr:nth-of-type(even) td:last-of-type{border-right-color: #ddd;}*/
  2793. .new-price-details .table th .th-con{position: absolute; width: 100%; height: 90px; left: 0; bottom: 0; background: no-repeat center; color: #fff; padding-top: 15px;}
  2794. .new-price-details .table th .th-con .tit{font-size: 24px; font-weight: normal; margin-bottom: 5px; position: relative;}
  2795. .new-price-details .table th .th-con .tit .unit{font-size: 12px;}
  2796. .new-price-details .table th .th-con .tit .recommended{position: absolute; top: -8px; background: url("../img/price-tip1.png") no-repeat; width: 40px; height: 24px; color: #fff; font-size: 14px; line-height: 24px;}
  2797. .new-price-details .table th .th-con .level{font-size: 16px;}
  2798. /*.new-price-details .table .icon-wrap{height: 20px; line-height: 20px;}*/
  2799. .new-price-details .table .icon-duihao{color: #13c960; font-size: 22px;}
  2800. .new-price-details .help{padding-bottom: 40px;}
  2801. .new-price-details .help h1{margin-bottom: 40px;}
  2802. .new-price-details .help dl .right{margin-left: 30px; width: calc(100% - 30px);}
  2803. .new-publish-price .help{padding: 0; margin-bottom: 30px; padding: 55px 70px 0;}
  2804. .new-publish-price .help h1{margin-bottom: 40px; color: #157df1; text-align: center;}
  2805. .new-publish-price .help dl .right{margin-left: 30px; width: calc(100% - 30px);}
  2806. .new-pack-price .table th .level0{background-image: url("../img/price-4.jpg");}
  2807. .new-pack-price .table th .level1{background-image: url("../img/price-5.jpg");}
  2808. .new-pack-price .table th .level2{background-image: url("../img/price-6.jpg");}
  2809. .new-pack-price .table th .th-con .tit .recommended{position: absolute; top: -8px; background: url("../img/price-tip2.png") no-repeat; width: 70px; height: 24px; color: #fff; font-size: 14px; line-height: 24px;}
  2810. .new-sign-price .table th .level0{background-image: url("../img/price-5.jpg");}
  2811. .new-sign-price .table th .level1{background-image: url("../img/price-6.jpg");}
  2812. .new-sign-price .table th .level2{background-image: url("../img/price-7.jpg");}
  2813. .new-sign-price .table tr td:first-of-type{font-weight: 600;}
  2814. .new-sign-price .table tr:last-of-type td{border-bottom: 1px solid #ddd;}
  2815. /*.new-publish-price{margin-bottom: 60px;}*/
  2816. .new-publish-price .tab{width: 490px; height: 40px; line-height: 40px; margin: 40px auto;}
  2817. .new-publish-price .tab li{float: left; text-align: center; width: 50%; color: #333; cursor: pointer; border: 1px solid #e5e5e5;}
  2818. .new-publish-price .tab li:first-of-type{border-radius: 20px 0 0 20px; border-right-color: transparent;}
  2819. .new-publish-price .tab li:last-of-type{border-left-color: transparent; border-radius: 0 20px 20px 0;}
  2820. .new-publish-price .tab li.active{background-color: #157df1; border-color: #157df1; color: #fff;}
  2821. /*.new-publish-price .tab li:first-of-type.active{border-radius: 25px 0 0 25px;}*/
  2822. /*.new-publish-price .tab li:last-of-type.active{border-radius:0 25px 25px 0;}*/
  2823. .new-publish-price .tab-con>div{display: none;}
  2824. .new-publish-price .tab-con .con-wrap{padding: 0 70px;}
  2825. .new-publish-price .tab-con h1{text-align: center; color: #157df1; margin-bottom: 20px;}
  2826. .new-publish-price .tab-con .big-package h1{color: #fd9817;}
  2827. .new-publish-price .tab-con .p1{text-align: center; font-size: 16px; color: #666; margin-bottom: 35px;}
  2828. .new-publish-price .tab-con .con{border: 1px solid #e5e5e5; padding-bottom: 40px; position: relative;}
  2829. .new-publish-price .tab-con .con:hover{box-shadow: 0 3px 10px rgba(21,125,241,.2);}
  2830. .new-publish-price .tab-con .big-package .con:hover{box-shadow: 0 3px 10px rgba(253,152,23,.2);}
  2831. .new-publish-price .tab-con .gradient{height: 8px;}
  2832. .new-publish-price .tab-con .gradient1{background: linear-gradient(to right, #5caafd, #57d4f8);}
  2833. .new-publish-price .tab-con .gradient2{background: linear-gradient(to right, #507dfb, #5598fa);}
  2834. .new-publish-price .tab-con .gradient3{background: linear-gradient(to right, #5958d9, #8e1fe5);}
  2835. .new-publish-price .tab-con .big-package .gradient1{background: linear-gradient(to right, #fea63f, #ffcd35);}
  2836. .new-publish-price .tab-con .big-package .gradient2{background: linear-gradient(to right, #fc853e, #fe9f30);}
  2837. .new-publish-price .tab-con .big-package .gradient3{background: linear-gradient(to right, #fc7738, #ff339a);}
  2838. .new-publish-price .tab-con .downloads{text-align: center; padding: 35px 0 30px;}
  2839. .new-publish-price .tab-con .downloads .text{color: #666; font-size: 16px;}
  2840. .new-publish-price .tab-con .downloads .num{color: #333; font-size: 50px;}
  2841. .new-publish-price .tab-con .downloads .num span{font-size: 16px;}
  2842. .new-publish-price .tab-con .con .recommended{position: absolute; top: 0; right: 0; display: none;}
  2843. .new-publish-price .tab-con .instructions{padding: 0 30px;}
  2844. .new-publish-price .tab-con .instructions dl{border-top: 1px solid #e5e5e5; text-align: left; color: #666; padding-top: 25px; height: 195px;}
  2845. .new-publish-price .tab-con .instructions dl dd{margin: 10px 0; color: #666;}
  2846. .new-publish-price .tab-con .instructions dl dd .icon-gou{color: #5cb4f6;}
  2847. .new-publish-price .tab-con .big-package .instructions dl dd .icon-gou{color: #fd9817;}
  2848. .new-publish-price .tab-con .instructions dl dd .icon-gou{margin-right: 10px; font-size: 14px;}
  2849. .new-publish-price .tab-con .instructions dl dd .icon-prompt{position: relative; margin-left: 5px; top: -3px; cursor: pointer;}
  2850. .new-publish-price .tab-con .p-price{font-size: 16px; color: #157df1; text-align: center; margin-bottom: 25px;}
  2851. .new-publish-price .tab-con .big-package .p-price{color: #fd9817;}
  2852. .new-publish-price .tab-con .p-price span{font-size: 40px;}
  2853. .new-publish-price .tab-con .p-pay{text-align: center;}
  2854. .new-publish-price .tab-con .p-pay .btn-buy{padding: 10px 12px; width: 120px;}
  2855. .new-publish-price .tab-con .big-package .p-pay .btn-buy{color: #fd9817; border: 1px solid #fd9817;}
  2856. .new-publish-price .tab-con .big-package .p-pay .btn-buy:hover{color: #fff; border: 1px solid #fd9817; background-color: #fd9817;}
  2857. .new-price-meal{padding: 20px 0 25px;}
  2858. .new-price-meal>h1{color: #157df1; margin-bottom: 15px; text-align: center;}
  2859. .new-price-meal>p{color: #666; font-size: 16px; margin-bottom: 20px; text-align: center;}
  2860. .new-price-meal .new-price-btn{margin-bottom: 50px;}
  2861. .new-price-meal .table{table-layout: fixed; box-shadow: 0 0 10px rgba(0,0,0,.1);}
  2862. .new-price-meal .table th{text-align: center; height: 50px; color: #333; border-top: none; position: relative; vertical-align: middle; border-left: 1px solid #ddd; font-weight: 600; font-size: 15px; background-color: #f5f6f7;}
  2863. .new-price-meal .table td{text-align: center; border: 1px solid #ddd; height: 50px; color: #333; vertical-align: middle;}
  2864. .new-price-meal .table th:first-of-type{border-left-color: transparent;}
  2865. .new-price-meal .table th:last-of-type{border-right-color: transparent;}
  2866. .new-price-meal .table td:first-of-type{border-left-color: transparent;}
  2867. .new-price-meal .table td:last-of-type{border-right-color: transparent;}
  2868. .new-price-meal .table tr:last-of-type td{border-bottom: none;}
  2869. .new-price-meal .table tr:nth-of-type(odd) td{background-color: transparent;}
  2870. .new-price-meal .table .recommend-wrap1{position: relative;}
  2871. .new-price-meal .table .recommend-wrap1 .recommended{position: absolute; top: -9px; background: url("../img/price-tip1.png") no-repeat; width: 32px; height: 22px; color: #fff; font-size: 12px; line-height: 20px; background-size: contain; font-weight: normal;}
  2872. .new-pack-meal .table .recommend-wrap1 .recommended{background: url("../img/price-tip2.png") no-repeat; width: 60px; height: 22px; background-size: contain; font-size: 12px; line-height: 22px; font-weight: normal;}
  2873. .new-price-meal .table td .num{font-size: 18px;}
  2874. .new-price-meal .help{padding: 0;}
  2875. .new-price-meal .help>h1{color: #157df1; text-align: center; margin-bottom: 50px;}
  2876. /*----------/新价格页----------*/
  2877. /*----------SDK----------*/
  2878. .sdk-banner-wrap{background: url("../img/sdk-banner.jpg") no-repeat center; height: 200px;}
  2879. .sdk-banner{padding-top: 60px;}
  2880. .sdk-banner h1{color: #fff; font-size: 30px; text-align: center; line-height: 40px; font-weight: normal;}
  2881. .sdk-common{padding: 70px 0;}
  2882. .sdk-common>h1{color: #157df1; text-align: center; margin-bottom: 20px; font-weight: normal;}
  2883. .sdk-common>h3{color: #666; font-size: 16px; text-align: center; margin-bottom: 50px; font-weight: normal;}
  2884. .sdk-system .list .con{text-align: center;}
  2885. .sdk-system .list .con1{border-right: 1px solid #e5e5e5;}
  2886. .sdk-system .list .con img{margin: 0 auto 20px;}
  2887. .sdk-system .list .con>h3{text-align: center; color: #333; margin-bottom: 15px; font-weight: normal;}
  2888. .sdk-system .list .con .s-btn{width: 165px; padding: 0; height: 46px; line-height: 46px; border-radius: 30px; display: block; margin: 0 auto; font-size: 18px; margin-bottom: 15px;}
  2889. .sdk-system .list .con .s-btn2{background-color: #13c960; color: #fff;}
  2890. .sdk-system .list .con .s-btn2:hover{background-color: #72dd9f;}
  2891. .sdk-system .list .con .instructions{color: #666; font-size: 18px;}
  2892. .sdk-system .list .con .instructions1:hover{color: #157df1; text-decoration: underline;}
  2893. .sdk-system .list .con .instructions2:hover{color: #13c960; text-decoration: underline;}
  2894. .sdk-solve .ms-thumbnail .img-wrap{height: 190px; margin-bottom: 20px;}
  2895. .sdk-statistical{padding: 70px 0;}
  2896. .sdk-statistical .ms-thumbnail .img-wrap{height: 155px; display: flex; align-items: flex-end;}
  2897. .sdk-statistical .ms-thumbnail .tit{margin-bottom: 0;}
  2898. .sdk-help>h1{text-align: center; color: #157df1; margin-bottom: 50px; font-weight: normal;}
  2899. /*----------/SDK----------*/
  2900. /*----------免责声明----------*/
  2901. .disclaimer{padding: 75px 60px; min-height: 580px;}
  2902. .disclaimer h1{text-align: center; color: #333; margin-bottom: 50px;}
  2903. .disclaimer p{line-height: 1.8; color: #333; font-size: 16px; margin-bottom: 35px;}
  2904. /*----------/免责声明----------*/
  2905. /*----------推广大使----------*/
  2906. /*2019/4/1日改版*/
  2907. .ambassador-common{padding: 70px 0;}
  2908. .ambassador-common .h1{color: #333; text-align: center; margin-bottom: 20px;}
  2909. .ambassador-common .h5{font-size: 16px; text-align: center; margin-bottom: 45px; line-height: 24px;}
  2910. .ambassador-banner-wrap{background: url("../img/tt-0.jpg?20190401") no-repeat center; height: 430px; display: block; padding-top: 110px;}
  2911. .ambassador-banner{color: #fff; padding-left: 40px;}
  2912. .ambassador-banner .h1{font-weight: 600; margin-bottom: 15px; text-shadow: 2px 2px 0 #0b58b6;}
  2913. .ambassador-banner .h1 span{color: #ffe401; font-size: 44px;}
  2914. .ambassador-banner p{font-size: 18px; margin-bottom: 25px;}
  2915. .ambassador-banner .b-btn{color: #157df1; width: 160px; padding: 9px; background-color: #fff; font-size: 16px;}
  2916. .ambassador-join .ms-thumbnail .ms-caption p{height: 60px;}
  2917. .ambassador-service-wrap{background: url("../img/ttt-banner.jpg?2019") no-repeat center;}
  2918. .ambassador-service .h1{color: #fff;}
  2919. .ambassador-service .h5{color: #fff;}
  2920. .ambassador-service .ms-thumbnail{background-color: #fff; padding: 40px 0;}
  2921. .ambassador-service .ms-thumbnail .ms-caption p{height: 40px;}
  2922. /*.promote-process-wrap{background-color: #ecf4fd;}*/
  2923. .promote-process .h1{margin-bottom: 60px;}
  2924. .promote-process ul li{float: left; height: 220px; padding-top: 30px;}
  2925. .promote-process ul li:nth-child(even){width: 60px; background: url("../img/tt-8.png") no-repeat center;}
  2926. .promote-process ul li:nth-child(odd){width: calc((100% - 180px) / 4); background-color: #fff; box-shadow: 0 0 10px rgba(18,112,246,.2);}
  2927. .promote-process .ms-thumbnail .ms-caption{padding: 0 20px;}
  2928. .promote-process .ms-thumbnail .ms-caption .tit{font-size: 16px; margin-bottom: 10px;}
  2929. .promote-process .ms-thumbnail .ms-caption .tit img{margin-bottom: 0; vertical-align: text-bottom; display: inline-block;}
  2930. /*.promote-process .ms-thumbnail .ms-caption .tit img{float: left;}*/
  2931. .ambassador-help .tit{color: #333;}
  2932. .join-ambassador{background: url("../img/tt-9.jpg") no-repeat center; height: 200px; display: block; text-align: center; padding-top: 55px;}
  2933. .join-ambassador .h1{font-weight: 600; margin-bottom: 25px; color: #fff; letter-spacing: 10px;}
  2934. .join-ambassador .h1 span{margin: 0 20px;}
  2935. .join-ambassador .ms-btn{width: 110px; font-size: 16px; border: 1px solid #fff; color: #fff;}
  2936. /*----------/推广大使----------*/
  2937. /*右侧悬停*/
  2938. .fixed-right{position: fixed; right: 0; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); z-index: 999;/* display: none;*/}
  2939. .fixed-right li{width: 80px; height: 80px; border: 1px solid #e5e5e5; display: flex; justify-content: center; align-items: center; background-color: #fff; cursor: pointer; position: relative;}
  2940. .fixed-right li+li{border-top: transparent;}
  2941. .fixed-right li .iconfont{color: #999;}
  2942. .fixed-right li .icon-qq{font-size: 30px;}
  2943. .fixed-right li .icon-weixin1{font-size: 25px;}
  2944. .fixed-right li .icon-go-top{font-size: 36px;}
  2945. .fixed-right li .wechat{background: url("../img/img-15.png") no-repeat; width: 146px; height: 135px; position: absolute; top: -18px; right: calc(100% + 10px); padding: 10px 0 0 10px; z-index: 1000; display: none; transition: all 600ms;}
  2946. .fixed-right li:hover .wechat{display: block;}
  2947. .fixed-right li:hover .iconfont{color: #157df1;}
  2948. .fixed-right li .wechat img{width: 115px; height: 115px;}
  2949. .fixed-right .go-top{display: none;}
  2950. /*/右侧悬停*/
  2951. /*弹窗*/
  2952. /*
  2953. .ms-modal .modal-body{padding: 30px;}
  2954. .ms-modal .modal-title{color: #333; text-align: center; font-weight: 600; font-size: 16px;}
  2955. .ms-modal .modal-header{border-bottom: none; padding: 25px 15px 0;}
  2956. */
  2957. /*模板页弹窗提示*/
  2958. #templateModal .modal-content{background-color: #fffeff;}
  2959. #templateModal .modal-body{padding: 0;}
  2960. #templateModal .template-modal{padding-bottom: 30px;}
  2961. #templateModal .m-top{background: no-repeat center; height: 130px; background-size: cover; padding-top: 25px; border-radius: 6px 6px 0 0;}
  2962. #templateModal .m-top .title1{color: #fff; font-size: 40px; text-align: center; font-weight: 600;}
  2963. #templateModal .m-top .title2{color: #fff; font-size: 16px; font-weight: 600; text-align: center; padding: 0 15px;}
  2964. #templateModal .m-top .title2 span{font-size: 20px;}
  2965. #templateModal .modal-p{color: #333; padding: 20px 30px;}
  2966. #templateModal .modal-btn{display: block; width: calc(100% - 60px); margin: 0 30px; border-radius: 20px; box-shadow: 0 5px 10px rgba(21,125,241,.4); cursor: pointer;}
  2967. #templateModal .modal-btn1{background-color: #fd6835; border-color: #fd6835; box-shadow: 0 5px 10px rgba(253,104,53,.4);}
  2968. #templateModal .modal-btn2{background-color: #5342ff; border-color: #5342ff; box-shadow: 0 5px 10px rgba(83,66,255,.3);}
  2969. /*/模板页弹窗提示*/
  2970. /*通用弹窗*/
  2971. /*#generalModal{padding-right: 0 !important;}*/
  2972. #generalModal .title{margin-bottom: 5px;}
  2973. #generalModal .modal-p{margin-bottom: 15px;}
  2974. #generalModal .cancel-btn{margin-right: 10px;}
  2975. #generalModal .cancel-btn:empty{display: none;}
  2976. #generalModal .success-btn:empty{display: none;}
  2977. #generalModal .title:empty{display: none;}
  2978. #generalModal .modal-p:empty{display: none;}
  2979. /*/通用弹窗*/
  2980. #myModalPay .modal-header{border-bottom: 1px solid #e5e5e5; padding: 15px;}
  2981. /*超出文件大小300m*/
  2982. .beyond-file p{line-height: 24px; margin-top: 15px;}
  2983. .beyond-file p a{color: #157df1;}
  2984. .beyond-file .ms-btn-primary{width: 90px; margin-top: 15px;}
  2985. /*我的应用 合并应用*/
  2986. .ms-modal .app-list{height: 380px; overflow-y: auto;}
  2987. .ms-modal .app-list li{float: left; width: 25%; padding: 0 10px 30px; text-align: center; cursor: pointer;}
  2988. .ms-modal .app-list li .img-wrap{position: relative; width: 51px; height: 51px; margin: 0 auto; overflow: hidden;}
  2989. .ms-modal .app-list li img{width: 51px; border-radius: 15px; border: 1px solid #e5e5e5;}
  2990. .ms-modal .app-list li .tit{color: #333; margin-top: 5px;}
  2991. .ms-modal .app-list li p{color: #666;}
  2992. .ms-modal .app-list li .img-wrap .shadow{position: absolute; left: 0; top: 0; background-color: rgba(0,0,0,.6); width: 100%; height: 100%; display: none;}
  2993. .ms-modal .app-list li.active .img-wrap .shadow{display: block;}
  2994. .ms-modal .app-list li .img-wrap .shadow .icon-gou{color: #fff; font-size: 18px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);}
  2995. /*我的应用 确定合并应用*/
  2996. .marge-common .merge-app{padding: 0 70px;}
  2997. .marge-common .merge-app li{float: left; width: 33.33333%; text-align: center;}
  2998. .marge-common .merge-app li.center{background: url("../img/icon-20.png") no-repeat center; height: 110px;}
  2999. .marge-common .merge-app li img{width: 100px; height: 100px; border-radius: 12px}
  3000. .marge-common .merge-app li .icon{position: relative; top: 2px;}
  3001. .marge-common dl.bottom{font-size: 12px; color: #333; border-top: 1px solid #e5e5e5; padding-top: 20px; margin-top: 25px;}
  3002. .marge-common dl.bottom dt{color: #333; font-weight: 600; margin-bottom: 5px;}
  3003. /*下载更多尺寸*/
  3004. #myModal3 .modal-dialog{width: 400px;}
  3005. #myModal3 .modal-content .size-list{padding-left: 50px; padding-right: 50px;}
  3006. #myModal3 .modal-title{text-align: left;}
  3007. #myModal3 .size-list dl{margin-bottom: 15px;}
  3008. #myModal3 .size-list dt{color: #333; margin-top: 6px;}
  3009. #myModal3 .size-list .iconfont{color: #157df1; font-size: 20px;}
  3010. /*#myModal3 .size-list .iconfont:hover{color: #157df1;}*/
  3011. #UDIDModal .modal-dialog{width: 400px;}
  3012. #UDIDModal .modal-title{text-align: left;}
  3013. #UDIDModal .UDID{color: #333; max-height: 200px; overflow-y: auto;}
  3014. #UDIDModal .UDID li{line-height: 24px;}
  3015. /*自动消失弹窗*/
  3016. .auto-hide-modal .modal-content{background-color: transparent; box-shadow: none; border: none;}
  3017. .auto-hide-modal .auto-hide{background-color: #666; padding: 20px 25px; border-radius: 5px; display: inline-block; color: #fff;}
  3018. /*/自动消失弹窗*/
  3019. /*修改手机号弹窗*/
  3020. .change-phone-num{padding: 0 20px 20px 20px;}
  3021. .change-phone-num label{color: #333; margin-bottom: 5px; font-weight: 600;}
  3022. .change-phone-num .form-control{color: #333;}
  3023. /*/修改手机号弹窗*/
  3024. /*用户签名协议弹窗*/
  3025. #myModal5 .modal-body{padding-top: 20px;}
  3026. #myModal5 .con{line-height: 24px; max-height: 350px; overflow-y: auto;}
  3027. /*/用户签名协议弹窗*/
  3028. /*封装打包弹窗*/
  3029. #myModal6 .packaging{margin-top: 70px;}
  3030. #myModal6 .progress{height: 12px; border-radius: 6px; width: 94%;}
  3031. #myModal6 .progress-bar{background-color: #2e90fc;}
  3032. #myModal6 .progress-wrap .fr{margin-top: -4px;}
  3033. #myModal6 .packaging p{margin-top: 80px; font-size: 12px;}
  3034. /*/封装打包弹窗*/
  3035. /*举报弹窗*/
  3036. #reportModal .report .tit{font-size: 16px; color: #333; text-align: center; font-weight: 600; margin-bottom: 20px;}
  3037. #reportModal .report p{color: #666; font-size: 12px; line-height: 24px; padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #e5e5e5;}
  3038. #reportModal .report label{font-weight: 600; color: #333; margin-bottom: 5px;}
  3039. #reportModal .report label span{color: #ff4222; margin-left: 10px;}
  3040. #reportModal .report ul{margin-top: 5px;}
  3041. #reportModal .report ul li{float: left; margin-right: 35px; color: #333; cursor: pointer;}
  3042. #reportModal .report ul li span{position: relative; top: 3px; margin-right: 5px;}
  3043. #reportModal .report .btn-bottom{text-align: center; margin-top: 40px;}
  3044. #reportModal .report .btn-bottom .ms-btn-primary{width: 120px; padding: 9px 12px;}
  3045. #reportModal .report .form-error{position: relative;}
  3046. #reportModal .report .error{position: absolute; top: 100%; left: 0; display: none; color: #ff4222;}
  3047. #reportModal .report .form-error .error{display: block;}
  3048. /*/举报弹窗*/
  3049. /*发票弹窗*/
  3050. #invoiceModal .user-center1 .invoice-management .make-invoice-details{border: none; height: auto; padding: 0;}
  3051. #invoiceModal .user-center1 .invoice-management .make-invoice-details .color-hover{padding-left: 0;}
  3052. /*/发票弹窗*/
  3053. /*删除APP弹窗*/
  3054. #deleteAppModal .modal-dialog{width: 470px;}
  3055. #deleteAppModal .modal-body{position: relative; padding: 30px 20px;}
  3056. #deleteAppModal .modal-body .delete-prompt{}
  3057. #deleteAppModal .modal-body .title{margin: 0 0 5px;}
  3058. #deleteAppModal .modal-body .modal-p{font-size: 12px; color: #fd641d; margin-bottom: 15px;}
  3059. #deleteAppModal .modal-body .form-horizontal{margin-bottom: 15px;}
  3060. #deleteAppModal .modal-body .form-group{margin: 0 -5px 5px;}
  3061. #deleteAppModal .modal-body .col-sm-3, #deleteAppModal .modal-body .col-sm-8{padding: 0 5px;}
  3062. #deleteAppModal .modal-body .col-sm-3{padding-top: 5px; color: #333;}
  3063. #deleteAppModal .modal-body .form-group .form-control{height: 30px;}
  3064. #deleteAppModal .modal-body .form-group .error{display: none;}
  3065. #deleteAppModal .modal-body .cancel-btn{margin-right: 30px;}
  3066. /*/删除APP弹窗*/
  3067. /*/弹窗*/
  3068. /*兼容平板*/
  3069. @media (min-width: 768px) and (max-width: 1199px) {
  3070. .footer .left dl{margin-right: 70px;}
  3071. .publicity li{padding: 35px 20px; height: auto;}
  3072. .publicity li p{height: 72px;}
  3073. }
  3074. @media (width: 768px) {
  3075. .footer>.clearfix>a{display: none;}
  3076. .publicity li p{height: 96px;}
  3077. .closed-beta-distribution .con .con-c{padding-bottom: 25px;}
  3078. .closed-beta-distribution .con .con-c h4{font-size: 16px;}
  3079. .closed-beta-distribution .con .con-c p{margin-top: 15px; height: 72px; padding: 0 10px;}
  3080. }