sso

index.css 68KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661
  1. .swiper-container {
  2. margin-left: auto;
  3. margin-right: auto;
  4. position: relative;
  5. overflow: hidden;
  6. z-index: 1
  7. }
  8. .swiper-container-no-flexbox .swiper-slide {
  9. float: left
  10. }
  11. .swiper-container-vertical>.swiper-wrapper {
  12. -webkit-box-orient: vertical;
  13. -moz-box-orient: vertical;
  14. -ms-flex-direction: column;
  15. -webkit-flex-direction: column;
  16. flex-direction: column
  17. }
  18. .swiper-wrapper {
  19. position: relative;
  20. width: 100%;
  21. height: 100%;
  22. z-index: 1;
  23. display: -webkit-box;
  24. display: -moz-box;
  25. display: -ms-flexbox;
  26. display: -webkit-flex;
  27. display: flex;
  28. -webkit-transition-property: -webkit-transform;
  29. -moz-transition-property: -moz-transform;
  30. transition-property: -webkit-transform;
  31. -moz-transition-property: transform,-moz-transform;
  32. transition-property: transform;
  33. transition-property: transform,-webkit-transform,-moz-transform;
  34. -webkit-box-sizing: content-box;
  35. -moz-box-sizing: content-box;
  36. box-sizing: content-box
  37. }
  38. .swiper-container-android .swiper-slide,.swiper-wrapper {
  39. -webkit-transform: translateZ(0);
  40. -moz-transform: translateZ(0);
  41. -ms-transform: translateZ(0);
  42. transform: translateZ(0)
  43. }
  44. .swiper-container-multirow>.swiper-wrapper {
  45. -webkit-box-lines: multiple;
  46. -moz-box-lines: multiple;
  47. -ms-flex-wrap: wrap;
  48. -webkit-flex-wrap: wrap;
  49. flex-wrap: wrap
  50. }
  51. .swiper-container-free-mode>.swiper-wrapper {
  52. -webkit-transition-timing-function: ease-out;
  53. -moz-transition-timing-function: ease-out;
  54. transition-timing-function: ease-out;
  55. margin: 0 auto
  56. }
  57. .swiper-slide {
  58. -webkit-flex-shrink: 0;
  59. -ms-flex: 0 0 auto;
  60. -ms-flex-negative: 0;
  61. flex-shrink: 0;
  62. width: 100%;
  63. height: 100%;
  64. position: relative
  65. }
  66. .swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
  67. height: auto
  68. }
  69. .swiper-container-autoheight .swiper-wrapper {
  70. -webkit-box-align: start;
  71. -ms-flex-align: start;
  72. -webkit-align-items: flex-start;
  73. -moz-box-align: start;
  74. align-items: flex-start;
  75. -webkit-transition-property: -webkit-transform,height;
  76. -moz-transition-property: -moz-transform;
  77. -webkit-transition-property: height,-webkit-transform;
  78. transition-property: height,-webkit-transform;
  79. -moz-transition-property: transform,height,-moz-transform;
  80. transition-property: transform,height;
  81. transition-property: transform,height,-webkit-transform,-moz-transform
  82. }
  83. .swiper-container .swiper-notification {
  84. position: absolute;
  85. left: 0;
  86. top: 0;
  87. pointer-events: none;
  88. opacity: 0;
  89. z-index: -1000
  90. }
  91. .swiper-wp8-horizontal {
  92. -ms-touch-action: pan-y;
  93. touch-action: pan-y
  94. }
  95. .swiper-wp8-vertical {
  96. -ms-touch-action: pan-x;
  97. touch-action: pan-x
  98. }
  99. .swiper-button-next,.swiper-button-prev {
  100. position: absolute;
  101. top: 50%;
  102. width: 27px;
  103. height: 44px;
  104. margin-top: -22px;
  105. z-index: 10;
  106. cursor: pointer;
  107. background-size: 27px 44px;
  108. background-position: 50%;
  109. background-repeat: no-repeat
  110. }
  111. .swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
  112. opacity: .35;
  113. cursor: auto;
  114. pointer-events: none
  115. }
  116. /* .swiper-button-prev,.swiper-container-rtl .swiper-button-next {
  117. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
  118. left: 10px;
  119. right: auto
  120. } */
  121. /*
  122. .swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black {
  123. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
  124. }
  125. .swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white {
  126. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
  127. }
  128. .swiper-button-next,.swiper-container-rtl .swiper-button-prev {
  129. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
  130. right: 10px;
  131. left: auto
  132. }
  133. .swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  134. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
  135. }
  136. .swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  137. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
  138. } */
  139. .swiper-pagination {
  140. position: absolute;
  141. text-align: center;
  142. -webkit-transition: .3s;
  143. -moz-transition: .3s;
  144. transition: .3s;
  145. -webkit-transform: translateZ(0);
  146. -ms-transform: translateZ(0);
  147. -moz-transform: translateZ(0);
  148. transform: translateZ(0);
  149. z-index: 10
  150. }
  151. .swiper-pagination.swiper-pagination-hidden {
  152. opacity: 0
  153. }
  154. .swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
  155. bottom: 10px;
  156. left: 0;
  157. width: 100%
  158. }
  159. .swiper-pagination-bullet {
  160. width: 8px;
  161. height: 8px;
  162. display: inline-block;
  163. border-radius: 100%;
  164. background: #000;
  165. opacity: .2
  166. }
  167. button.swiper-pagination-bullet {
  168. border: none;
  169. margin: 0;
  170. padding: 0;
  171. -webkit-box-shadow: none;
  172. box-shadow: none;
  173. -moz-appearance: none;
  174. -ms-appearance: none;
  175. -webkit-appearance: none;
  176. appearance: none
  177. }
  178. .swiper-pagination-clickable .swiper-pagination-bullet {
  179. cursor: pointer
  180. }
  181. .swiper-pagination-white .swiper-pagination-bullet {
  182. background: #fff
  183. }
  184. .swiper-pagination-bullet-active {
  185. opacity: 1;
  186. background: #007aff
  187. }
  188. .swiper-pagination-white .swiper-pagination-bullet-active {
  189. background: #fff
  190. }
  191. .swiper-pagination-black .swiper-pagination-bullet-active {
  192. background: #000
  193. }
  194. .swiper-container-vertical>.swiper-pagination-bullets {
  195. right: 10px;
  196. top: 50%;
  197. -webkit-transform: translate3d(0,-50%,0);
  198. -moz-transform: translate3d(0,-50%,0);
  199. -ms-transform: translate3d(0,-50%,0);
  200. transform: translate3d(0,-50%,0)
  201. }
  202. .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  203. margin: 5px 0;
  204. display: block
  205. }
  206. .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  207. margin: 0 5px
  208. }
  209. .swiper-pagination-progress {
  210. background: rgba(0,0,0,.25);
  211. position: absolute
  212. }
  213. .swiper-pagination-progress .swiper-pagination-progressbar {
  214. background: #007aff;
  215. position: absolute;
  216. left: 0;
  217. top: 0;
  218. width: 100%;
  219. height: 100%;
  220. -webkit-transform: scale(0);
  221. -ms-transform: scale(0);
  222. -moz-transform: scale(0);
  223. transform: scale(0);
  224. -webkit-transform-origin: left top;
  225. -moz-transform-origin: left top;
  226. -ms-transform-origin: left top;
  227. transform-origin: left top
  228. }
  229. .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  230. -webkit-transform-origin: right top;
  231. -moz-transform-origin: right top;
  232. -ms-transform-origin: right top;
  233. transform-origin: right top
  234. }
  235. .swiper-container-horizontal>.swiper-pagination-progress {
  236. width: 100%;
  237. height: 4px;
  238. left: 0;
  239. top: 0
  240. }
  241. .swiper-container-vertical>.swiper-pagination-progress {
  242. width: 4px;
  243. height: 100%;
  244. left: 0;
  245. top: 0
  246. }
  247. .swiper-pagination-progress.swiper-pagination-white {
  248. background: hsla(0,0%,100%,.5)
  249. }
  250. .swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  251. background: #fff
  252. }
  253. .swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  254. background: #000
  255. }
  256. .swiper-container-3d {
  257. -webkit-perspective: 1200px;
  258. -moz-perspective: 1200px;
  259. -o-perspective: 1200px;
  260. perspective: 1200px
  261. }
  262. .swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
  263. -webkit-transform-style: preserve-3d;
  264. -moz-transform-style: preserve-3d;
  265. transform-style: preserve-3d
  266. }
  267. .swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
  268. position: absolute;
  269. left: 0;
  270. top: 0;
  271. width: 100%;
  272. height: 100%;
  273. pointer-events: none;
  274. z-index: 10
  275. }
  276. .swiper-container-3d .swiper-slide-shadow-left {
  277. background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(transparent));
  278. background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),transparent);
  279. background-image: -moz-linear-gradient(right,rgba(0,0,0,.5),transparent);
  280. background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(transparent));
  281. background-image: linear-gradient(270deg,rgba(0,0,0,.5),transparent)
  282. }
  283. .swiper-container-3d .swiper-slide-shadow-right {
  284. background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(transparent));
  285. background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),transparent);
  286. background-image: -moz-linear-gradient(left,rgba(0,0,0,.5),transparent);
  287. background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(transparent));
  288. background-image: linear-gradient(90deg,rgba(0,0,0,.5),transparent)
  289. }
  290. .swiper-container-3d .swiper-slide-shadow-top {
  291. background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(transparent));
  292. background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),transparent);
  293. background-image: -moz-linear-gradient(bottom,rgba(0,0,0,.5),transparent);
  294. background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(transparent));
  295. background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent)
  296. }
  297. .swiper-container-3d .swiper-slide-shadow-bottom {
  298. background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(transparent));
  299. background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),transparent);
  300. background-image: -moz-linear-gradient(top,rgba(0,0,0,.5),transparent);
  301. background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(transparent));
  302. background-image: linear-gradient(180deg,rgba(0,0,0,.5),transparent)
  303. }
  304. .swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper {
  305. -ms-perspective: 1200px
  306. }
  307. .swiper-container-cube,.swiper-container-flip {
  308. overflow: visible
  309. }
  310. .swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide {
  311. pointer-events: none;
  312. -webkit-backface-visibility: hidden;
  313. -moz-backface-visibility: hidden;
  314. backface-visibility: hidden;
  315. z-index: 1
  316. }
  317. .swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide {
  318. pointer-events: none
  319. }
  320. .swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  321. pointer-events: auto
  322. }
  323. .swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
  324. z-index: 0;
  325. -webkit-backface-visibility: hidden;
  326. -moz-backface-visibility: hidden;
  327. backface-visibility: hidden
  328. }
  329. .swiper-container-cube .swiper-slide {
  330. visibility: hidden;
  331. -webkit-transform-origin: 0 0;
  332. -moz-transform-origin: 0 0;
  333. -ms-transform-origin: 0 0;
  334. transform-origin: 0 0;
  335. width: 100%;
  336. height: 100%
  337. }
  338. .swiper-container-cube.swiper-container-rtl .swiper-slide {
  339. -webkit-transform-origin: 100% 0;
  340. -moz-transform-origin: 100% 0;
  341. -ms-transform-origin: 100% 0;
  342. transform-origin: 100% 0
  343. }
  344. .swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
  345. pointer-events: auto;
  346. visibility: visible
  347. }
  348. .swiper-container-cube .swiper-cube-shadow {
  349. position: absolute;
  350. left: 0;
  351. bottom: 0;
  352. width: 100%;
  353. height: 100%;
  354. background: #000;
  355. opacity: .6;
  356. -webkit-filter: blur(50px);
  357. filter: blur(50px);
  358. z-index: 0
  359. }
  360. .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  361. -webkit-transition-timing-function: ease-out;
  362. -moz-transition-timing-function: ease-out;
  363. transition-timing-function: ease-out
  364. }
  365. .swiper-container-fade .swiper-slide {
  366. pointer-events: none;
  367. -webkit-transition-property: opacity;
  368. -moz-transition-property: opacity;
  369. transition-property: opacity
  370. }
  371. .swiper-container-fade .swiper-slide .swiper-slide {
  372. pointer-events: none
  373. }
  374. .swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  375. pointer-events: auto
  376. }
  377. .swiper-zoom-container {
  378. width: 100%;
  379. height: 100%;
  380. display: -webkit-box;
  381. display: -moz-box;
  382. display: -ms-flexbox;
  383. display: -webkit-flex;
  384. display: flex;
  385. -webkit-box-pack: center;
  386. -moz-box-pack: center;
  387. -ms-flex-pack: center;
  388. -webkit-justify-content: center;
  389. justify-content: center;
  390. -webkit-box-align: center;
  391. -moz-box-align: center;
  392. -ms-flex-align: center;
  393. -webkit-align-items: center;
  394. align-items: center;
  395. text-align: center
  396. }
  397. .swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
  398. max-width: 100%;
  399. max-height: 100%;
  400. object-fit: contain
  401. }
  402. .swiper-scrollbar {
  403. border-radius: 10px;
  404. position: relative;
  405. -ms-touch-action: none;
  406. background: rgba(0,0,0,.1)
  407. }
  408. .swiper-container-horizontal>.swiper-scrollbar {
  409. position: absolute;
  410. left: 1%;
  411. bottom: 3px;
  412. z-index: 50;
  413. height: 5px;
  414. width: 98%
  415. }
  416. .swiper-container-vertical>.swiper-scrollbar {
  417. position: absolute;
  418. right: 3px;
  419. top: 1%;
  420. z-index: 50;
  421. width: 5px;
  422. height: 98%
  423. }
  424. .swiper-scrollbar-drag {
  425. height: 100%;
  426. width: 100%;
  427. position: relative;
  428. background: rgba(0,0,0,.5);
  429. border-radius: 10px;
  430. left: 0;
  431. top: 0
  432. }
  433. .swiper-scrollbar-cursor-drag {
  434. cursor: move
  435. }
  436. .swiper-lazy-preloader {
  437. width: 42px;
  438. height: 42px;
  439. position: absolute;
  440. left: 50%;
  441. top: 50%;
  442. margin-left: -21px;
  443. margin-top: -21px;
  444. z-index: 10;
  445. -webkit-transform-origin: 50%;
  446. -moz-transform-origin: 50%;
  447. -ms-transform-origin: 50%;
  448. transform-origin: 50%;
  449. -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
  450. -moz-animation: swiper-preloader-spin 1s steps(12) infinite;
  451. animation: swiper-preloader-spin 1s steps(12) infinite
  452. }
  453. .swiper-lazy-preloader:after {
  454. display: block;
  455. content: "";
  456. width: 100%;
  457. height: 100%;
  458. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
  459. background-position: 50%;
  460. background-size: 100%;
  461. background-repeat: no-repeat
  462. }
  463. .swiper-lazy-preloader-white:after {
  464. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
  465. }
  466. @-webkit-keyframes swiper-preloader-spin {
  467. to {
  468. -webkit-transform: rotate(1turn)
  469. }
  470. }
  471. @-moz-keyframes swiper-preloader-spin {
  472. to {
  473. -moz-transform: rotate(1turn);
  474. transform: rotate(1turn)
  475. }
  476. }
  477. @keyframes swiper-preloader-spin {
  478. to {
  479. -webkit-transform: rotate(1turn);
  480. -moz-transform: rotate(1turn);
  481. transform: rotate(1turn)
  482. }
  483. }
  484. .banner-container {
  485. height: 420px;
  486. width: 100%
  487. }
  488. .banner-container .no-visual {
  489. visibility: hidden
  490. }
  491. .swiper-container {
  492. width: 100%;
  493. height: 100%
  494. }
  495. .swiper-container .swiper-bg {
  496. position: absolute;
  497. width: 100%;
  498. height: 100%;
  499. background-size: cover;
  500. background-position: 50%
  501. }
  502. .swiper-container .slide-1 img,.swiper-container .slide-2 img,.swiper-container .slide-3 img,.swiper-container .slide-4 img {
  503. width: 100%;
  504. height: 100%;
  505. display: block;
  506. position: absolute
  507. }
  508. .swiper-container .slide-1 .content-wrapper,.swiper-container .slide-2 .content-wrapper,.swiper-container .slide-3 .content-wrapper,.swiper-container .slide-4 .content-wrapper {
  509. position: absolute;
  510. width: 1100px;
  511. height: 100%;
  512. top: 0;
  513. left: 0;
  514. right: 0;
  515. bottom: 0;
  516. margin: auto
  517. }
  518. @media screen and (max-width:1100px) {
  519. .swiper-container .slide-1 .content-wrapper,.swiper-container .slide-2 .content-wrapper,.swiper-container .slide-3 .content-wrapper,.swiper-container .slide-4 .content-wrapper {
  520. width: 1000px
  521. }
  522. }
  523. .swiper-container .slide-1 .content-wrapper h3,.swiper-container .slide-2 .content-wrapper h3,.swiper-container .slide-3 .content-wrapper h3,.swiper-container .slide-4 .content-wrapper h3 {
  524. font-size: 44px;
  525. margin: 100px 0 7px;
  526. line-height: 62px
  527. }
  528. .swiper-container .slide-1 .content-wrapper a.primary,.swiper-container .slide-2 .content-wrapper a.primary,.swiper-container .slide-3 .content-wrapper a.primary,.swiper-container .slide-4 .content-wrapper a.primary {
  529. width: 160px;
  530. height: 40px;
  531. line-height: 18px;
  532. display: inline-block;
  533. text-align: center;
  534. -webkit-box-sizing: border-box;
  535. -moz-box-sizing: border-box;
  536. box-sizing: border-box
  537. }
  538. .swiper-container .slide-1 p {
  539. font-size: 20px;
  540. color: #777;
  541. margin-bottom: 55px
  542. }
  543. .swiper-container .slide-1 small {
  544. font-size: 14px;
  545. color: #777;
  546. margin-top: 15px;
  547. display: block
  548. }
  549. .swiper-container .slide-1 h3 {
  550. color: #333
  551. }
  552. .swiper-container .slide-1 .inner-img {
  553. height: auto;
  554. width: auto;
  555. position: absolute;
  556. right: 0;
  557. top: 100px
  558. }
  559. .swiper-container .slide-1 .x-title-bn {
  560. line-height: 26px
  561. }
  562. .swiper-container .slide-2 p {
  563. font-size: 20px;
  564. color: #777;
  565. margin-bottom: 55px
  566. }
  567. .swiper-container .slide-2 h3 {
  568. color: #333
  569. }
  570. .swiper-container .slide-2 small {
  571. font-size: 14px;
  572. color: #777;
  573. margin-top: 15px;
  574. display: block
  575. }
  576. .swiper-container .slide-3 p {
  577. font-size: 20px;
  578. color: #fff;
  579. margin-bottom: 55px
  580. }
  581. .swiper-container .slide-3 h3,.swiper-container .slide-4 {
  582. color: #fff
  583. }
  584. .swiper-container .slide-4 .content-wrapper h3 {
  585. font-size: 34px;
  586. line-height: 54px
  587. }
  588. .swiper-container .slide-4 .content-wrapper .inner-img {
  589. width: 803px;
  590. height: 420px;
  591. position: absolute;
  592. right: -180px;
  593. top: 50%;
  594. margin-top: -210px
  595. }
  596. .swiper-container .slide-4 .content-wrapper a.white-bg-button {
  597. background-color: #fff;
  598. padding: 12px 42px;
  599. line-height: 1;
  600. margin-top: 62px;
  601. display: inline-block;
  602. *zoom: 1;
  603. *display: inline
  604. }
  605. .swiper-container .swiper-button-container {
  606. width: 1100px;
  607. height: 100%;
  608. position: absolute;
  609. top: 0;
  610. right: 0;
  611. bottom: 0;
  612. left: 0;
  613. margin: auto
  614. }
  615. @media screen and (max-width:1100px) {
  616. .swiper-container .swiper-button-container {
  617. width: 1000px
  618. }
  619. }
  620. .swiper-container .custom-prev {
  621. right: 1130px;
  622. left: auto;
  623. width: 60px;
  624. height: 60px;
  625. background-size: 100% 100%;
  626. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/L.png")
  627. }
  628. @media screen and (max-width:1100px) {
  629. .swiper-container .custom-prev {
  630. right: 1030px
  631. }
  632. }
  633. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  634. .swiper-container .custom-prev {
  635. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/L@2x.png")
  636. }
  637. }
  638. .swiper-container .custom-next {
  639. left: 1130px;
  640. right: auto;
  641. width: 60px;
  642. height: 60px;
  643. background-size: 100% 100%;
  644. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/R.png")
  645. }
  646. @media screen and (max-width:1100px) {
  647. .swiper-container .custom-next {
  648. left: 1030px
  649. }
  650. }
  651. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  652. .swiper-container .custom-next {
  653. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/R@2x.png")
  654. }
  655. }
  656. .swiper-container .swiper-pagination-bullet {
  657. width: 50px;
  658. height: 3px;
  659. border-radius: 0;
  660. opacity: .5;
  661. background: #fff;
  662. -webkit-transition: all .3s ease;
  663. -moz-transition: all .3s ease;
  664. transition: all .3s ease;
  665. position: relative
  666. }
  667. .swiper-container .swiper-pagination-bullet:after {
  668. content: " ";
  669. position: absolute;
  670. top: -18.5px;
  671. bottom: -18.5px;
  672. left: 0;
  673. right: 0
  674. }
  675. .swiper-container .swiper-pagination-bullet-active {
  676. background: #fff;
  677. opacity: 1
  678. }
  679. a.button {
  680. font-size: 14px;
  681. padding: 12px 22px;
  682. text-decoration: none;
  683. border-radius: 2px
  684. }
  685. a.primary {
  686. background: #38f;
  687. padding: 12px 42px;
  688. color: #fff
  689. }
  690. a.primary:hover {
  691. background: #1573f7
  692. }
  693. a.white {
  694. border: 1px solid #38f;
  695. padding: 11px 21px
  696. }
  697. a.white:hover {
  698. background: #38f;
  699. color: #fff
  700. }
  701. a.ml20 {
  702. margin-left: 20px
  703. }
  704. a.red-button {
  705. color: red
  706. }
  707. a.pink-button,a.red-button {
  708. background-color: #fff;
  709. padding: 12px 42px
  710. }
  711. a.pink-button {
  712. color: #eb737f
  713. }
  714. .main-container .wrapper {
  715. max-width: 1100px;
  716. margin: 0 auto;
  717. position: relative;
  718. zoom: 1
  719. }
  720. @media (max-width:1100px) {
  721. .main-container .wrapper {
  722. max-width: 1000px
  723. }
  724. }
  725. .main-container .wrapper h3 {
  726. text-align: center;
  727. font-size: 28px;
  728. color: #333;
  729. line-height: 40px;
  730. padding-top: 90px
  731. }
  732. .main-container .wrapper:after {
  733. content: "";
  734. display: table;
  735. clear: both
  736. }
  737. .main-container .wrapper .intro-img {
  738. position: absolute
  739. }
  740. .main-container .button-container {
  741. text-align: center;
  742. margin-top: 20px;
  743. margin-bottom: 50px
  744. }
  745. .main-container .strong {
  746. font-size: 18px;
  747. color: #333;
  748. line-height: 24px
  749. }
  750. .main-container .desc {
  751. font-size: 14px;
  752. color: #999;
  753. line-height: 24px
  754. }
  755. .main-container .ls,.main-container .wsc {
  756. zoom: 1;
  757. margin-top: 40px;
  758. width: 435px
  759. }
  760. .main-container .ls:after,.main-container .wsc:after {
  761. content: "";
  762. display: table;
  763. clear: both
  764. }
  765. .main-container .ls .block,.main-container .wsc .block {
  766. margin-bottom: 60px;
  767. min-width: 168px
  768. }
  769. .main-container .ls .block .desc,.main-container .wsc .block .desc {
  770. margin-top: 10px
  771. }
  772. .main-container .ls .block {
  773. min-width: 182px
  774. }
  775. .main-container .wcard-container h3 {
  776. font-family: PingFangSC-Medium;
  777. font-size: 28px;
  778. color: #333;
  779. letter-spacing: 0
  780. }
  781. .main-container .wcard-container .wcard-content {
  782. display: -webkit-box;
  783. display: -webkit-flex;
  784. display: -moz-box;
  785. display: -ms-flexbox;
  786. display: flex;
  787. margin-top: 70px
  788. }
  789. .main-container .wcard-container .wcard-content .wcard-left {
  790. -webkit-box-flex: 1;
  791. -webkit-flex: 1;
  792. -moz-box-flex: 1;
  793. -ms-flex: 1;
  794. flex: 1;
  795. display: -webkit-box;
  796. display: -webkit-flex;
  797. display: -moz-box;
  798. display: -ms-flexbox;
  799. display: flex;
  800. -webkit-box-orient: vertical;
  801. -webkit-box-direction: normal;
  802. -webkit-flex-direction: column;
  803. -moz-box-orient: vertical;
  804. -moz-box-direction: normal;
  805. -ms-flex-direction: column;
  806. flex-direction: column
  807. }
  808. .main-container .wcard-container .wcard-content .wcard-left .wcard-section {
  809. margin-bottom:50px
  810. }
  811. .main-container .wcard-container .wcard-content .wcard-left .wcard-section .wcard-sectitle {
  812. color: #333;
  813. font-size: 18px;
  814. line-height: 24px;
  815. font-family: PingFangSC-Medium;
  816. letter-spacing: 0;
  817. position: relative;
  818. padding-left: 12px;
  819. }
  820. .main-container .wcard-container .wcard-content .wcard-left .wcard-section .wcard-sectitle:before{
  821. position: absolute;
  822. left: 0;
  823. top: 50%;
  824. width: 3px;
  825. height: 3px;
  826. background: #333333;
  827. content: "";
  828. border-radius: 50%;
  829. }
  830. .main-container .wcard-container .wcard-content .wcard-left .wcard-section .wcard-secsummary {
  831. margin-top: 5px;
  832. font-family: PingFangSC-Regular;
  833. font-size: 14px;
  834. color: #999;
  835. letter-spacing: 0;
  836. line-height: 24px
  837. }
  838. .main-container .wcard-container .wcard-content .wcard-right {
  839. /* width: 615px */
  840. }
  841. .main-container .wcard-container .wcard-content .wcard-right img {
  842. width: 100%
  843. }
  844. .main-container .wcard-container .wcard-reverse {
  845. -webkit-box-orient: horizontal;
  846. -webkit-box-direction: reverse;
  847. -webkit-flex-direction: row-reverse;
  848. -moz-box-orient: horizontal;
  849. -moz-box-direction: reverse;
  850. -ms-flex-direction: row-reverse;
  851. flex-direction: row-reverse
  852. }
  853. .main-container .wcard-container .wcard-reverse .wcard-left {
  854. padding-left: 72px
  855. }
  856. .main-container .wcard-container .wcard-reverse .wcard-right img {
  857. /* width: 112%; */
  858. margin-left: -10%
  859. }
  860. .main-container .weapp {
  861. margin-top: 80px
  862. }
  863. .main-container .weapp .desc-container {
  864. zoom: 1;
  865. margin-bottom: 33px
  866. }
  867. .main-container .weapp .desc-container:after {
  868. content: "";
  869. display: table;
  870. clear: both
  871. }
  872. .main-container .weapp .desc-container img {
  873. float: left
  874. }
  875. .main-container .weapp .desc-container .block {
  876. float: left;
  877. margin-left: 15px
  878. }
  879. .main-container .solutions-container {
  880. zoom: 1;
  881. width: 110%;
  882. margin-left: -5%;
  883. overflow: hidden;
  884. margin-top: 56px
  885. }
  886. .main-container .solutions-container:after {
  887. content: "";
  888. display: table;
  889. clear: both
  890. }
  891. .main-container .solutions-container .block {
  892. float: left;
  893. width: 16.66%;
  894. text-align: center;
  895. margin-bottom: 50px
  896. }
  897. .main-container .solutions-container .block p {
  898. margin-top: 15px;
  899. color: #333
  900. }
  901. .main-container a.button {
  902. font-size: 14px;
  903. padding: 10px 42px;
  904. border-radius: 2px;
  905. display: inline-block
  906. }
  907. .main-container a.blue {
  908. background-color: #38f;
  909. color: #fff
  910. }
  911. .main-container a.blue-outline {
  912. border: 1px solid #38f;
  913. color: #38f;
  914. padding: 9px 42px
  915. }
  916. .main-container a.green {
  917. background-color: #47c64d;
  918. color: #fff
  919. }
  920. .main-container a.green-outline {
  921. border: 1px solid #47c64d;
  922. color: #47c64d;
  923. padding: 9px 42px
  924. }
  925. .use_yz {
  926. width: 100%;
  927. background: #f8f8f8;
  928. padding-bottom: 40px
  929. }
  930. .use_yz .section-title {
  931. font-size: 28px;
  932. color: #333;
  933. line-height: 40px;
  934. text-align: center;
  935. margin: 0 auto 60px;
  936. padding-top: 90px
  937. }
  938. .use_yz .more-case {
  939. display: block;
  940. text-align: center;
  941. margin: 40px auto 0;
  942. width: 100px
  943. }
  944. .use_yz-container {
  945. width: 1120px;
  946. margin: 0 auto 10px
  947. }
  948. @media screen and (max-width:1100px) {
  949. .use_yz-container {
  950. width: 1000px
  951. }
  952. }
  953. .use_yz-container .case-container {
  954. zoom: 1;
  955. margin-left: -10px;
  956. margin-right: 10px;
  957. -webkit-box-pack: justify;
  958. -webkit-justify-content: space-between;
  959. -moz-box-pack: justify;
  960. -ms-flex-pack: justify;
  961. justify-content: space-between;
  962. }
  963. .use_yz-container .case-container:after {
  964. content: "";
  965. display: table;
  966. clear: both
  967. }
  968. .use_yz-container .case-container ul{
  969. display: -webkit-box;
  970. display: -webkit-flex;
  971. display: -moz-box;
  972. display: -ms-flexbox;
  973. display: flex;
  974. /* -webkit-box-orient: vertical;
  975. -webkit-box-direction: normal;
  976. -moz-box-orient: vertical;
  977. -moz-box-direction: normal;
  978. -webkit-box-pack: center; */
  979. -webkit-justify-content: space-between;
  980. /* -moz-box-pack: center;
  981. -ms-flex-pack: center; */
  982. justify-content: space-between;
  983. -webkit-box-sizing: border-box;
  984. -moz-box-sizing: border-box;
  985. box-sizing: border-box;
  986. }
  987. .use_yz-container .case-container ul li{
  988. -webkit-box-flex: 1;
  989. -moz-box-flex: 1;
  990. -webkit-flex: 1;
  991. -ms-flex: 1;
  992. flex: 1;
  993. position: relative;
  994. }
  995. .use_yz-container .case-container ul li p{
  996. width: 200px;
  997. position: absolute;
  998. top: 50%;
  999. left: 50%;
  1000. margin-left: -110px;
  1001. text-align: center;
  1002. margin-bottom: 0;
  1003. font-size: 22px;
  1004. font-weight: bold;
  1005. color: #fff;
  1006. height: 28px;
  1007. margin-top: -14px;
  1008. font-family: "sourcehansanscn bold";
  1009. }
  1010. .use_yz-container .img-container {
  1011. width: 33.3%;
  1012. height: 300px;
  1013. -webkit-box-sizing: border-box;
  1014. -moz-box-sizing: border-box;
  1015. box-sizing: border-box;
  1016. margin: 10px auto;
  1017. padding-left: 20px;
  1018. position: relative;
  1019. float: left;
  1020. overflow: hidden
  1021. }
  1022. .use_yz-container .img-container .bg-img {
  1023. width: 100%;
  1024. height: 150px;
  1025. background-size: cover;
  1026. background-position: 50%
  1027. }
  1028. .use_yz-container .img-container .bg-img:hover+.card {
  1029. top: 0
  1030. }
  1031. .use_yz-container .img-container .card {
  1032. position: absolute;
  1033. -webkit-box-sizing: border-box;
  1034. -moz-box-sizing: border-box;
  1035. box-sizing: border-box;
  1036. width: 100%;
  1037. height: 100%;
  1038. top: 150px;
  1039. padding-right: 20px;
  1040. background-color: #fff;
  1041. -webkit-transition: all .2s linear;
  1042. -moz-transition: all .2s linear;
  1043. transition: all .2s linear
  1044. }
  1045. .use_yz-container .img-container .card:hover {
  1046. top: 0
  1047. }
  1048. .use_yz-container .img-container .card>div {
  1049. position: relative;
  1050. width: 100%;
  1051. height: 100%
  1052. }
  1053. .use_yz-container .img-container .card .bg-logo {
  1054. position: absolute;
  1055. left: 30px;
  1056. top: 35px;
  1057. background-repeat: no-repeat;
  1058. background-size: contain
  1059. }
  1060. .use_yz-container .img-container .card .desc {
  1061. position: absolute;
  1062. font-size: 14px;
  1063. color: #666;
  1064. top: 95px;
  1065. left: 30px
  1066. }
  1067. .use_yz-container .img-container .card .detail {
  1068. position: absolute;
  1069. font-size: 14px;
  1070. color: #666;
  1071. line-height: 28px;
  1072. top: 150px;
  1073. margin-left: 30px;
  1074. margin-right: 30px;
  1075. text-align: justify;
  1076. text-justify: distribute-all-lines
  1077. }
  1078. .use_yz-container .img-container .kaishu {
  1079. top: 0
  1080. }
  1081. .use_yz-container .img-container #case1-img {
  1082. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case1.jpg")
  1083. }
  1084. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1085. .use_yz-container .img-container #case1-img {
  1086. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case1@2x.jpg")
  1087. }
  1088. }
  1089. .use_yz-container .img-container #case1-logo {
  1090. width: 118px;
  1091. height: 22px;
  1092. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case_logo_1.png")
  1093. }
  1094. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1095. .use_yz-container .img-container #case1-logo {
  1096. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case_logo_1@2x.png")
  1097. }
  1098. }
  1099. .use_yz-container .img-container #case2-img {
  1100. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case2.jpg")
  1101. }
  1102. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1103. .use_yz-container .img-container #case2-img {
  1104. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case2@2x.jpg")
  1105. }
  1106. }
  1107. .use_yz-container .img-container #case2-logo {
  1108. width: 88px;
  1109. height: 30px;
  1110. background-image: url("https://img.yzcdn.cn/static/intro/img/index-b/case_logo_2@2x.png")
  1111. }
  1112. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1113. .use_yz-container .img-container #case2-logo {
  1114. background-image: url("https://img.yzcdn.cn/static/intro/img/index-b/case_logo_2@2x.png")
  1115. }
  1116. }
  1117. .use_yz-container .img-container #case3-img {
  1118. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case3.jpg")
  1119. }
  1120. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1121. .use_yz-container .img-container #case3-img {
  1122. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case3@2x.jpg")
  1123. }
  1124. }
  1125. .use_yz-container .img-container #case3-logo {
  1126. width: 48px;
  1127. height: 31px;
  1128. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case_logo_3.png")
  1129. }
  1130. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1131. .use_yz-container .img-container #case3-logo {
  1132. content: url("https://img.yzcdn.cn/static/intro/img/newIndex/case_logo_3@2x.png")
  1133. }
  1134. }
  1135. .use_yz-container .img-container #case4-img {
  1136. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case4.jpg")
  1137. }
  1138. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1139. .use_yz-container .img-container #case4-img {
  1140. background-image: url("https://img.yzcdn.cn/static/intro/img/newIndex/case4@2x.jpg")
  1141. }
  1142. }
  1143. .use_yz-container .img-container #case4-logo {
  1144. width: 113px;
  1145. height: 30px;
  1146. background-image: url("https://img.yzcdn.cn//public_files/2019/01/01/9287e162a912c1be3cfc2bc8de977da2.png")
  1147. }
  1148. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1149. .use_yz-container .img-container #case4-logo {
  1150. background-image: url("https://img.yzcdn.cn//public_files/2019/01/01/b5b69923f5d724c50ddb34b0be4e299a.png")
  1151. }
  1152. }
  1153. .use_yz-container .img-container #case5-img {
  1154. background-image: url("https://img.yzcdn.cn/public_files/2018/12/03/6d54cee51921c6ad363903e16fc5ed07.jpg")
  1155. }
  1156. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1157. .use_yz-container .img-container #case5-img {
  1158. background-image: url("https://img.yzcdn.cn/public_files/2018/12/03/6d54cee51921c6ad363903e16fc5ed07.jpg")
  1159. }
  1160. }
  1161. .use_yz-container .img-container #case5-logo {
  1162. width: 103px;
  1163. height: 28px;
  1164. background-image: url("https://img.yzcdn.cn/static/intro/img/index/Bitmap@2x.png")
  1165. }
  1166. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1167. .use_yz-container .img-container #case5-logo {
  1168. background-image: url("https://img.yzcdn.cn/static/intro/img/index/Bitmap@2x.png")
  1169. }
  1170. }
  1171. .use_yz-container .img-container #case6-img {
  1172. background-image: url("https://img.yzcdn.cn/static/intro/img/index/case6@2x.jpg")
  1173. }
  1174. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1175. .use_yz-container .img-container #case6-img {
  1176. background-image: url("https://img.yzcdn.cn/static/intro/img/index/case6@2x.jpg")
  1177. }
  1178. }
  1179. .use_yz-container .img-container #case6-logo {
  1180. width: 114px;
  1181. height: 30px;
  1182. background-image: url("https://img.yzcdn.cn/public_files/2018/12/03/3634261509da23c171b7f68d4c9d9dbd.png")
  1183. }
  1184. @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1185. .use_yz-container .img-container #case6-logo {
  1186. background-image: url("https://img.yzcdn.cn/public_files/2018/12/03/3634261509da23c171b7f68d4c9d9dbd.png")
  1187. }
  1188. }
  1189. .yz-resolutions {
  1190. margin-top: 120px
  1191. }
  1192. .yz-resolutions h3 {
  1193. font-family: PingFangSC-Medium;
  1194. font-size: 28px;
  1195. color: #333;
  1196. letter-spacing: 0
  1197. }
  1198. .yz-resolutions .rescontent {
  1199. display: -webkit-box;
  1200. display: -webkit-flex;
  1201. display: -moz-box;
  1202. display: -ms-flexbox;
  1203. display: flex;
  1204. -webkit-flex-wrap: wrap;
  1205. -ms-flex-wrap: wrap;
  1206. flex-wrap: wrap;
  1207. margin-top: 48px;
  1208. margin-bottom: 48px
  1209. }
  1210. .yz-resolutions .rescontent .ump-card {
  1211. cursor: pointer;
  1212. width: 216px;
  1213. height: 190px;
  1214. padding: 20px;
  1215. border: 1px solid #e5e5e5;
  1216. border-radius: 2px;
  1217. margin-right: 20px;
  1218. margin-bottom: 20px
  1219. }
  1220. .yz-resolutions .rescontent .ump-card:hover {
  1221. background: -webkit-gradient(linear,left top,right bottom,from(#ffae67),to(#ff7139));
  1222. background: -webkit-linear-gradient(top left,#ffae67,#ff7139);
  1223. background: -moz-linear-gradient(top left,#ffae67,#ff7139);
  1224. background: linear-gradient(to bottom right,#ffae67,#ff7139);
  1225. border: 0;
  1226. padding: 21px
  1227. }
  1228. .yz-resolutions .rescontent .ump-card:hover .ump-desc,.yz-resolutions .rescontent .ump-card:hover .ump-title,.yz-resolutions .rescontent .ump-card:hover a {
  1229. color: #fff!important
  1230. }
  1231. .yz-resolutions .rescontent .ump-card:hover .ump-1 {
  1232. background: url("https://img.yzcdn.cn/intro/index/ump1-1@2x.png") no-repeat;
  1233. background-size: 52px
  1234. }
  1235. .yz-resolutions .rescontent .ump-card:hover .ump-2 {
  1236. background: url("https://img.yzcdn.cn/intro/index/ump2-1@2x.png") no-repeat;
  1237. background-size: 52px
  1238. }
  1239. .yz-resolutions .rescontent .ump-card:hover .ump-3 {
  1240. background: url("https://img.yzcdn.cn/intro/index/ump3-1@2x.png") no-repeat;
  1241. background-size: 52px
  1242. }
  1243. .yz-resolutions .rescontent .ump-card:hover .ump-4 {
  1244. background: url("https://img.yzcdn.cn/intro/index/ump4-1@2x.png") no-repeat;
  1245. background-size: 52px
  1246. }
  1247. .yz-resolutions .rescontent .ump-card .icon-div {
  1248. width: 52px;
  1249. height: 52px
  1250. }
  1251. .yz-resolutions .rescontent .ump-card .ump-1 {
  1252. background: url("https://img.yzcdn.cn/intro/index/ump1-2@2x.png") no-repeat;
  1253. background-size: 52px
  1254. }
  1255. .yz-resolutions .rescontent .ump-card .ump-2 {
  1256. background: url("https://img.yzcdn.cn/intro/index/ump2-2@2x.png") no-repeat;
  1257. background-size: 52px
  1258. }
  1259. .yz-resolutions .rescontent .ump-card .ump-3 {
  1260. background: url("https://img.yzcdn.cn/intro/index/ump3-2@2x.png") no-repeat;
  1261. background-size: 52px
  1262. }
  1263. .yz-resolutions .rescontent .ump-card .ump-4 {
  1264. background: url("https://img.yzcdn.cn/intro/index/ump4-2@2x.png") no-repeat;
  1265. background-size: 52px
  1266. }
  1267. .yz-resolutions .rescontent .ump-card .ump-intro {
  1268. padding-top: 20px;
  1269. width: 100%;
  1270. height: 92px;
  1271. line-height: 36px
  1272. }
  1273. .yz-resolutions .rescontent .ump-card .ump-intro .ump-title {
  1274. font-size: 20px;
  1275. font-weight: 600;
  1276. color: #333
  1277. }
  1278. .yz-resolutions .rescontent .ump-card .ump-intro .ump-desc {
  1279. font-size: 14px;
  1280. line-height: 24px;
  1281. color: #999
  1282. }
  1283. .yz-resolutions .rescontent .ump-card .ump-intro a {
  1284. font-size: 14px;
  1285. color: #38f
  1286. }
  1287. .yz-resolutions .rescontent .resolution-card {
  1288. cursor: pointer;
  1289. width: 256px;
  1290. height: 256px;
  1291. border: 1px solid #e5e5e5;
  1292. border-radius: 2px;
  1293. margin-right: 20px;
  1294. margin-bottom: 20px;
  1295. -webkit-transition: .5s;
  1296. -moz-transition: .5s;
  1297. transition: .5s
  1298. }
  1299. .yz-resolutions .rescontent .resolution-card:hover {
  1300. border: 1px solid #38f
  1301. }
  1302. .yz-resolutions .rescontent .resolution-card .ccover {
  1303. height: 169px;
  1304. width: 100%;
  1305. position: relative
  1306. }
  1307. .yz-resolutions .rescontent .resolution-card .ccover img {
  1308. width: 100%
  1309. }
  1310. .yz-resolutions .rescontent .resolution-card .ccover .icon {
  1311. position: absolute;
  1312. width: 60px;
  1313. margin: 0 auto;
  1314. left: 98px;
  1315. top: 54px
  1316. }
  1317. .yz-resolutions .rescontent .resolution-card .csummary {
  1318. padding: 10px 0;
  1319. width: 100%;
  1320. height: 92px;
  1321. text-align: center;
  1322. line-height: 36px
  1323. }
  1324. .yz-resolutions .rescontent .resolution-card .csummary p {
  1325. font-size: 18px
  1326. }
  1327. .yz-resolutions .rescontent .resolution-card .csummary a {
  1328. font-size: 12px;
  1329. color: #38f
  1330. }
  1331. .yz-resolutions .rescontent .clear-mright {
  1332. margin-right: 0
  1333. }
  1334. .service {
  1335. width: 100%;
  1336. height: 450px
  1337. }
  1338. .service .icon-container {
  1339. width: 1100px;
  1340. margin: 0 auto
  1341. }
  1342. @media screen and (max-width:1100px) {
  1343. .service .icon-container {
  1344. width: 1000px
  1345. }
  1346. }
  1347. .service .icon-container li {
  1348. display: inline-block;
  1349. text-align: center;
  1350. width: 24%;
  1351. margin: 0;
  1352. padding: 0
  1353. }
  1354. .service .icon-container li div {
  1355. width: 120px;
  1356. height: 120px;
  1357. margin: 0 auto;
  1358. margin-bottom: 15px;
  1359. background-size: contain
  1360. }
  1361. .service .icon-container li p {
  1362. font-size: 20px;
  1363. color: #333;
  1364. line-height: 22px;
  1365. }
  1366. .service .icon-container li .desc {
  1367. font-size: 20px;
  1368. color: #333;
  1369. }
  1370. .service .icon-container #service-1-img {
  1371. background-image: url("../images/service-1.jpg");
  1372. }
  1373. .service .icon-container #service-2-img {
  1374. background-image: url("../images/service-2.jpg");
  1375. }
  1376. .service .icon-container #service-3-img {
  1377. background-image: url("../images/service-3.jpg")
  1378. }
  1379. .service .icon-container #service-4-img {
  1380. background-image: url("../images/service-4.jpg")
  1381. }
  1382. .huhang {
  1383. background-color: #f7fcff;
  1384. background-image: url("https://img.yzcdn.cn/public_files/2018/02/12/4a359a457616f761844a3fb0597f83eb.png");
  1385. background-repeat: no-repeat;
  1386. background-position: 50%;
  1387. text-align: center
  1388. }
  1389. .huhang h3 {
  1390. font-size: 28px;
  1391. color: #333;
  1392. line-height: 40px;
  1393. padding-top: 70px;
  1394. margin-bottom: 20px
  1395. }
  1396. .huhang .desc {
  1397. font-size: 20px;
  1398. text-align: center;
  1399. margin-bottom: 35px
  1400. }
  1401. .huhang .num-container {
  1402. width: 1100px;
  1403. margin: 0 auto;
  1404. padding-bottom: 70px
  1405. }
  1406. @media screen and (max-width:1100px) {
  1407. .huhang .num-container {
  1408. width: 1000px
  1409. }
  1410. }
  1411. .huhang .num-container li {
  1412. width: 20%;
  1413. text-align: center;
  1414. display: inline-block
  1415. }
  1416. .huhang .num-container li p {
  1417. font-size: 16px;
  1418. color: #666
  1419. }
  1420. .huhang .num-container li .num {
  1421. font-size: 46px;
  1422. color: #3765a6;
  1423. line-height: 65px
  1424. }
  1425. .huhang .num-container li .num .data {
  1426. font-weight: 100
  1427. }
  1428. .partner h3 {
  1429. font-size: 28px;
  1430. color: #333;
  1431. line-height: 40px;
  1432. padding-top: 70px;
  1433. margin-bottom: 20px;
  1434. text-align: center
  1435. }
  1436. .partner .trademark-container {
  1437. margin: 40px auto 70px;
  1438. width: 1001px
  1439. }
  1440. .partner .trademark-container:after {
  1441. content: "";
  1442. display: table;
  1443. clear: both
  1444. }
  1445. .partner .trademark-container i {
  1446. float: left;
  1447. width: 143px;
  1448. height: 45px;
  1449. background-repeat: no-repeat
  1450. }
  1451. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1452. .partner .trademark-container i {
  1453. background-size: 100%;
  1454. height: 49px
  1455. }
  1456. } */
  1457. .partner .trademark-container .trade-1 {
  1458. background-image: url("../images/cp1.png")
  1459. }
  1460. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1461. .partner .trademark-container .trade-1 {
  1462. background-image: url("../images/cp1@2x.png")
  1463. }
  1464. } */
  1465. .partner .trademark-container .trade-2 {
  1466. background-image: url("../images/cp2.png")
  1467. }
  1468. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1469. .partner .trademark-container .trade-2 {
  1470. background-image: url("../images/cp2@2x.png")
  1471. }
  1472. } */
  1473. .partner .trademark-container .trade-3 {
  1474. background-image: url("../images/cp3.png")
  1475. }
  1476. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1477. .partner .trademark-container .trade-3 {
  1478. background-image: url("../images/cp3@2x.png")
  1479. }
  1480. } */
  1481. .partner .trademark-container .trade-4 {
  1482. background-image: url("../images/cp4.png")
  1483. }
  1484. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1485. .partner .trademark-container .trade-4 {
  1486. background-image: url("../images/cp4@2x.png")
  1487. }
  1488. } */
  1489. .partner .trademark-container .trade-5 {
  1490. background-image: url("../images/cp5.png")
  1491. }
  1492. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1493. .partner .trademark-container .trade-5 {
  1494. background-image: url("../images/cp5@2x.png")
  1495. }
  1496. } */
  1497. .partner .trademark-container .trade-6 {
  1498. background-image: url("../images/cp6.png")
  1499. }
  1500. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1501. .partner .trademark-container .trade-6 {
  1502. background-image: url("../images/cp6@2x.png")
  1503. }
  1504. } */
  1505. .partner .trademark-container .trade-7 {
  1506. background-image: url("../images/cp7.png")
  1507. }
  1508. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1509. .partner .trademark-container .trade-7 {
  1510. background-image: url("../images/cp7@2x.png")
  1511. }
  1512. } */
  1513. .partner .trademark-container .trade-8 {
  1514. background-image: url("../images/cp7.png")
  1515. }
  1516. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1517. .partner .trademark-container .trade-8 {
  1518. background-image: url("../images/cp8@2x.png")
  1519. }
  1520. } */
  1521. .partner .trademark-container .trade-9 {
  1522. background-image: url("../images/cp7.png");
  1523. }
  1524. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1525. .partner .trademark-container .trade-9 {
  1526. background-image: url("../images/cp10.png");
  1527. }
  1528. } */
  1529. .partner .trademark-container .trade-10 {
  1530. background-image: url("../images/cp7.png");
  1531. }
  1532. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1533. .partner .trademark-container .trade-10 {
  1534. background-image: url("../images/cp10@2x.png")
  1535. }
  1536. } */
  1537. .partner .trademark-container .trade-11 {
  1538. background-image: url("../images/cp7.png")
  1539. }
  1540. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1541. .partner .trademark-container .trade-11 {
  1542. background-image: url("../images/cp11@2x.png")
  1543. }
  1544. } */
  1545. .partner .trademark-container .trade-12 {
  1546. background-image: url("../images/cp7.png")
  1547. }
  1548. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1549. .partner .trademark-container .trade-12 {
  1550. background-image: url("../images/cp12@2x.png")
  1551. }
  1552. } */
  1553. .partner .trademark-container .trade-13 {
  1554. background-image: url("../images/cp7.png")
  1555. }
  1556. /* @media only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  1557. .partner .trademark-container .trade-13 {
  1558. background-image: url("../images/cp13@2x.png")
  1559. }
  1560. } */
  1561. .partner .trademark-container .trade-14 {
  1562. background-image: url("../images/cp7.png")
  1563. }
  1564. .section-title {
  1565. font-size: 28px;
  1566. color: #333;
  1567. line-height: 40px;
  1568. text-align: center;
  1569. margin: 0 auto 50px;
  1570. padding-top: 70px
  1571. }
  1572. .promote {
  1573. width: 100%;
  1574. height: 235px;
  1575. text-align: center;
  1576. background-position: 50%;
  1577. background-size: cover;
  1578. background-image: url("../images/footerbg.png");
  1579. }
  1580. .promote.mall{
  1581. background-image: url("../images/mall-5.jpg");
  1582. }
  1583. .promote.mb{
  1584. background-image: url("../images/mb-5.jpg");
  1585. }
  1586. .promote p {
  1587. font-size: 28px;
  1588. color: #fff;
  1589. line-height: 40px;
  1590. padding-top: 60px;
  1591. padding-bottom: 35px
  1592. }
  1593. .promote a {
  1594. text-decoration: none;
  1595. font-size: 14px;
  1596. color: #38f;
  1597. background-color: #fff;
  1598. padding: 15px 57px;
  1599. border-radius: 2px
  1600. }
  1601. .bg-grey {
  1602. background: #f8f8f8
  1603. }
  1604. .pull-left {
  1605. float: left
  1606. }
  1607. .pull-right {
  1608. float: right
  1609. }
  1610. /* 底部版权 */
  1611. .copyright{
  1612. width: 100%;
  1613. background: #373d44;
  1614. color: #fff;
  1615. font-size: 14px;
  1616. padding-top: 66px;
  1617. }
  1618. .copyright-box{
  1619. width: 1100px;
  1620. margin: 0 auto;
  1621. }
  1622. .copyright-box .copyright-right{
  1623. float: right;
  1624. }
  1625. .copyright .copyright-text{
  1626. text-align: center;
  1627. height: 77px;
  1628. line-height: 77px;
  1629. color: #b6b6b6;
  1630. border-top: 1px #5a5f64 solid;
  1631. }
  1632. .copyright .copyright-text p{
  1633. padding: 0;
  1634. margin: 0;
  1635. }
  1636. .copyright-left{
  1637. margin-bottom: 14px;
  1638. }
  1639. .copyright-left h3{
  1640. font-size: 18px;
  1641. line-height: 40px;
  1642. }
  1643. .copyright-left ul li{
  1644. height: 32px;
  1645. line-height: 32px;
  1646. color: #fff;
  1647. }
  1648. .copyright-box .copyright-right dl{
  1649. float: left;
  1650. width: 110px;
  1651. font-size: 13px;
  1652. margin-left: 46px;
  1653. }
  1654. .copyright-box .copyright-right dl dt{
  1655. margin-bottom: 6px;
  1656. }
  1657. /* 导航 */
  1658. .phptpl-header {
  1659. width: 100%;
  1660. min-width: 1200px;
  1661. height: auto;
  1662. position: relative;
  1663. background: #ffffff;
  1664. border-bottom: 1px solid #ededed;
  1665. box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  1666. z-index: 200;
  1667. transition: all 0.5s ease-in;
  1668. }
  1669. .phptpl-header .header-container {
  1670. box-sizing: border-box;
  1671. margin: 0 auto;
  1672. width: 1100px;
  1673. height: 70px;
  1674. zoom: 1;
  1675. }
  1676. .phptpl-header .header-join{
  1677. width: 950px;
  1678. }
  1679. .phptpl-header .header-container .logo {
  1680. display: inline-block;
  1681. width: 150px;
  1682. height: 47px;
  1683. margin-top: 12px;
  1684. background-size: 150px 47px;
  1685. background-image: url(../images/logo.png);
  1686. background-repeat: no-repeat;
  1687. float: left;
  1688. margin-right: 80px;
  1689. }
  1690. .navbar{
  1691. /* width: 500px; */
  1692. float: left;
  1693. }
  1694. .phptpl-header .header-container .nav-list {
  1695. float: right;
  1696. zoom: 1;
  1697. margin-bottom:0;
  1698. }
  1699. .phptpl-header .header-container .nav-list > li {
  1700. float: left;
  1701. display: inline-block;
  1702. height: 70px;
  1703. line-height: 70px;
  1704. padding: 0px 20px;
  1705. font-size: 14px;
  1706. }
  1707. .phptpl-header .header-container .btn-login:hover {
  1708. background-color: #409eff;
  1709. color: #FFFFFF;
  1710. }
  1711. .phptpl-header .header-container .btn-register_:hover {
  1712. background-color: #5CB0FD;
  1713. color: #ffffff;
  1714. }
  1715. .phptpl-header .header-container li.login_common_ {
  1716. padding: 0px 0px 0px 20px;
  1717. }
  1718. .phptpl-header .header-container li.register_common_ {
  1719. padding: 0px 0px 0px 10px;
  1720. }
  1721. .phptpl-header .header-container .btn-login {
  1722. width: 80px;
  1723. height: 30px;
  1724. line-height: 28px;
  1725. display: inline-block;
  1726. border: 1px solid #409eff;
  1727. color: #409eff;
  1728. text-align: center;
  1729. border-radius: 2px;
  1730. box-sizing: border-box;
  1731. cursor: pointer;
  1732. font-size: 14px;
  1733. }
  1734. .phptpl-header .header-container .btn-register_ {
  1735. width: 80px;
  1736. height: 30px;
  1737. line-height: 30px;
  1738. display: inline-block;
  1739. background-color: #409eff;
  1740. color: #ffffff;
  1741. text-align: center;
  1742. border-radius: 2px;
  1743. cursor: pointer;
  1744. }
  1745. .phptpl-header .header-container .nav-list:after {
  1746. content: "";
  1747. display: table;
  1748. clear: both;
  1749. }.phptpl-header .header-container .nav-list:after {
  1750. content: "";
  1751. display: table;
  1752. clear: both;
  1753. }
  1754. .phptpl-header .header-container .nav-list:after {
  1755. content: "";
  1756. display: table;
  1757. clear: both;
  1758. }
  1759. /* scrm */
  1760. .intro-main .main-content {
  1761. max-width: 1100px;
  1762. min-width: 1000px;
  1763. margin: 0 auto;
  1764. }
  1765. .intro-main .head-block {
  1766. height: 420px;
  1767. overflow: hidden;
  1768. color: #fff;
  1769. text-align: center;
  1770. background: url(../images/scrm-bg.jpg) no-repeat 50%;
  1771. background-size: 100% 420px;
  1772. }
  1773. .intro-main .head-block.mall-bg{
  1774. background: url(../images/mall-bg.jpg) no-repeat 50%;
  1775. }
  1776. .intro-main .head-block.xt-bg{
  1777. background: url(../images/xt_bg.jpg) no-repeat 50%;
  1778. }
  1779. .intro-main .head-block.mb-bg{
  1780. background: url(../images/mb_bg.jpg) no-repeat 50%;
  1781. }
  1782. .intro-main .head-block h1 {
  1783. margin: 100px 0 5px;
  1784. line-height: 50px;
  1785. font-size: 36px;
  1786. }
  1787. .intro-main .head-block p {
  1788. line-height: 30px;
  1789. font-size: 14px;
  1790. width: 650px;
  1791. margin: 0 auto;
  1792. height: 24px;
  1793. line-height: 24px;
  1794. }
  1795. .intro-main .head-block .free-trial-btn {
  1796. display: inline-block;
  1797. width: 160px;
  1798. height: 40px;
  1799. line-height: 40px;
  1800. margin: 90px auto 10px;
  1801. background-color: #3388ff;
  1802. border-radius: 2px;
  1803. color: #fff;
  1804. font-size: 14px;
  1805. }
  1806. .intro-main .head-block div {
  1807. line-height: 20px;
  1808. font-size: 14px;
  1809. }
  1810. .intro-main h2 {
  1811. line-height: 40px;
  1812. font-size: 28px;
  1813. color: #333;
  1814. text-align: center;
  1815. }
  1816. .intro-main .illustration-content h2 {
  1817. padding: 60px 0 50px;
  1818. }
  1819. .intro-main .illustration-content li {
  1820. height: 330px;
  1821. margin-bottom: 70px;
  1822. }
  1823. .intro-main .illustration-content li .illustration-content-desc {
  1824. width: 450px;
  1825. position: relative;
  1826. top: 50%;
  1827. -webkit-transform: translateY(-50%);
  1828. -moz-transform: translateY(-50%);
  1829. -ms-transform: translateY(-50%);
  1830. transform: translateY(-50%);
  1831. }
  1832. .intro-main .illustration-content li .illustration-content-desc:first-child, .intro-main .illustration-content li img:first-child {
  1833. float: left;
  1834. }
  1835. .intro-main .illustration-content li .illustration-content-desc:last-child, .intro-main .illustration-content li img:last-child {
  1836. float: right;
  1837. }
  1838. .intro-main .illustration-content li .illustration-content-desc h3 {
  1839. margin-bottom: 20px;
  1840. font-size: 28px;
  1841. line-height: 43px;
  1842. color: #333;
  1843. }
  1844. .intro-main .illustration-content li .illustration-content-desc p {
  1845. font-size: 16px;
  1846. line-height: 30px;
  1847. color: #666;
  1848. font-weight: normal;
  1849. }
  1850. .superstore-b .normal-container {
  1851. margin: 0 auto;
  1852. max-width: 1120px;
  1853. min-width: 1000px;
  1854. }
  1855. .superstore-b .marketing-master-item {
  1856. padding: 70px 0 92px;
  1857. }
  1858. .superstore-b h2 {
  1859. font-size: 28px;
  1860. line-height: 40px;
  1861. text-align: center;
  1862. }
  1863. .superstore-b .flex-horizontal-center {
  1864. -webkit-box-orient: vertical;
  1865. -webkit-box-direction: normal;
  1866. -webkit-flex-direction: column;
  1867. -moz-box-orient: vertical;
  1868. -moz-box-direction: normal;
  1869. -ms-flex-direction: column;
  1870. flex-direction: column;
  1871. -webkit-box-align: center;
  1872. -webkit-align-items: center;
  1873. -moz-box-align: center;
  1874. -ms-flex-align: center;
  1875. align-items: center;
  1876. }
  1877. .superstore-b .flex-horizontal-center, .superstore-b .flex-horizontal-space-between {
  1878. display: -webkit-box;
  1879. display: -webkit-flex;
  1880. display: -moz-box;
  1881. display: -ms-flexbox;
  1882. display: flex;
  1883. }
  1884. .superstore-b .flex-horizontal-center, .superstore-b .flex-horizontal-space-between {
  1885. display: -webkit-box;
  1886. display: -webkit-flex;
  1887. display: -moz-box;
  1888. display: -ms-flexbox;
  1889. display: flex;
  1890. }
  1891. .superstore-b .flex-horizontal-space-between {
  1892. -webkit-box-pack: justify;
  1893. -webkit-justify-content: space-between;
  1894. -moz-box-pack: justify;
  1895. -ms-flex-pack: justify;
  1896. justify-content: space-between;
  1897. }
  1898. .superstore-b .marketing-master-item>div {
  1899. margin-top: 62px;
  1900. height: 376px;
  1901. }
  1902. .superstore-b .marketing-master-item__text {
  1903. display: -webkit-box;
  1904. display: -webkit-flex;
  1905. display: -moz-box;
  1906. display: -ms-flexbox;
  1907. display: flex;
  1908. -webkit-box-orient: vertical;
  1909. -webkit-box-direction: normal;
  1910. -webkit-flex-direction: column;
  1911. -moz-box-orient: vertical;
  1912. -moz-box-direction: normal;
  1913. -ms-flex-direction: column;
  1914. flex-direction: column;
  1915. -webkit-box-pack: center;
  1916. -webkit-justify-content: center;
  1917. -moz-box-pack: center;
  1918. -ms-flex-pack: center;
  1919. justify-content: center;
  1920. font-size: 18px;
  1921. width: 420px;
  1922. -webkit-box-sizing: border-box;
  1923. -moz-box-sizing: border-box;
  1924. box-sizing: border-box;
  1925. }
  1926. .superstore-b .marketing-master-item__text li {
  1927. line-height: 70px;
  1928. padding-left: 38px;
  1929. position: relative;
  1930. border-radius: 2px;
  1931. color: #999;
  1932. -webkit-transition: all .6s;
  1933. -moz-transition: all .6s;
  1934. transition: all .6s;
  1935. cursor: pointer;
  1936. margin-bottom: 2px;
  1937. }
  1938. .superstore-b .marketing-master-item__text li.active,.superstore-b .marketing-master-item__text li:hover {
  1939. background-color: #f0f5ff;
  1940. color: #000;
  1941. -webkit-transition: all .6s;
  1942. -moz-transition: all .6s;
  1943. transition: all .6s;
  1944. }
  1945. .superstore-b .marketing-master-item__text li:before {
  1946. content: "";
  1947. position: absolute;
  1948. width: 10px;
  1949. height: 10px;
  1950. border-radius: 5px;
  1951. background-color: #bbb;
  1952. left: 16px;
  1953. top: 30px;
  1954. }
  1955. .superstore-b .marketing-master-item__text li.active:before,.superstore-b .marketing-master-item__text li:hover:before {
  1956. content: "";
  1957. position: absolute;
  1958. width: 10px;
  1959. height: 10px;
  1960. border-radius: 5px;
  1961. background-color: #38f;
  1962. left: 16px;
  1963. top: 30px;
  1964. }
  1965. .superstore-b .max-width-container--gray {
  1966. background-color: #f8fbff;
  1967. }
  1968. .superstore-b .marketing-master-item .reverse {
  1969. -webkit-box-orient: horizontal;
  1970. -webkit-box-direction: reverse;
  1971. -webkit-flex-direction: row-reverse;
  1972. -moz-box-orient: horizontal;
  1973. -moz-box-direction: reverse;
  1974. -ms-flex-direction: row-reverse;
  1975. flex-direction: row-reverse;
  1976. }
  1977. .superstore-b .marketing-master-item__text .buy{
  1978. font-size: 14px;
  1979. padding: 10px 42px;
  1980. border-radius: 2px;
  1981. display: inline-block;
  1982. background-color: #38f;
  1983. color: #fff;
  1984. border: none;
  1985. margin-top: 10px;
  1986. cursor: pointer;
  1987. }
  1988. /* 登录页面 */
  1989. .eis-login .eis-login-bg {
  1990. position: fixed;
  1991. top: 0;
  1992. left: 0;
  1993. width: 100%;
  1994. height: 100%;
  1995. z-index: -10px;
  1996. background-position: center center;
  1997. background-origin: no-repeat;
  1998. background-size: cover;
  1999. -webkit-background-size: cover;
  2000. zoom: 1;
  2001. background-repeat: no-repeat;
  2002. }
  2003. .eis-login-center {
  2004. height: 480px;
  2005. position: fixed;
  2006. left: 54%;
  2007. top: 45%;
  2008. z-index: 11;
  2009. background: #fafafa;
  2010. margin-top: -260px;
  2011. border-radius: 4px;
  2012. -webkit-border-radius: 4px;
  2013. -moz-border-radius: 4px;
  2014. -o-border-radius: 4px;
  2015. width: 460px;
  2016. }
  2017. .eis-login-right .eis-login-center .eis-logo {
  2018. font-size: 28px;
  2019. color: #333;
  2020. text-align: center;
  2021. height: 120px;
  2022. line-height: 120px;
  2023. }
  2024. .eis-login-right .eis-login-center .eis-logo p{
  2025. margin:0;
  2026. padding: 0;
  2027. }
  2028. .eis-login-info {
  2029. position: absolute;
  2030. top: 24%;
  2031. left: 7%;
  2032. width: 396px;
  2033. }
  2034. .eis-form {
  2035. float: left;
  2036. }
  2037. .eis-form-cell {
  2038. float: left;
  2039. position: relative;
  2040. width: 100%;
  2041. }
  2042. .eis-form .eis-login-button {
  2043. float: left;
  2044. width: 100%;
  2045. }
  2046. .eis-login-type {
  2047. padding: 20px 0 0 0;
  2048. font-size: 14px;
  2049. width: 100%;
  2050. cursor: pointer;
  2051. }
  2052. .eis-input-group {
  2053. width: 100%;
  2054. float: left;
  2055. margin-bottom: 20px;
  2056. position: relative;
  2057. border-radius: 4px;
  2058. }
  2059. .eis-input-group .eis-form-control {
  2060. width: 100%;
  2061. border: none;
  2062. background: none;
  2063. color: #333;
  2064. font-size: 14px;
  2065. outline: none;
  2066. float: left;
  2067. height: 46px;
  2068. line-height: 46px;
  2069. padding-left: 5px;
  2070. background: #f5f5f5;
  2071. border: 1px #eee solid;
  2072. box-sizing: border-box;
  2073. -webkit-box-sizing: border-box;
  2074. -moz-box-sizing: border-box;
  2075. -o-box-sizing: border-box;
  2076. -ms-box-sizing: border-box;
  2077. border-radius: 4px;
  2078. -webkit-border-radius: 4px;
  2079. -moz-border-radius: 4px;
  2080. }
  2081. .eis-input-group .eis-form-control.width {
  2082. width: 275px;
  2083. }
  2084. .eis-input-group .code-button {
  2085. width: 110px;
  2086. background: #3388ff;
  2087. border-radius: 4px;
  2088. text-align: center;
  2089. height: 46px;
  2090. line-height: 46px;
  2091. font-size: 15px;
  2092. border: none;
  2093. outline: none;
  2094. color: #fff;
  2095. float: right;
  2096. }
  2097. .eis-form .eis-login-button {
  2098. float: left;
  2099. width: 100%;
  2100. }
  2101. .eis-form .eis-login-button .forget-passward {
  2102. float: right;
  2103. margin-bottom: 10px;
  2104. font-size: 12px;
  2105. text-decoration: none;
  2106. color: #3388ff;
  2107. }
  2108. .eis-form .eis-login-button .submit {
  2109. display: block;
  2110. width: 100%;
  2111. font-size: 16px;
  2112. color: #FFFFFF;
  2113. letter-spacing: 0;
  2114. border: 1px solid #3388ff;
  2115. border-radius: 4px;
  2116. -webkit-border-radius: 4px;
  2117. -moz-border-radius: 4px;
  2118. -o-border-radius: 4px;
  2119. border-radius: 4px;
  2120. height: 46px;
  2121. line-height: 46px;
  2122. background: #3388ff;
  2123. cursor: pointer;
  2124. transition: all .3s;
  2125. outline: none;
  2126. }
  2127. .eis-login-type {
  2128. padding: 20px 0 0 0;
  2129. font-size: 14px;
  2130. width: 100%;
  2131. cursor: pointer;
  2132. }
  2133. .eis-login-type .eis-code {
  2134. float: left;
  2135. margin-top: 15px;
  2136. color: #3388ff;
  2137. }
  2138. .eis-login-type .eis-download {
  2139. float: right;
  2140. margin-top: 15px;
  2141. }
  2142. .eis-login-type .eis-download a, .eis-ding-type a {
  2143. color: #3388ff;
  2144. text-decoration: none;
  2145. }
  2146. /* 导航菜单 */
  2147. .navbar-brand{
  2148. padding: 29px 15px;
  2149. height: auto;
  2150. }
  2151. nav.navbar.bootsnav{
  2152. border: none;
  2153. margin-bottom: 150px;
  2154. }
  2155. .navbar-nav{
  2156. float: left;
  2157. }
  2158. nav.navbar.bootsnav ul.nav > li > a{
  2159. color: #474747;
  2160. text-transform: uppercase;
  2161. padding: 30px;
  2162. }
  2163. nav.navbar.bootsnav ul.nav > li:hover{
  2164. background: #f4f4f4;
  2165. }
  2166. .nav > li:after{
  2167. content: "";
  2168. width: 0;
  2169. height: 5px;
  2170. background: #409eff;
  2171. position: absolute;
  2172. bottom: 0;
  2173. left: 0;
  2174. transition: all 0.5s ease 0s;
  2175. }
  2176. .nav > li:hover:after{
  2177. width: 100%;
  2178. }
  2179. nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after{
  2180. content: "+";
  2181. font-family: 'FontAwesome';
  2182. font-size: 16px;
  2183. font-weight: 500;
  2184. position: absolute;
  2185. top: 35%;
  2186. right:17%;
  2187. transition: all 0.4s ease 0s;
  2188. }
  2189. nav.navbar.bootsnav ul.nav > li.dropdown.on > a.dropdown-toggle:after{
  2190. content: "\f105";
  2191. transform: rotate(90deg);
  2192. }
  2193. .dropdown-menu.multi-dropdown{
  2194. position: absolute;
  2195. left: -100% !important;
  2196. }
  2197. nav.navbar.bootsnav li.dropdown ul.dropdown-menu{
  2198. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  2199. border: none;
  2200. }
  2201. @media only screen and (max-width:990px){
  2202. nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after,
  2203. nav.navbar.bootsnav ul.nav > li.dropdown.on > a.dropdown-toggle:after{ content: " "; }
  2204. .dropdown-menu.multi-dropdown{ left: 0 !important; }
  2205. nav.navbar.bootsnav ul.nav > li:hover{ background: transparent; }
  2206. nav.navbar.bootsnav ul.nav > li > a{ margin: 0; }
  2207. }
  2208. .eis-login-txt{
  2209. position: fixed;
  2210. left:22%;
  2211. top:25%;
  2212. z-index: 11;
  2213. margin-left: -160px;
  2214. width: 320px;
  2215. color: #fff;
  2216. }
  2217. .eis-login-txt p{
  2218. font-size: 14px;
  2219. font-family: "OpenSans";
  2220. }
  2221. .eis-login-txt span{
  2222. font-size: 48px;
  2223. margin-bottom: 76px;
  2224. display: inline-block;
  2225. font-family: "sourcehansanscn regular";
  2226. }
  2227. .eis-login-txt .line{
  2228. width: 66px;
  2229. height: 0.25em;
  2230. background:
  2231. linear-gradient(135deg, transparent, transparent 45%, #fff, transparent 55%, transparent 55%),
  2232. linear-gradient(45deg, transparent, transparent 45%, #fff, transparent 55%, transparent 55%);
  2233. background-size: 0.5em 0.5em;
  2234. background-repeat: repeat-x, repeat-x;
  2235. }
  2236. /* 应用 */
  2237. .apply-box{
  2238. width: 950px;
  2239. margin: 0 auto;
  2240. }
  2241. .apply-box .name{
  2242. margin: 33px 0 30px 0;
  2243. height: 60px;
  2244. line-height: 60px;
  2245. background: #ebf1f7;
  2246. font-size: 18px;
  2247. color: #485b6d;
  2248. text-align: center;
  2249. }
  2250. .apply-box .apply-content ul li{
  2251. width: 450px;
  2252. background: #fff;
  2253. box-shadow: 0 0 15px rgba(213, 225, 239, 0.5);
  2254. padding: 18px 18px 20px 30px;
  2255. box-sizing: border-box;
  2256. position: relative;
  2257. z-index: 99;
  2258. float: left;
  2259. margin-right: 39px;
  2260. margin-bottom: 37px;
  2261. min-height: 243px;
  2262. }
  2263. .apply-box .apply-content ul li:nth-child(2n){
  2264. margin-right: 0;
  2265. }
  2266. .apply-box .apply-content ul li .title{
  2267. margin: 0;
  2268. padding: 0;
  2269. color: #485b6d;
  2270. height: 50px;
  2271. line-height: 50px;
  2272. font-size: 20px;
  2273. }
  2274. .apply-box .apply-content ul li .join{
  2275. float: right;
  2276. display: inline-block;
  2277. font-size: 14px;
  2278. line-height: 50px;
  2279. height: 50px;
  2280. display: none;
  2281. }
  2282. .apply-box .apply-content ul li a{
  2283. display:inline-block;
  2284. width: 402px;
  2285. }
  2286. .apply-box .apply-content ul li a:hover .join{
  2287. display: block;
  2288. color: #5b9efe;
  2289. }
  2290. .apply-box .apply-content ul li .txt{
  2291. font-size: 14px;
  2292. color: #485b6d;
  2293. line-height: 20px;
  2294. padding: 0;
  2295. }
  2296. .apply-box .apply-content ul li::after,.apply-box .apply-content ul li::before{
  2297. position: absolute;
  2298. content: "";
  2299. background: #dbeafe;
  2300. }
  2301. .apply-box .apply-content ul li::after{
  2302. width:100%;
  2303. height: 10px;
  2304. top: -10px;
  2305. right:-10px;
  2306. }
  2307. .apply-box .apply-content ul li::before{
  2308. width:10px;
  2309. height: 100%;
  2310. bottom: 10px;
  2311. right:-10px;
  2312. }
  2313. .apply-box .apply-content ul li:hover::before,.apply-box .apply-content ul li:hover::after{
  2314. background: #5b9efe;
  2315. }
  2316. .apply-content .button button{
  2317. display: inline-block;
  2318. line-height: 1;
  2319. white-space: nowrap;
  2320. cursor: pointer;
  2321. background: #fff;
  2322. border: 1px solid #dcdfe6;
  2323. color: #606266;
  2324. -webkit-appearance: none;
  2325. text-align: center;
  2326. box-sizing: border-box;
  2327. outline: none;
  2328. margin: 0;
  2329. transition: .1s;
  2330. font-weight: 500;
  2331. -moz-user-select: none;
  2332. -webkit-user-select: none;
  2333. -ms-user-select: none;
  2334. padding: 12px 20px;
  2335. font-size: 14px;
  2336. border-radius: 4px;
  2337. }
  2338. .apply-content .button button.open{
  2339. color: #fff;
  2340. background-color: #409eff;
  2341. border-color: #409eff;
  2342. }
  2343. .apply-content .button button.close{
  2344. color: #3a8ee6;
  2345. border-color: #3a8ee6;
  2346. outline: none;
  2347. }
  2348. .login-statu{
  2349. float: right;
  2350. margin-top: 14px;
  2351. font-size: 14px;
  2352. }
  2353. .login-statu img{
  2354. width: 40px;
  2355. height: 40px;
  2356. border-radius: 50%;
  2357. margin-right: 5px;
  2358. }
  2359. .login-statu .name{
  2360. color: #485b6d;
  2361. margin-right: 15px;
  2362. }
  2363. .login-statu .out{
  2364. color: #3388ff;
  2365. cursor: pointer;
  2366. }
  2367. .join-right{
  2368. position: fixed;
  2369. bottom: 10px;
  2370. text-align: center;
  2371. width:950px;
  2372. color: #485b6d;
  2373. font-size: 14px;
  2374. }