user.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239
  1. body {
  2. background: #f5f5f5;
  3. font-family: Microsoft YaHei
  4. }
  5. .wrap {
  6. width: 1190px;
  7. margin: 0 auto;
  8. }
  9. /*买家中心*/
  10. .user_content {
  11. width: 100%;
  12. margin: 0px auto;
  13. margin-top: 16px;
  14. }
  15. .user_content .user_left {
  16. width: 146px;
  17. border: #ddd 1px solid;
  18. background: #fff;
  19. border-bottom: none;
  20. }
  21. .user_content .user_left p,.user_content .user_left ul,.user_content .user_left ul li,.user_content .user_left ul li a {
  22. width: 100%;
  23. margin: 0 auto;
  24. }
  25. .user_content .user_left p {
  26. height: 40px;
  27. line-height: 40px;
  28. background: #ecf2fd;
  29. }
  30. .user_content .user_left p span {
  31. margin-left: 16px;
  32. font-size: 14px;
  33. font-weight: 700;
  34. }
  35. .user_content .user_left p.active {
  36. background: #5078cb;
  37. color: #fff;
  38. }
  39. .user_content .user_left p.active a {
  40. color: #fff;
  41. }
  42. .user_content .user_left ul li {
  43. border-bottom: #ddd 1px solid;
  44. }
  45. .user_content .user_left ul li,.user_content .user_left ul li a {
  46. height: 50x;
  47. line-height: 50px;
  48. display: inline-block;
  49. color: #333;
  50. font-size: 14px;
  51. }
  52. .user_content .user_left ul li a {
  53. padding-left: 16px;
  54. }
  55. .user_content .user_left ul li.active {
  56. background: #5078cb;
  57. }
  58. .user_content .user_left ul li.active em {
  59. color: #fff;
  60. }
  61. .user_content .user_left ul li:hover {
  62. background: #67afe4;
  63. }
  64. .user_content .user_left ul li.active a,.user_content .user_left ul li:hover a,.user_content .user_left ul li:hover a em {
  65. color: #fff;
  66. }
  67. .user_content .user_left ul li a em {
  68. color: #e30e16;
  69. }
  70. .user_content .user_right {
  71. width: 1026px;
  72. }
  73. .right_l {
  74. float: left;
  75. width: 734px;
  76. }
  77. .right_r {
  78. float: right;
  79. width: 275px;
  80. }
  81. .user_r_01 {
  82. width: 100%;
  83. height: 88px;
  84. margin: 0 auto;
  85. background: #ecf2fd;
  86. border: #e8e8e8 1px solid;
  87. }
  88. .user_r_01 dl {
  89. width: 94%;
  90. margin: 0 auto;
  91. position: relative;
  92. }
  93. .user_r_01 dl dt {
  94. width: 60px;
  95. float: left;
  96. margin-right: 20px;
  97. }
  98. .user_r_01 dl dt img {
  99. width: 60px;
  100. height: 60px;
  101. border-radius: 100%;
  102. margin-top: 14px;
  103. }
  104. .user_r_01 dl dd {
  105. font-size: 14px;
  106. line-height: 25px;
  107. }
  108. .user_r_01 dl dd span {
  109. display: inline-block;
  110. margin-top: 18px;
  111. }
  112. .user_r_01 dl dd a {
  113. float: right;
  114. line-height: 88px;
  115. }
  116. .user_r_01 dl dd em,.user_r_01 dl dd a:hover {
  117. color: #5078cb;
  118. }
  119. .right_l .user_r_02 {
  120. background: #fff;
  121. border: #e8e8e8 1px solid;
  122. border-top: none;
  123. border-bottom: none;
  124. }
  125. .right_l .user_r_02,.user_r_02 ul,.user_r_02 ul li {
  126. width: 100%;
  127. margin: 0 auto;
  128. }
  129. .right_l .user_r_02 ul li {
  130. min-height: 50px;
  131. line-height: 50px;
  132. font-size: 14px;
  133. }
  134. .right_l .user_r_02 ul li p {
  135. margin-left: 22px;
  136. font-size: 14px;
  137. width: 100%;
  138. display: inline-block;
  139. }
  140. .right_l .user_r_02 ul li p span {
  141. font-weight: 700;
  142. }
  143. .right_l .user_r_02 ul li p a {
  144. float: right;
  145. margin-right: 50px;
  146. }
  147. .right_l .user_r_02 ul li p a img {
  148. margin-top: 15px;
  149. }
  150. .right_l .user_r_02 ul li.line01 {
  151. border-bottom: #cfcfcf 1px dotted;
  152. }
  153. .right_l .user_r_02 ul li.line02 {
  154. border-bottom: #cfcfcf 1px solid;
  155. }
  156. .right_l .user_r_02 ul li p em {
  157. margin: 0 10px;
  158. }
  159. .right_l .user_r_02 ul li p span.color01 {
  160. color: #999;
  161. width: 145px;
  162. display: inline-block;
  163. font-weight: inherit;
  164. }
  165. .right_l .user_r_02 ul li.p_line40 {
  166. line-height: 40px;
  167. }
  168. .right_r .datetime {
  169. width: 100%;
  170. height: 264px;
  171. text-align: center;
  172. border: #ddd 1px solid;
  173. }
  174. .user_r_03 {
  175. margin-top: 16px !important;
  176. border: #e8e8e8 1px solid;
  177. }
  178. .user_r_03,.user_r_03 ul {
  179. width: 100%;
  180. height: 118px;
  181. margin: 0 auto;
  182. background: #fff;
  183. }
  184. .user_r_03 ul li {
  185. width: 25%;
  186. float: left;
  187. text-align: center;
  188. height: 118px;
  189. }
  190. .user_r_03 ul li:hover a img {
  191. transform: scale(1.03);
  192. }
  193. .user_r_03 ul li img {
  194. width: 52px;
  195. height: 52px;
  196. margin-top: 22px;
  197. }
  198. .user_r_03 ul li p {
  199. line-height: 30px;
  200. font-size: 14px;
  201. }
  202. .user_r_04 {
  203. background: #fff;
  204. width: 100%;
  205. margin: 0px auto;
  206. display: inline-block;
  207. margin-top: 16px;
  208. padding-top: 10px;
  209. padding-bottom: 20px;
  210. }
  211. .user_r_04 ul {
  212. width: 98%;
  213. margin: 0 auto;
  214. }
  215. .user_r_04 ul li {
  216. width: 220px;
  217. height: 246px;
  218. border: #e3e3e3 1px solid;
  219. float: left;
  220. position: relative;
  221. text-align: center;
  222. overflow: hidden;
  223. margin: 12px 4px 0 12px;
  224. }
  225. .user_r_04 ul li a img {
  226. margin-top: 40px;
  227. max-width: 180px;
  228. max-height: 140px;
  229. }
  230. .user_r_04 ul li a p {
  231. width: 100%;
  232. height: 40px;
  233. background: #f8f8f8;
  234. position: absolute;
  235. bottom: 0;
  236. }
  237. .user_r_04 ul li:hover {
  238. border: #d32526 1px solid;
  239. }
  240. .user_r_04 ul li:hover a img,.pro_list dt:hover img {
  241. transform: scale(1.1);
  242. }
  243. .user_r_04 ul li a p em {
  244. width: 90%;
  245. display: inline-block;
  246. padding-top: 4px;
  247. font-size: 12px;
  248. }
  249. .user_r_04 ul li span {
  250. position: absolute;
  251. top: 0;
  252. left: 0;
  253. }
  254. .user_r_04 ul li span a {
  255. width: 70px;
  256. height: 24px;
  257. line-height: 24px;
  258. color: #fff;
  259. background: #d32526;
  260. display: inline-block;
  261. }
  262. .right_r_01 {
  263. width: 100%;
  264. margin: 0 auto;
  265. margin-top: 16px;
  266. border: #ddd 1px solid;
  267. background: #fff;
  268. display: inline-block;
  269. }
  270. .rt_menu {
  271. width: 100%;
  272. margin: 0 auto;
  273. height: 40px;
  274. line-height: 40px;
  275. background: #ecf2fd;
  276. }
  277. .rt_menu span {
  278. margin-left: 20px;
  279. font-size: 14px;
  280. font-weight: 700;
  281. }
  282. .right_r_01 dl {
  283. width: 100%;
  284. margin: 0 auto;
  285. padding-top: 20px;
  286. padding-bottom: 20px;
  287. display: inline-block;
  288. }
  289. .right_r_01 dl dt {
  290. width: 94px;
  291. height: 128px;
  292. float: left;
  293. margin-left: 15px;
  294. overflow: hidden;
  295. border: #dfdfdf 1px solid;
  296. }
  297. .right_r_01 dl dt.border {
  298. border: #dfdfdf 1px solid;
  299. }
  300. .right_r_01 dl dd {
  301. margin-left: 125px;
  302. }
  303. .right_r_01 dl dd p {
  304. font-size: 14px;
  305. line-height: 30px;
  306. }
  307. .click_bt01 {
  308. width: 70px;
  309. height: 24px;
  310. display: inline-block;
  311. border-radius: 4px;
  312. text-align: center;
  313. color: #5078cb;
  314. border: #5078cb 1px solid;
  315. line-height: 24px;
  316. float: right;
  317. margin-right: 25px;
  318. margin-top: 25px;
  319. }
  320. .click_bt01:hover,.right_r_01 dl dd .bg_red:hover {
  321. background: #e4393c;
  322. color: #fff;
  323. border: #e4393c 1px solid;
  324. }
  325. .right_r_01 dl dd .bg_red {
  326. color: #e4393c;
  327. border: #e4393c 1px solid;
  328. }
  329. .pro_list {
  330. border-bottom: #eee 1px solid;
  331. }
  332. .pro_list dt img {
  333. max-width: 90px;
  334. height: auto;
  335. margin-top: 20px;
  336. }
  337. /*账户管理*/
  338. .count01 {
  339. margin-bottom: 16px !important;
  340. }
  341. .count01,.count01 ul {
  342. width: 100%;
  343. margin: 0 auto;
  344. background: #fff;
  345. }
  346. .count01 ul li {
  347. width: 98%;
  348. height: 60px;
  349. line-height: 60px;
  350. margin: 0px auto;
  351. border-bottom: #e8e8e8 1px solid;
  352. font-size: 14px;
  353. color: #333;
  354. }
  355. .count01 ul li a {
  356. color: #5078cb;
  357. width: 80px;
  358. float: right;
  359. display: inline-block;
  360. }
  361. .count01 ul li em,.count01 ul li a:hover {
  362. color: #5078cb;
  363. }
  364. .count01 ul li i {
  365. color: #5078cb;
  366. }
  367. .count01 ul li span {
  368. margin-left: 10px;
  369. }
  370. .count01 ul li span span {
  371. width: 500px;
  372. }
  373. .count01 ul li span span em {
  374. width: 310px;
  375. height: 12px;
  376. display: inline-block;
  377. background: #eee;
  378. position: relative;
  379. border-radius: 10px;
  380. }
  381. .count01 ul li span span em i {
  382. height: 12px;
  383. display: inline-block;
  384. background: #f9ad00;
  385. position: absolute;
  386. top: 0;
  387. left: 0;
  388. border-radius: 10px;
  389. }
  390. .count01 ul li span a {
  391. float: inherit !important;
  392. width: auto !important;
  393. }
  394. .count01 ul li span img {
  395. vertical-align: middle;
  396. margin-left: 10px;
  397. margin-right: 15px;
  398. }
  399. .count01 ul li span b {
  400. color: #f9ad00;
  401. margin-right: 20px;
  402. margin-left: 10px;
  403. }
  404. .count01 ul li span h5 {
  405. width: 70px;
  406. display: inline-block;
  407. float: left;
  408. line-height: 20px;
  409. margin-left: 15px;
  410. }
  411. .count01 ul li span h5 img {
  412. margin-top: 10px;
  413. }
  414. .count01 ul li span h5 p {
  415. font-size: 14px;
  416. }
  417. .gray {
  418. color: #999 !important;
  419. }
  420. .count01 ul li span font {
  421. letter-spacing: 3px;
  422. margin-right: 10px;
  423. }
  424. /*我的钱包*/
  425. .wallet {
  426. width: 100%;
  427. margin: 0 auto;
  428. }
  429. .wallet .wallet_head,.wallet .wallet_head ul {
  430. width: 100%;
  431. margin: 0 auto;
  432. height: 100px;
  433. background: #fff;
  434. }
  435. .wallet_head ul li {
  436. width: 25%;
  437. float: left;
  438. text-align: center;
  439. }
  440. .wallet_head ul li a {
  441. width: 100%;
  442. margin: 0 auto;
  443. height: 100px;
  444. display: inline-block;
  445. }
  446. .wallet_head ul li a em {
  447. width: 52px;
  448. height: 48px;
  449. display: inline-block;
  450. overflow: hidden;
  451. background: url("../../img/user/images/inco01.png") no-repeat center;
  452. position: relative;
  453. margin-top: 20px;
  454. }
  455. .wallet_head ul li a em.coupon01 {
  456. background-position: 0 0;
  457. }
  458. .wallet_head ul li a em.coupon02 {
  459. background-position: -72px 0;
  460. }
  461. .wallet_head ul li a em.coupon03 {
  462. background-position: -132px 0;
  463. }
  464. .wallet_head ul li a em.coupon04 {
  465. background-position: -195px 0;
  466. }
  467. .wallet_head ul li.active a em.coupon01 {
  468. background-position: 0 -72px;
  469. }
  470. .wallet_head ul li.active a em.coupon02 {
  471. background-position: -72px -72px;
  472. }
  473. .wallet_head ul li.active a em.coupon03 {
  474. background-position: -132px -69px;
  475. }
  476. .wallet_head ul li.active a em.coupon04 {
  477. background-position: -195px -72px;
  478. }
  479. .wallet_head ul li.active a {
  480. color: #e64040;
  481. }
  482. .wallet_list {
  483. width: 100%;
  484. margin: 0 auto;
  485. background: #ecf2fd;
  486. margin-top: 16px !important;
  487. }
  488. .wallet_list dl {
  489. width: 100%;
  490. margin: 0 auto;
  491. background: #fff;
  492. display: none;
  493. }
  494. .wallet_list dl dt,.wallet_list dl dd {
  495. width: 98%;
  496. margin: 0 auto;
  497. border-bottom: #e8e8e8 1px solid;
  498. height: 50px;
  499. }
  500. .wallet_list dl span {
  501. width: 16.6666666%;
  502. float: left;
  503. height: 50px;
  504. line-height: 50px;
  505. display: inline-block;
  506. font-size: 14px;
  507. text-align: center;
  508. }
  509. .wallet_list dl dt {
  510. margin-bottom: 10px;
  511. }
  512. .wallet_list dl dt span {
  513. font-weight: bold;
  514. color: #555;
  515. }
  516. .wallet_list dl dd span img {
  517. vertical-align: middle;
  518. }
  519. .wallet_list dl dd span a {
  520. color: #5078cb;
  521. }
  522. .wallet_list dl dd span a.btn01 {
  523. width: 70px;
  524. height: 24px;
  525. display: inline-block;
  526. background: #5078cb;
  527. color: #fff;
  528. line-height: 24px;
  529. vertical-align: middle;
  530. font-size: 12px;
  531. }
  532. .wallet_list dl dd span a.btn02 {
  533. width: 70px;
  534. height: 24px;
  535. display: inline-block;
  536. background: #cfcfcf;
  537. color: #fff;
  538. line-height: 24px;
  539. vertical-align: middle;
  540. font-size: 12px;
  541. }
  542. .wallet_list dl dd span a.btn01:hover {
  543. background: #5078cb;
  544. }
  545. .wallet_banner {
  546. margin-top: 16px;
  547. }
  548. .wallet_banner img {
  549. width: 100%;
  550. }
  551. /*我的求购*/
  552. .wanted {
  553. width: 100%;
  554. margin: 0 auto;
  555. }
  556. .wanted01 {
  557. height: 40px;
  558. margin-bottom: 16px;
  559. }
  560. .wanted ul {
  561. width: 908px;
  562. margin: 0 auto;
  563. height: 40px;
  564. line-height: 40px;
  565. background: #fff;
  566. }
  567. .wanted ul li {
  568. width: 100px;
  569. height: 40px;
  570. text-align: center;
  571. float: left;
  572. margin-left: 25px;
  573. }
  574. .wanted ul li a {
  575. font-size: 14px;
  576. width: 100px;
  577. height: 40px;
  578. display: inline-block;
  579. }
  580. .wanted ul li.active a {
  581. color: #5078cb;
  582. border-bottom: 3px #5078cb solid;
  583. }
  584. .wanted ul li:hover a {
  585. color: #5078cb;
  586. border-bottom: 3px #5078cb solid;
  587. }
  588. .wanted ul li a em {
  589. color: #e64040;
  590. }
  591. .wanted ul li.active a {
  592. color: #5078cb;
  593. }
  594. .wanted_btn01,.wanted_btn01 a {
  595. width: 104px;
  596. height: 40px;
  597. background: #ecf2fd;
  598. color: #5078cb;
  599. text-align: center;
  600. display: inline-block;
  601. font-size: 14px;
  602. line-height: 40px;
  603. }
  604. .wanted_btn01 a {
  605. border: #e8e8e8 1px solid;
  606. }
  607. .wanted_btn01 a:hover {
  608. background: #6b93e4;
  609. color: #fff;
  610. }
  611. .wanted_list01 {
  612. width: 100%;
  613. margin: 0 auto;
  614. background: #ecf2fd;
  615. }
  616. .wanted_list01 dl {
  617. width: 100%;
  618. margin: 0 auto;
  619. background: #fff;
  620. display: none;
  621. }
  622. .wanted_list01 dl span {
  623. height: 50px;
  624. line-height: 50px;
  625. display: inline-block;
  626. float: left;
  627. width: 12%;
  628. font-size: 14px;
  629. }
  630. .wanted_list01 dl dt,.wanted_list01 dl dd {
  631. text-align: center;
  632. width: 98%;
  633. border-bottom: #cfcfcf 1px dashed;
  634. height: 50px;
  635. margin: 0 auto;
  636. }
  637. .wanted_list01 dl dt {
  638. font-weight: bold;
  639. color: #555;
  640. }
  641. .wanted_list01 dl dt {
  642. border-bottom: none;
  643. }
  644. .wanted_list01 dl dt span.wd01,.wanted_list01 dl dd span.wd01 {
  645. width: 4% !important;
  646. }
  647. .height16 {
  648. width: 100%;
  649. height: 16px;
  650. background: #ecf2fd;
  651. display: inline-block;
  652. }
  653. .wanted_list01 dl dd a {
  654. color: #5078cb;
  655. }
  656. .wanted_list01 dl dd a:hover {
  657. color: #5078cb;
  658. }
  659. .wanted_list01 .more {
  660. line-height: 50px;
  661. float: right;
  662. font-size: 14px;
  663. margin-right: 30px;
  664. }
  665. .wanted_list01 a:hover {
  666. color: #5078cb !important;
  667. }
  668. .wanted_list01 dl dd:last-child,.wanted_list02 dl dd:last-child {
  669. border-bottom: none;
  670. }
  671. .wanted_list02 {
  672. width: 100%;
  673. margin: 0 auto;
  674. background: #ecf2fd;
  675. margin-top: 16px;
  676. }
  677. .wanted_list02 dl {
  678. width: 100%;
  679. margin: 0 auto;
  680. background: #fff;
  681. }
  682. .wanted_list02 dl span {
  683. height: 50px;
  684. line-height: 50px;
  685. display: inline-block;
  686. float: left;
  687. width: 18%;
  688. font-size: 14px;
  689. }
  690. .wanted_list02 dl dt,.wanted_list02 dl dd {
  691. text-align: center;
  692. width: 98%;
  693. border-bottom: #cfcfcf 1px dashed;
  694. height: 50px;
  695. margin: 0 auto;
  696. }
  697. .wanted_list02 dl dt {
  698. font-weight: bold;
  699. color: #555;
  700. }
  701. .wanted_list02 dl dt {
  702. border-bottom: none;
  703. }
  704. .wanted_list02 dl dt span.wd01,.wanted_list02 dl dd span.wd01 {
  705. width: 6% !important;
  706. }
  707. .height16 {
  708. width: 100%;
  709. height: 16px;
  710. background: #ecf2fd;
  711. display: inline-block;
  712. }
  713. .wanted_list02 dl dd a {
  714. color: #5078cb;
  715. }
  716. .wanted_list02 dl dd a:hover {
  717. color: #5078cb;
  718. }
  719. .wanted_list02 .more {
  720. line-height: 50px;
  721. float: right;
  722. font-size: 14px;
  723. margin-right: 55px;
  724. }
  725. .wanted_list02 a:hover {
  726. color: #5078cb; !important;
  727. }
  728. .xiazai em {
  729. width: 16px;
  730. height: 16px;
  731. display: inline-block;
  732. background: url("../../img/user/images/xiazai.png") no-repeat;
  733. position: relative;
  734. top: 2px;
  735. }
  736. .wanted_list02 a.xiazai:hover {
  737. color: #5078cb !important;
  738. }
  739. .xiazai:hover em {
  740. background-position: -17px 0;
  741. }
  742. .wanted_list02 dl input {
  743. display: none;
  744. }
  745. .wanted_list02 dl label {
  746. width: 15px;
  747. height: 15px;
  748. display: inline-block;
  749. background: url("../../img/user/images/check.png") no-repeat;
  750. position: relative;
  751. }
  752. .wanted_list02 dl label.active {
  753. background-position: -15px 0;
  754. }
  755. /*订单中心*/
  756. .oder {
  757. width: 100%;
  758. margin: 0 auto;
  759. }
  760. .oder .oder_list dl dt span.wd01 {
  761. position: relative;
  762. }
  763. .oder .oder_list dl dt span.wd01 label:before {
  764. content: "全选";
  765. position: absolute;
  766. font-size: 14px;
  767. color: #999;
  768. display: inline-block;
  769. width: 30px;
  770. top: -16px;
  771. left: 20px;
  772. }
  773. .oder01 {
  774. height: 40px;
  775. margin-bottom: 0;
  776. }
  777. .oder01 ul {
  778. width: 100%;
  779. margin: 0 auto;
  780. height: 40px;
  781. line-height: 40px;
  782. background: #fff;
  783. }
  784. .oder01 ul li {
  785. min-width: 100px;
  786. height: 40px;
  787. text-align: center;
  788. float: left;
  789. margin-left: 25px;
  790. }
  791. .oder01 ul li a {
  792. font-size: 14px;
  793. min-width: 100px;
  794. height: 40px;
  795. display: inline-block;
  796. }
  797. .oder01 ul li.active a {
  798. color: #5078cb;
  799. border-bottom: 3px #5078cb solid;
  800. }
  801. .oder01 ul li:hover a {
  802. color: #5078cb;
  803. /*border-bottom: 3px #5078cb solid;*/
  804. }
  805. .oder01 ul li a em {
  806. color: #e64040;
  807. }
  808. .oder01 ul li.active a,.oder01 ul li.active a em {
  809. color: #5078cb;
  810. }
  811. .oder_list {
  812. width: 100%;
  813. margin: 0 auto;
  814. background: #ecf2fd;
  815. margin-top: 16px;
  816. }
  817. .oder_list dl {
  818. width: 100%;
  819. margin: 0 auto;
  820. background: #fff;
  821. display: none;
  822. }
  823. .oder_list dl span {
  824. height: 50px;
  825. line-height: 50px;
  826. display: inline-block;
  827. float: left;
  828. width: 16%;
  829. font-size: 14px;
  830. }
  831. .oder_list dl dt,.oder_list dl dd {
  832. text-align: center;
  833. width: 98%;
  834. border-bottom: #cfcfcf 1px solid;
  835. height: 50px;
  836. margin: 0 auto;
  837. line-height: 50px;
  838. }
  839. .oder_list dl dt {
  840. font-weight: bold;
  841. color: #555;
  842. }
  843. .oder_list dl dt {
  844. border-bottom: none;
  845. }
  846. .oder_list dl dt span.wd01,.oder_list dl dd span.wd01 {
  847. width: 4% !important;
  848. }
  849. .oder_list dl input {
  850. display: none;
  851. }
  852. .oder_list dl span label {
  853. width: 15px;
  854. height: 15px;
  855. display: inline-block;
  856. background: url("../../img/user/images/check.png") no-repeat;
  857. position: relative;
  858. }
  859. .oder_list dl span.wd01 input[type="checkbox"]:checked + label {
  860. background-position: -15px 0;
  861. }
  862. .oder_list dl .line01 img {
  863. margin-right: 5px;
  864. vertical-align: middle;
  865. }
  866. .oder_list dl .contact_btn,.log_cter_h span a.contact_btn,.contact01 a.contact_btn {
  867. width: 62px;
  868. height: 18px;
  869. line-height: 18px;
  870. background: #ef7f03;
  871. display: inline-block;
  872. text-align: center;
  873. color: #fff;
  874. font-size: 12px;
  875. border-radius: 5px;
  876. }
  877. .oder .oder_list dl dd.line01 .contact_btn:hover,.contact01 a.contact_btn:hover {
  878. background: #e64040;
  879. color: #fff !important;
  880. }
  881. .oder_list dl .line02 {
  882. min-height: 140px;
  883. overflow: inherit;
  884. }
  885. .oder_list dl .line02 span {
  886. line-height: 140px;
  887. height: 140px;
  888. }
  889. .oder_list dl .pro_xq {
  890. width: 100%;
  891. margin: 0 auto;
  892. height: 80px;
  893. position: relative;
  894. }
  895. .oder_list dl .pro_xq img {
  896. width: 55px;
  897. height: 55px;
  898. float: left;
  899. vertical-align: middle;
  900. margin-top: 35px;
  901. border: #e8e8e8 1px solid !important;
  902. }
  903. .oder_list dl .pro_xq p {
  904. float: right;
  905. line-height: 20px;
  906. display: inline-block;
  907. position: absolute;
  908. right: -40px;
  909. top: 20px;
  910. text-align: left;
  911. font-size: 14px;
  912. }
  913. .oder_list dl .logistics_xq {
  914. line-height: 20px !important;
  915. padding-top: 10px;
  916. border-left: #cfcfcf 1px solid;
  917. }
  918. .oder_list dl .logistics_xq a.oder_d {
  919. color: #323232;
  920. text-decoration: none;
  921. }
  922. .oder_list dl .oder_deal {
  923. line-height: 20px !important;
  924. padding-top: 20px;
  925. border-left: #cfcfcf 1px solid;
  926. }
  927. .oder_list dl .logistics_xq a {
  928. color: #5078cb;
  929. text-decoration: underline;
  930. }
  931. .oder_list dl .logistics_xq a:hover,.oder_list dl .oder_deal a:hover {
  932. color: #5078cb;
  933. }
  934. .oder_list dl .oder_deal a {
  935. width: 100%;
  936. margin: 0px auto;
  937. color: #5078cb;
  938. display: inline-block;
  939. }
  940. .oder_list dl b {
  941. float: right;
  942. font-size: 14px;
  943. margin-right: 50px;
  944. }
  945. .oder_list dl .price {
  946. border-bottom: none;
  947. }
  948. .love_list {
  949. width: 100%;
  950. margin: 0 auto;
  951. margin-top: 16px !important;
  952. }
  953. .love_list .rt_menu img {
  954. vertical-align: middle;
  955. margin-right: 5px;
  956. }
  957. .love_list .rt_menu {
  958. margin-bottom: 10px;
  959. }
  960. .love_list {
  961. background: #fff;
  962. width: 100%;
  963. margin: 0px auto;
  964. display: inline-block;
  965. margin-top: 16px;
  966. padding-bottom: 20px;
  967. }
  968. .love_list ul {
  969. width: 98%;
  970. margin: 0 auto;
  971. }
  972. .love_list ul li {
  973. width: 220px;
  974. height: 246px;
  975. border: #e3e3e3 1px solid;
  976. float: left;
  977. position: relative;
  978. text-align: center;
  979. overflow: hidden;
  980. margin: 15px 14px 10px 15px;
  981. }
  982. .love_list ul li a img {
  983. margin-top: 40px;
  984. max-width: 180px;
  985. max-height: 140px;
  986. }
  987. .love_list ul li a p {
  988. width: 100%;
  989. height: 40px;
  990. background: #f8f8f8;
  991. position: absolute;
  992. bottom: 0;
  993. }
  994. .love_list ul li:hover {
  995. border: #d32526 1px solid;
  996. }
  997. .love_list ul li:hover a img,.pro_list dt:hover img {
  998. transform: scale(1.1);
  999. }
  1000. .love_list ul li a p em {
  1001. width: 90%;
  1002. display: inline-block;
  1003. padding-top: 4px;
  1004. font-size: 12px;
  1005. }
  1006. .love_list ul li span {
  1007. position: absolute;
  1008. top: 0;
  1009. left: 0;
  1010. }
  1011. .love_list ul li span a {
  1012. width: 70px;
  1013. height: 24px;
  1014. line-height: 24px;
  1015. color: #fff;
  1016. background: #d32526;
  1017. display: inline-block;
  1018. }
  1019. /*维权查询*/
  1020. .rights {
  1021. }
  1022. .screen {
  1023. width: 100%;
  1024. height: 50px;
  1025. position: relative;
  1026. background: #f5f5f5;
  1027. }
  1028. .screen .sreach input {
  1029. width: 288px;
  1030. padding-left: 10px;
  1031. height: 36px;
  1032. background: #fff;
  1033. float: left;
  1034. vertical-align: middle;
  1035. border: #fff 1px solid;
  1036. font-size: 14px;
  1037. }
  1038. .screen .sreach a.seek {
  1039. vertical-align: middle;
  1040. display: inline-block;
  1041. line-height: 37px;
  1042. text-align: center;
  1043. height: 37px;
  1044. width: 92px;
  1045. border-left: 0;
  1046. background: #e8e8e8;
  1047. color: #323232;
  1048. text-align: center;
  1049. font-size: 14px;
  1050. float: right;
  1051. }
  1052. .screen .sreach a.seek:hover {
  1053. background: #5078cb;
  1054. color: #fff;
  1055. }
  1056. .screen_time input {
  1057. width: 112px;
  1058. height: 35px;
  1059. line-height: 35px;
  1060. font-size: 14px;
  1061. color: #999;
  1062. border: #5078cb 1px solid;
  1063. text-align: center;
  1064. }
  1065. .screen_time span {
  1066. font-size: 14px;
  1067. margin-right: 20px;
  1068. }
  1069. .rights dl span {
  1070. width: 20%;
  1071. }
  1072. .rights dl .pro_xq p {
  1073. left: 60px;
  1074. }
  1075. .rights dl .logistics_xq a {
  1076. padding-top: 5px;
  1077. text-decoration: none;
  1078. height: 10px;
  1079. display: inline-block;
  1080. font-size: 12px;
  1081. }
  1082. .rights dl .oder_deal a {
  1083. font-size: 12px;
  1084. }
  1085. .rights dl .pro_xq {
  1086. margin-left: 25px;
  1087. }
  1088. .rights dl dd:last-child,.ticket_record_list dl dd {
  1089. border-bottom: none;
  1090. }
  1091. .page {
  1092. width: 100%;
  1093. margin: 0 auto;
  1094. height: 10px;
  1095. background: #f5f5f5;
  1096. line-height: 20px;
  1097. position: relative;
  1098. top: -5px;
  1099. }
  1100. .page ul {
  1101. float: right;
  1102. }
  1103. .page ul li {
  1104. float: left;
  1105. font-size: 14px;
  1106. color: #999;
  1107. margin: 0 5px;
  1108. }
  1109. .page ul li a {
  1110. width: 50px;
  1111. display: inline-block;
  1112. font-size: 14px;
  1113. color: #999;
  1114. }
  1115. .page ul li a:hover {
  1116. color: #5078cb;
  1117. }
  1118. .page ul li input {
  1119. width: 24px;
  1120. height: 24px;
  1121. border: #5078cb 1px solid;
  1122. text-align: center;
  1123. color: #5078cb;
  1124. margin: 0 10px;
  1125. }
  1126. /*开票记录*/
  1127. .ticket_record_list {
  1128. width: 100%;
  1129. margin: 0 auto;
  1130. background: #ecf2fd;
  1131. margin-top: 16px !important;
  1132. }
  1133. .ticket_record_list dl {
  1134. width: 100%;
  1135. margin: 0 auto;
  1136. background: #fff;
  1137. }
  1138. .ticket_record_list dl .show {
  1139. display: none;
  1140. }
  1141. .ticket_record_list dl dt,.ticket_record_list dl dd {
  1142. width: 98%;
  1143. margin: 0 auto;
  1144. border-bottom: #e8e8e8 1px solid;
  1145. height: 60px;
  1146. }
  1147. .ticket_record_list dl dt{
  1148. border-bottom: none;
  1149. }
  1150. .ticket_record_list dl dt,.ticket_record_list dl dt span {
  1151. height: 40px;
  1152. line-height: 40px;
  1153. }
  1154. .ticket_record_list dl span {
  1155. width: 16.6666666%;
  1156. float: left;
  1157. height: 60px;
  1158. line-height: 60px;
  1159. display: inline-block;
  1160. font-size: 14px;
  1161. text-align: center;
  1162. }
  1163. .ticket_record_list dl dt span {
  1164. font-weight: bold;
  1165. color: #555;
  1166. }
  1167. .ticket_record_list dl dd span img {
  1168. vertical-align: middle;
  1169. }
  1170. .ticket_record_list dl dd span a {
  1171. color: #5078cb;
  1172. }
  1173. .ticket_record_list dl dd em {
  1174. color: #5078cb;
  1175. }
  1176. /*支付记录*/
  1177. .marg_topno {
  1178. margin-top: none !important;
  1179. }
  1180. .pay_record .user_r_01 {
  1181. margin-bottom: 16px;
  1182. }
  1183. .pay_record .ticket_record_list dl dt {
  1184. height: 40px;
  1185. }
  1186. .pay_record .ticket_record_list .tab {
  1187. display: none;
  1188. width: 100%;
  1189. }
  1190. .pay_record .ticket_record_list dl dd {
  1191. height: 50px;
  1192. line-height: 50px;
  1193. }
  1194. .pay_record .ticket_record_list dl dt {
  1195. border-bottom: none;
  1196. }
  1197. .pay_banner {
  1198. width: 100%;
  1199. margin: 0px auto;
  1200. margin-top: 16px;
  1201. }
  1202. .pay_record .pay_xq dd img {
  1203. vertical-align: middle;
  1204. width: 25px;
  1205. }
  1206. .pay_record .pay_xq .wd01 {
  1207. width: 8%;
  1208. }
  1209. .pay_record .pay_xq span {
  1210. width: 26%;
  1211. }
  1212. .pay_record .ticket_record_list dl span {
  1213. height: 50px;
  1214. line-height: 50px;
  1215. }
  1216. .pay_record .ticket_record_list dl dt,.pay_record .ticket_record_list dl dt span {
  1217. height: 40px;
  1218. line-height: 40px;
  1219. }
  1220. .pay_record .pay_xq .pay_ok,.pay_record .pay_xq .pay_ok span {
  1221. height: 40px;
  1222. overflow: hidden;
  1223. line-height: 40px;
  1224. }
  1225. .pay_record .pay_xq dd.change_info {
  1226. height: 70px;
  1227. border-bottom: none;
  1228. }
  1229. .pay_record .pay_xq dd.change_info a {
  1230. width: 94px;
  1231. height: 36px;
  1232. display: inline-block;
  1233. background: #5078cb;
  1234. color: #fff;
  1235. text-align: center;
  1236. float: right;
  1237. line-height: 36px;
  1238. margin-top: 15px;
  1239. margin-right: 25px;
  1240. }
  1241. .pay_record .pay_xq dd.change_info a:hover {
  1242. background: #5078cb;
  1243. }
  1244. .pay_record .pay_xq .pay_style {
  1245. height: 120px;
  1246. width: 95%;
  1247. margin: 0 auto;
  1248. border-bottom: none;
  1249. }
  1250. .pay_record .pay_xq .pay_style span {
  1251. width: 20%;
  1252. text-align: center;
  1253. height: 120px;
  1254. }
  1255. .pay_record .pay_xq .pay_style span img {
  1256. width: 45px;
  1257. max-height: 50px;
  1258. vertical-align: bottom;
  1259. }
  1260. .pay_record .pay_xq .pay_style span a:hover img {
  1261. transform: scale(1.03);
  1262. }
  1263. .pay_record .pay_xq .pay_style span a {
  1264. width: 100%;
  1265. margin: 0 auto;
  1266. display: inline-block;
  1267. height: 120px;
  1268. position: relative;
  1269. }
  1270. .pay_record .pay_xq .pay_style span a b {
  1271. width: 45px;
  1272. height: 50px;
  1273. overflow: hidden;
  1274. display: inline-block;
  1275. padding-top: 15px;
  1276. }
  1277. .pay_record .pay_xq .pay_style span a p {
  1278. font-size: 14px;
  1279. color: #323232;
  1280. height: 35px;
  1281. line-height: 35px;
  1282. position: relative;
  1283. top: -18px;
  1284. }
  1285. .pay_record .pay_xq .pay_style span a:hover p {
  1286. color: #5078cb;
  1287. }
  1288. /*开票资料*/
  1289. .ticket_record_list .ticket_data .wd01 {
  1290. width: 10%;
  1291. }
  1292. .ticket_record_list .ticket_data span {
  1293. width: 20%;
  1294. }
  1295. .ticket_record_list .ticket_data span a:hover {
  1296. color: #5078cb;
  1297. }
  1298. .add_ticket {
  1299. width: 100%;
  1300. margin: 0 auto;
  1301. background: #f5f5f5;
  1302. padding-top: 16px;
  1303. }
  1304. .add_ticket .add_menu {
  1305. width: 100%;
  1306. margin: 0 auto;
  1307. background: #fff;
  1308. }
  1309. .add_ticket .add_menu span {
  1310. width: 98%;
  1311. height: 45px;
  1312. line-height: 45px;
  1313. display: inline-block;
  1314. border-bottom: #e8e8e8 1px solid;
  1315. font-size: 14px;
  1316. margin-left: 15px;
  1317. }
  1318. .add_ticket_form {
  1319. width: 100%;
  1320. margin: 0px auto;
  1321. background: #fff;
  1322. padding-bottom: 20px;
  1323. }
  1324. .add_ticket_form ul {
  1325. width: 92%;
  1326. margin: 0 auto;
  1327. }
  1328. .add_ticket_form ul li {
  1329. width: 100%;
  1330. height: 34px;
  1331. line-height: 34px;
  1332. padding: 10px 0;
  1333. font-size: 14px;
  1334. }
  1335. .add_ticket_form ul li span.fl {
  1336. width: 10%;
  1337. font-size: 14px;
  1338. }
  1339. .add_ticket_form ul li div.fr {
  1340. width: 89%;
  1341. color: #666;
  1342. }
  1343. .add_ticket_form ul li div.fr input[type="radio"] {
  1344. display: none;
  1345. }
  1346. .add_ticket_form ul li div.fr label {
  1347. width: 16px;
  1348. height: 16px;
  1349. display: inline-block;
  1350. background: url("../../img/user/images/radio.png") no-repeat;
  1351. background-position: 0 -1px;
  1352. vertical-align: middle;
  1353. margin-right: 8px;
  1354. }
  1355. .add_ticket_form ul li div.fr input[type="radio"]:checked + label {
  1356. background-position: -19px -1px;
  1357. }
  1358. .add_ticket_form ul li div.fr b {
  1359. width: 95px;
  1360. display: inline-block;
  1361. }
  1362. .add_ticket_form ul li div.fr em {
  1363. width: 100px;
  1364. height: 34px;
  1365. display: inline-block;
  1366. background: url("../../img/user/images/check_file.jpg") no-repeat;
  1367. text-align: center;
  1368. color: #5078cb;
  1369. cursor: pointer;
  1370. position: relative;
  1371. }
  1372. .add_ticket_form ul li div.fr input[type="file"] {
  1373. filter: alpha(opacity=0);
  1374. -moz-opacity: .0;
  1375. opacity: 0.0;
  1376. cursor: pointer;
  1377. }
  1378. .add_ticket_form ul li div.fr input {
  1379. font-size: 14px;
  1380. }
  1381. .add_ticket_form ul li div.fr .input01 {
  1382. width: 97%;
  1383. height: 34px;
  1384. border: #ccc 1px solid;
  1385. padding-left: 10px;
  1386. }
  1387. .add_ticket_form ul li div.fr select,.add_ticket_form ul li div.fr .input02,.add_ticket_form ul li div.fr span,.add_ticket_form ul li div.fr .input03 {
  1388. width: 115px;
  1389. height: 34px;
  1390. border: #ccc 1px solid;
  1391. padding-left: 10px;
  1392. font-size: 14px;
  1393. display: inline-block;
  1394. }
  1395. .add_ticket_form ul li div.fr .input02 {
  1396. margin: 0 10px;
  1397. }
  1398. .add_ticket_form ul li div.fr span {
  1399. padding-left: 0px !important;
  1400. position: relative;
  1401. width: 125px;
  1402. top: 2px;
  1403. }
  1404. .add_ticket_form ul li div.fr select {
  1405. -webkit-appearance: none;
  1406. appearance: none;
  1407. background: #fff;
  1408. -o-appearance: none;
  1409. -moz-appearance: none;
  1410. -ms-appearance: none;
  1411. border: none;
  1412. width: 125px;
  1413. color: #666;
  1414. position: relative;
  1415. }
  1416. .add_ticket_form ul li div.fr span:after {
  1417. width: 10px;
  1418. height: 16px;
  1419. display: inline-block;
  1420. background: url("../../img/user/images/xiala.png") no-repeat;
  1421. position: absolute;
  1422. top: 14px;
  1423. content: "";
  1424. right: 8px;
  1425. }
  1426. .add_ticket_form ul li div.fr .input04 {
  1427. width: 79.5%;
  1428. height: 34px;
  1429. border: #ccc 1px solid;
  1430. padding-left: 10px;
  1431. font-size: 14px;
  1432. display: inline-block;
  1433. margin-left: 15px;
  1434. }
  1435. .save {
  1436. width: 94px;
  1437. height: 36px;
  1438. display: inline-block;
  1439. line-height: 36px;
  1440. color: #fff;
  1441. background: #5078cb;
  1442. float: right;
  1443. text-align: center;
  1444. }
  1445. .save:hover {
  1446. background: #3f7ae3;
  1447. color: #fff;
  1448. }
  1449. /*弹出框*/
  1450. .tanchuang {
  1451. width: 100%;
  1452. height: 100%;
  1453. position: fixed;
  1454. z-index: 11111;
  1455. background: rgba(0, 0, 0, 0.0);
  1456. top: 0;
  1457. left: 0;
  1458. display: none;
  1459. }
  1460. .tanchuang .box {
  1461. position: absolute;
  1462. left: 0;
  1463. right: 0;
  1464. top: 0;
  1465. bottom: 0;
  1466. margin: auto;
  1467. box-shadow: 2px 2px 3px #ccc;
  1468. width: 502px;
  1469. height: 202px;
  1470. background: #fff;
  1471. padding: 15px 15px 15px 25px;
  1472. }
  1473. .tanchuang .box p {
  1474. line-height: 40px;
  1475. font-size: 14px;
  1476. margin: 0 auto;
  1477. }
  1478. .tanchuang .box p b {
  1479. float: left;
  1480. width: 25%;
  1481. color: #999;
  1482. }
  1483. .tanchuang .box p span {
  1484. float: right;
  1485. width: 70%;
  1486. }
  1487. .ticket_record .ticket_record_list .tab {
  1488. display: none;
  1489. width: 100%;
  1490. margin: 0 auto;
  1491. }
  1492. /*订单详情*/
  1493. .oder_detail {
  1494. width: 100%;
  1495. margin: 0 auto;
  1496. }
  1497. .oder_detail .logistics {
  1498. width: 100%;
  1499. margin: 0 auto;
  1500. height: 155px;
  1501. background: #fff;
  1502. border: #e8e8e8 1px solid;
  1503. }
  1504. .logistics_list01 {
  1505. width: 100%;
  1506. margin: 0 auto;
  1507. margin-top: 16px;
  1508. }
  1509. .log_menu {
  1510. width: 100%;
  1511. margin: 0 auto;
  1512. background: #fff;
  1513. }
  1514. .log_menu span {
  1515. width: 98%;
  1516. height: 45px;
  1517. line-height: 45px;
  1518. display: inline-block;
  1519. border-bottom: #e8e8e8 1px solid;
  1520. font-size: 14px;
  1521. margin-left: 15px;
  1522. padding-left: 10px;
  1523. font-weight: bold;
  1524. }
  1525. .log_menu span b {
  1526. float: right;
  1527. font-size: 14px;
  1528. }
  1529. .log_menu span b em {
  1530. color: #5078cb;
  1531. margin: 0 30px 0 30px;
  1532. }
  1533. .logistics_list01 .logistics_list_xq {
  1534. width: 100%;
  1535. margin: 0 auto;
  1536. background: #fff;
  1537. padding-bottom: 20px;
  1538. }
  1539. .logistics_list01 .logistics_list_xq dl {
  1540. width: 95%;
  1541. margin: 0 auto;
  1542. position: relative;
  1543. }
  1544. .logistics_list01 .logistics_list_xq dl dd {
  1545. min-height: 50px;
  1546. border-left: #d1d1d1 1px solid;
  1547. position: relative;
  1548. }
  1549. .logistics_list01 .logistics_list_xq dl dd em {
  1550. width: 11px;
  1551. height: 11px;
  1552. display: inline-block;
  1553. background: #d1d1d1;
  1554. border-radius: 100%;
  1555. vertical-align: middle;
  1556. position: relative;
  1557. left: -6px;
  1558. }
  1559. .logistics_list01 .logistics_list_xq dl dd em.active {
  1560. background: #5078cb;
  1561. }
  1562. .logistics_list01 .logistics_list_xq dl dd:first-child,.logistics_list01 .logistics_list_xq dl dd:last-child {
  1563. border-left: none;
  1564. }
  1565. .logistics_list01 .logistics_list_xq dl dd:first-child:before,.logistics_list01 .logistics_list_xq dl dd:last-child:before {
  1566. content: "";
  1567. width: 1px;
  1568. display: inline-block;
  1569. background: #d1d1d1;
  1570. height: 25px;
  1571. position: absolute;
  1572. }
  1573. .logistics_list01 .logistics_list_xq dl dd:first-child:before {
  1574. top: 25px;
  1575. }
  1576. .logistics_list01 .logistics_list_xq dl dd span {
  1577. color: #666;
  1578. text-align: left;
  1579. margin-left: 35px;
  1580. line-height: 50px;
  1581. }
  1582. .logistics_list01 .logistics_list_xq dl dd i {
  1583. width: 15px;
  1584. display: inline-block;
  1585. }
  1586. .logistics_list01 .logistics_list_xq dl dd span p {
  1587. line-height: 20px;
  1588. padding-left: 185px;
  1589. position: relative;
  1590. top: -12px;
  1591. }
  1592. .logistics_list01 .oder_xq {
  1593. width: 100%;
  1594. margin: 0 auto;
  1595. background: #fff;
  1596. padding-top: 10px;
  1597. }
  1598. .logistics_list01 .oder_xq p {
  1599. line-height: 30px;
  1600. font-size: 14px;
  1601. margin: 0 auto;
  1602. width: 91%;
  1603. }
  1604. .logistics_list01 .oder_xq p b {
  1605. float: left;
  1606. width: 15%;
  1607. }
  1608. .logistics_list01 .oder_xq p span {
  1609. float: right;
  1610. width: 85%;
  1611. text-align: left;
  1612. }
  1613. .oder_xq_list {
  1614. width: 100%;
  1615. margin: 0 auto;
  1616. background: #fff;
  1617. padding-top: 10px;
  1618. padding-bottom: 20px;
  1619. }
  1620. .oder_xq_list dl {
  1621. width: 98%;
  1622. margin: 0 auto;
  1623. }
  1624. .oder_xq_list dl dt {
  1625. height: 50px;
  1626. line-height: 50px;
  1627. font-weight: bold;
  1628. color: #555;
  1629. border-top: #dcdcdc 1px solid;
  1630. border-bottom: #dcdcdc 1px solid;
  1631. font-size: 14px;
  1632. }
  1633. .oder_xq_list dl dd {
  1634. height: 40px;
  1635. line-height: 40px;
  1636. }
  1637. .oder_xq_list dl dd img {
  1638. vertical-align: middle;
  1639. }
  1640. .oder_xq_list dl span {
  1641. width: 23.3333333%;
  1642. float: left;
  1643. display: inline-block;
  1644. text-align: center;
  1645. line-height: 40px;
  1646. font-size: 14px;
  1647. }
  1648. .oder_xq_list dl span.wd01 {
  1649. width: 15%;
  1650. }
  1651. .oder_xq_list dl .oder_l {
  1652. height: 90px;
  1653. }
  1654. .oder_xq_list dl .oder_l span {
  1655. line-height: 90px;
  1656. }
  1657. .oder_xq_list dl dd img {
  1658. margin-right: 10px;
  1659. }
  1660. .oder_xq_list dl .oder_l img {
  1661. width: 42px;
  1662. height: 42px;
  1663. border: #e8e8e8 1px solid;
  1664. float: left;
  1665. margin-left: 50px;
  1666. }
  1667. .oder_xq_list dl dd {
  1668. border-bottom: #d0d0d2 1px dotted;
  1669. }
  1670. .oder_xq_list dl .oder_l p {
  1671. width: 55%;
  1672. display: inline-block;
  1673. float: right;
  1674. line-height: 20px;
  1675. text-align: left;
  1676. }
  1677. .oder_xq_list dl span em {
  1678. color: #5078cb;
  1679. }
  1680. .oder_xq_list dl .oder_l span.wd02 {
  1681. margin-top: 22px;
  1682. }
  1683. .oder_xq_list dl .price,.oder_xq_list dl .price span {
  1684. height: 60px;
  1685. line-height: 60px;
  1686. border-bottom: none;
  1687. width: 100%;
  1688. text-align: right;
  1689. }
  1690. .oder_xq_list dl .price span i {
  1691. color: #e20808;
  1692. margin-right: 60px;
  1693. }
  1694. .oder_xq_list dl .line60,.oder_xq_list dl .line60 span {
  1695. height: 60px;
  1696. line-height: 60px;
  1697. }
  1698. .logistics ul {
  1699. width: 100%;
  1700. margin: 0 auto;
  1701. background: #fff;
  1702. }
  1703. .logistics ul li {
  1704. width: 20%;
  1705. float: left;
  1706. text-align: center;
  1707. height: 155px;
  1708. }
  1709. .logistics ul li p {
  1710. font-size: 14px;
  1711. line-height: 60px;
  1712. }
  1713. .logistics ul li em {
  1714. width: 34px;
  1715. height: 34px;
  1716. display: inline-block;
  1717. background: #dcdcdc;
  1718. border-radius: 100%;
  1719. line-height: 34px;
  1720. position: relative;
  1721. }
  1722. .logistics ul li.active em i {
  1723. background: url("../../img/user/images/logistics_act.png") no-repeat center;
  1724. }
  1725. .logistics ul li.active em.have i:after {
  1726. content: "";
  1727. width: 178px;
  1728. height: 4px;
  1729. background: #0fc569;
  1730. display: inline-block;
  1731. position: absolute;
  1732. left: 28px;
  1733. top: 18px;
  1734. z-index: 200;
  1735. }
  1736. .logistics ul li.active i b {
  1737. display: none;
  1738. }
  1739. .logistics ul li em i {
  1740. width: 24px;
  1741. height: 24px;
  1742. display: inline-block;
  1743. background: #dcdcdc;
  1744. border-radius: 100%;
  1745. line-height: 24px;
  1746. color: #fff;
  1747. font-weight: bold;
  1748. font-size: 16px;
  1749. margin-top: 4.5px;
  1750. }
  1751. .logistics ul li em i.active {
  1752. background: #0fc569;
  1753. }
  1754. .logistics ul li p:last-child {
  1755. color: #999;
  1756. font-size: 12px;
  1757. }
  1758. .logistics ul li em.have:after {
  1759. content: "";
  1760. width: 179px;
  1761. height: 10px;
  1762. background: #dcdcdc;
  1763. display: inline-block;
  1764. position: absolute;
  1765. left: 32px;
  1766. top: 15px
  1767. }
  1768. .logistics ul li em i b {
  1769. font-weight: bold;
  1770. }
  1771. /*物流信息*/
  1772. .logistics_banner01,.logistics_banner02 {
  1773. margin-top: 16px !important;
  1774. }
  1775. .logistics_banner01,.logistics_banner01 img,.logistics_banner02,.logistics_banner02 img {
  1776. width: 100%;
  1777. margin: 0 auto;
  1778. }
  1779. .logistics_banner01 a {
  1780. margin-top: 5px;
  1781. }
  1782. .log_cter_h {
  1783. width: 100%;
  1784. margin: 0 auto;
  1785. height: 35px;
  1786. line-height: 35px;
  1787. border-bottom: #e8e8e8 1px solid;
  1788. background: #fff;
  1789. }
  1790. .log_cter_h span {
  1791. font-size: 14px;
  1792. margin-left: 20px;
  1793. margin-right: 60px;
  1794. }
  1795. .log_cter_h span img {
  1796. vertical-align: middle;
  1797. margin-right: 5px;
  1798. }
  1799. .log_list,.log_list ul {
  1800. width: 100%;
  1801. margin: 0 auto;
  1802. background: #fff;
  1803. padding: 15px 0 5px 0;
  1804. }
  1805. .log_list ul li {
  1806. width:25%;
  1807. float: left;
  1808. text-align: center;
  1809. }
  1810. .log_list ul li em {
  1811. width:60px;
  1812. height:60px;
  1813. display: inline-block;
  1814. position: relative;
  1815. }
  1816. .log_list ul li em.lg_01 {
  1817. background: url("../../img/vendor/images/log02.png") no-repeat center;
  1818. }
  1819. .log_list ul li em.lg_02 {
  1820. background: url("../../img/vendor/images/log03.png") no-repeat center;
  1821. }
  1822. .log_list ul li em.lg_03 {
  1823. background: url("../../img/vendor/images/log04.png") no-repeat center;
  1824. }
  1825. .log_list ul li em.lg_04 {
  1826. background: url("../../img/vendor/images/log05.png") no-repeat center;
  1827. }
  1828. .log_list ul li em.lg_05 {
  1829. background: url("../../img/vendor/images/log05.png") no-repeat center;
  1830. }
  1831. .log_list ul li.active em.lg_01 {
  1832. background: url("../../img/vendor/images/log002.png") no-repeat center;
  1833. }
  1834. .log_list ul li em.lg_01:before,.log_list ul li em.lg_02:before,.log_list ul li em.lg_03:before{
  1835. content: "";
  1836. width: 86px;
  1837. height: 6px;
  1838. background: url("../../img/vendor/images/log_dot01.png") no-repeat center;
  1839. display: inline-block;
  1840. position: absolute;
  1841. top:30px;
  1842. left:80px;
  1843. }
  1844. .log_list ul li.active em.lg_01:before,.log_list ul li.active em.lg_02:before,.log_list ul li.active em.lg_03:before {
  1845. content: "";
  1846. width: 86px;
  1847. height: 6px;
  1848. background: url("../../img/vendor/images/log_dot.png") no-repeat center;
  1849. display: inline-block;
  1850. position: absolute;
  1851. top:30px;
  1852. left:80px;
  1853. }
  1854. .log_list ul li.active em.lg_02 {
  1855. background: url("../../img/vendor/images/log003.png") no-repeat center;
  1856. }
  1857. .log_list ul li.active em.lg_03 {
  1858. background: url("../../img/vendor/images/log004.png") no-repeat center;
  1859. }
  1860. .log_list ul li.active em.lg_04 {
  1861. background: url("../../img/vendor/images/log005.png") no-repeat center;
  1862. }
  1863. .log_list ul li.active em.lg_05 {
  1864. background: url("../../img/vendor/images/log005.png") no-repeat center;
  1865. }
  1866. .log_list ul li p {
  1867. width: 100%;
  1868. margin: 0 auto;
  1869. font-size: 14px;
  1870. line-height: 30px;
  1871. }
  1872. .logistics_cter .logistics_list01 .logistics_list_xq dl {
  1873. width: 90%;
  1874. }
  1875. .log02 dl span {
  1876. width: 11%;
  1877. height: 50px;
  1878. line-height: 50px;
  1879. font-size: 12px;
  1880. }
  1881. .log02 dl dd {
  1882. height: 50px;
  1883. line-height: 50px;
  1884. }
  1885. .log02 dl dt {
  1886. width: 96%;
  1887. }
  1888. .log02 dl span.wd01 {
  1889. width: 30%;
  1890. }
  1891. .log02 dl dt span {
  1892. font-size: 14px;
  1893. }
  1894. .log02 dl span.wd02 {
  1895. width: 18%;
  1896. }
  1897. .log02 dl span a.default_act {
  1898. width: 64px;
  1899. height: 24px;
  1900. display: inline-block;
  1901. background: #d8d8d8;
  1902. text-align: center;
  1903. line-height: 24px;
  1904. color: #323232;
  1905. }
  1906. .log02 dl span a.default {
  1907. width: 64px;
  1908. height: 24px;
  1909. display: inline-block;
  1910. border: #d8d8d8 1px solid;
  1911. text-align: center;
  1912. line-height: 24px;
  1913. color: #323232;
  1914. }
  1915. .log02 dl span a.default:hover,.log02 dl span a.default_act:hover {
  1916. background: #5078cb;
  1917. color: #fff;
  1918. }
  1919. .log02 dl .line_open span {
  1920. text-align: left;
  1921. font-size: 14px;
  1922. padding-left: 20px;
  1923. }
  1924. .log02 dl .line_open span a {
  1925. float: right;
  1926. margin-right: 30px;
  1927. color: #323232;
  1928. }
  1929. .log02 dl .line_open span a.active img {
  1930. transform: rotate(-180deg);
  1931. }
  1932. .log02 dl .line_open span a img {
  1933. margin-left: 10px;
  1934. }
  1935. .log02 dl .line_open span em {
  1936. padding-left: 40px;
  1937. }
  1938. .log02 dl .add_adress {
  1939. border-bottom: none;
  1940. }
  1941. .log02 dl .add_adress a {
  1942. color: #5078cb;
  1943. margin-left: 30px;
  1944. }
  1945. .log02 dl .add_adress span {
  1946. width: 100%;
  1947. text-align: left;
  1948. }
  1949. .log02 dl .add_adress a:hover {
  1950. color: #5078cb;
  1951. }
  1952. .log02 .add_ticket_form ul li span.fl {
  1953. width: 12%;
  1954. }
  1955. .log02 .add_ticket_form ul li div.fr {
  1956. width: 86%;
  1957. }
  1958. .log02 .add_ticket_form ul li div.fr .input04 {
  1959. width: 72%;
  1960. }
  1961. .log02 .add_ticket_form ul li span em {
  1962. color: #eb0202;
  1963. }
  1964. .log02 .add_ticket_form ul li div.fr .input02 {
  1965. margin: 0 5px;
  1966. }
  1967. .log02 .add_ticket_form ul li input[type="checkbox"] {
  1968. display: none;
  1969. }
  1970. .log02 .add_ticket_form ul .default {
  1971. padding: 15px 0;
  1972. }
  1973. .log02 .add_ticket_form ul .default label {
  1974. width: 15px;
  1975. height: 15px;
  1976. display: inline-block;
  1977. background: url("../../img/user/images/check.png") no-repeat;
  1978. position: relative;
  1979. }
  1980. .add_ticket_form ul li div.fr input[type="checkbox"]:checked + label {
  1981. background-position: -15px 0;
  1982. }
  1983. .logistics_cter_01 .tab {
  1984. width: 100%;
  1985. display: none;
  1986. }
  1987. /*售后申请*/
  1988. .service_tab {
  1989. width: 100%;
  1990. margin: 0 auto;
  1991. }
  1992. .service_tab .tab_head {
  1993. width: 100%;
  1994. height: 40px;
  1995. line-height: 40px;
  1996. margin: 0 auto;
  1997. border-bottom: #e1e0e0 1px solid;
  1998. }
  1999. .service_tab .tab_head {
  2000. width: 80%;
  2001. }
  2002. .service_tab .tab_head a {
  2003. width: 20%;
  2004. height: 40px;
  2005. float: left;
  2006. line-height: 40px;
  2007. display: inline-block;
  2008. font-size: 14px;
  2009. text-align: center;
  2010. }
  2011. .service_tab .tab_head a.active,.service_tab .tab_head a:hover {
  2012. background: #fff;
  2013. border: #e1e0e0 1px solid;
  2014. border-bottom: none;
  2015. color: #5078cb;
  2016. }
  2017. .service_tab01 {
  2018. width: 100%;
  2019. margin: 0 auto;
  2020. background: #fff;
  2021. padding-bottom: 20px;
  2022. }
  2023. .service_tab01 .jindu {
  2024. width: 100%;
  2025. margin: 0 auto;
  2026. background: #fff;
  2027. }
  2028. .service_tab01 .jindu li {
  2029. width: 25%;
  2030. float: left;
  2031. text-align: center;
  2032. height: 150px;
  2033. margin-top: 20px;
  2034. }
  2035. .service_tab01 .jindu li p {
  2036. font-size: 14px;
  2037. line-height: 65px;
  2038. color: #9c9c9c;
  2039. }
  2040. .service_tab01 .jindu li em {
  2041. width: 24px;
  2042. height: 24px;
  2043. display: inline-block;
  2044. background: #ecf2fd;
  2045. border-radius: 100%;
  2046. line-height: 24px;
  2047. position: relative;
  2048. color: #9c9c9c;
  2049. }
  2050. .service_tab01 .jindu li em.have:after {
  2051. content: "";
  2052. width: 167px;
  2053. height: 5px;
  2054. background: #ecf2fd;
  2055. display: inline-block;
  2056. position: absolute;
  2057. left: 22px;
  2058. top: 10px
  2059. }
  2060. .service_tab01 .jindu li.active em.have:after {
  2061. background: url("../../img/user/images/server_dot.png") no-repeat center;
  2062. }
  2063. .service_tab01 .jindu li.active em {
  2064. background: #5078cb;
  2065. color: #fff;
  2066. }
  2067. .service_tab01 .jindu li.active p {
  2068. color: #5078cb;
  2069. font-weight: bold;
  2070. }
  2071. .service_rule {
  2072. width: 100%;
  2073. margin: 0 auto;
  2074. background: #fff;
  2075. margin-top: 16px !important;
  2076. padding-bottom: 50px;
  2077. }
  2078. .service_rule .add_menu {
  2079. width: 100%;
  2080. margin: 0 auto;
  2081. background: #fff;
  2082. }
  2083. .service_rule .add_menu span {
  2084. width: 98%;
  2085. height: 45px;
  2086. line-height: 45px;
  2087. display: inline-block;
  2088. border-bottom: #e8e8e8 1px solid;
  2089. font-size: 14px;
  2090. margin-left: 15px;
  2091. }
  2092. .service_rule p {
  2093. font-size: 12px;
  2094. line-height: 25px;
  2095. width: 92%;
  2096. margin: 0 auto;
  2097. color: #333;
  2098. }
  2099. .service_rule p.line_50 {
  2100. line-height: 50px;
  2101. }
  2102. .return_good {
  2103. width: 100%;
  2104. margin: 0 auto;
  2105. }
  2106. .return_good .reason {
  2107. width: 92%;
  2108. margin: 0 auto;
  2109. line-height: 34px;
  2110. margin-bottom: 20px;
  2111. min-height: 34px;
  2112. }
  2113. .return_good .reason span.fl {
  2114. width: 16%;
  2115. font-size: 14px;
  2116. }
  2117. .return_good .reason div.fr {
  2118. width: 84%;
  2119. position: relative;
  2120. font-size: 14px;
  2121. }
  2122. .return_good .reason span em {
  2123. color: #eb0202;
  2124. margin-left: 2px;
  2125. }
  2126. .return_good .reason .price {
  2127. width: 144px;
  2128. height: 34px;
  2129. border: #ccc 1px solid;
  2130. padding-left: 10px;
  2131. }
  2132. .return_good .reason .describe01 {
  2133. width: 300px;
  2134. height: 34px;
  2135. border: #ccc 1px solid;
  2136. padding-left: 10px;
  2137. margin-left: 15px;
  2138. }
  2139. .return_good .reason div.fr i {
  2140. font-size: 12px;
  2141. color: #999;
  2142. position: relative;
  2143. top: 10px;
  2144. }
  2145. .return_good .wid70 {
  2146. height: 80px;
  2147. }
  2148. .return_good .reason .describe02 {
  2149. width: 96%;
  2150. height: 58px;
  2151. padding: 2%;
  2152. border: #ccc 1px solid;
  2153. }
  2154. .return_good .reason .reason_img {
  2155. width: 100px;
  2156. height: 100px;
  2157. background: url("../../img/user/images/upload.png") no-repeat center;
  2158. float: left;
  2159. border: #ccc 1px solid;
  2160. margin-bottom: 20px;
  2161. }
  2162. .return_good .reason div.fr input[type="file"] {
  2163. opacity: 0;
  2164. width: 100px;
  2165. height: 100px;
  2166. filter: alpha(opacity=0);
  2167. -moz-opacity: .0;
  2168. opacity: 0.0;
  2169. cursor: pointer;
  2170. }
  2171. .return_good .reason div.fr span.prompt {
  2172. width: 200px;
  2173. display: inline-block;
  2174. font-size: 12px;
  2175. color: #999;
  2176. line-height: 20px;
  2177. position: relative;
  2178. top: 50px;
  2179. margin-left: 10px;
  2180. }
  2181. .return_good .reason div.fr a {
  2182. width: 94px;
  2183. height: 36px;
  2184. display: inline-block;
  2185. line-height: 36px;
  2186. text-align: center;
  2187. font-size: 14px;
  2188. }
  2189. .return_good .reason div.fr a.back {
  2190. border: #5078cb 1px solid;
  2191. color: #5078cb;
  2192. }
  2193. .return_good .reason div.fr a.submit {
  2194. border: #5078cb 1px solid;
  2195. color: #fff;
  2196. background: #5078cb;
  2197. margin-left: 15px;
  2198. }
  2199. .return_good .reason div.fr a:hover {
  2200. background: #1f4fb2;
  2201. color: #fff;
  2202. border: #1f4fb2 1px solid;
  2203. }
  2204. .return_good .reason div.fr p {
  2205. width: 211px;
  2206. display: inline-block;
  2207. float: right;
  2208. }
  2209. /*下拉样式*/
  2210. .reason .select {
  2211. width: 100%;
  2212. height: 34px;
  2213. border: #ccc 1px solid;
  2214. font-size: 16px;
  2215. position: relative;
  2216. margin: 0px auto;
  2217. }
  2218. .reason .select:after {
  2219. content: "";
  2220. display: block;
  2221. width: 8px;
  2222. height: 8px;
  2223. border-left: 1px solid #444;
  2224. border-bottom: 1px #444 solid;
  2225. position: absolute;
  2226. right: 12px;
  2227. top: 12px;
  2228. transform: rotate(-45deg);
  2229. cursor: pointer;
  2230. transition: transform .1s ease-out,top .1s ease-out;
  2231. }
  2232. .reason .select p {
  2233. width: 95% !important;
  2234. display: block;
  2235. height: 34px;
  2236. line-height: 34px;
  2237. padding: 0 15px;
  2238. cursor: pointer;
  2239. }
  2240. .reason .select ul {
  2241. list-style-type: none;
  2242. background-color: #fff;
  2243. width: 100%;
  2244. position: absolute;
  2245. top: 35px;
  2246. overflow-y: auto;
  2247. left: -1px;
  2248. max-height: 0;
  2249. transition: max-height .5s ease-out;
  2250. z-index: 20;
  2251. }
  2252. .reason .select ul li {
  2253. padding: 0 15px;
  2254. line-height: 34px;
  2255. cursor: pointer;
  2256. }
  2257. .reason .select ul li:hover {
  2258. background-color: #ccc;
  2259. }
  2260. .reason .select ul li.selected {
  2261. background-color: #5078cb;
  2262. color: #fff;
  2263. }
  2264. @-webkit-keyframes slide-out {
  2265. 0% {
  2266. transform: scale(1,0)
  2267. }
  2268. 25% {
  2269. transform: scale(1,1.1)
  2270. }
  2271. 50% {
  2272. transform: scale(1,0.85)
  2273. }
  2274. 0% {
  2275. transform: scale(1,1.1)
  2276. }
  2277. 0% {
  2278. transform: scale(1,1)
  2279. }
  2280. }
  2281. .reason .select.open ul {
  2282. max-height: 250px;
  2283. animation: slide-out .3s ease-in;
  2284. transform-origin: 50% 0;
  2285. transition: max-height .3s ease-in;
  2286. border: #ccc 1px solid;
  2287. }
  2288. .reason .select.open:after {
  2289. transform: rotate(-225deg);
  2290. top: 18px;
  2291. transition: all .1s ease-in;
  2292. }
  2293. .oder_list_dt {
  2294. width: 100%;
  2295. margin: 0 auto;
  2296. }
  2297. .oder_list_dt dl {
  2298. padding-bottom: 0px;
  2299. }
  2300. .oder_list_dt dl dt {
  2301. width: 60px;
  2302. height: 60px;
  2303. float: left;
  2304. margin-left: 15px;
  2305. overflow: hidden;
  2306. border: #ccc 1px solid;
  2307. }
  2308. .oder_list_dt dl dt img {
  2309. width: 60px;
  2310. height: 60px;
  2311. }
  2312. .oder_list_dt dl dt.border {
  2313. border: #dfdfdf 1px solid;
  2314. }
  2315. .oder_list_dt dl dd {
  2316. margin-left: 90px;
  2317. }
  2318. .oder_list_dt dl dd p {
  2319. font-size: 12px;
  2320. line-height: 20px;
  2321. }
  2322. .contact01,.oder_dd {
  2323. width: 85%;
  2324. margin: 0 auto;
  2325. height: 40px;
  2326. line-height: 40px;
  2327. font-size: 14px;
  2328. }
  2329. .contact01 img {
  2330. vertical-align: middle;
  2331. margin-right: 5px;
  2332. }
  2333. .oder_dd {
  2334. height: 120px;
  2335. margin-top: 10px;
  2336. }
  2337. .oder_dd p {
  2338. font-size: 14px;
  2339. line-height: 25px;
  2340. }
  2341. .oder_dd p span {
  2342. width: 60px;
  2343. display: inline-block;
  2344. }
  2345. /*购物车*/
  2346. .shopCar .oder_list dl .line02 {
  2347. height: 168px;
  2348. }
  2349. .shopCar .oder_list dl .line02 .car_pro_xq {
  2350. width: 69%;
  2351. float: right;
  2352. line-height: 20px;
  2353. text-align: left;
  2354. padding-top: 20px;
  2355. }
  2356. .shopCar .oder_list dl .line02 .car_pro_xq i {
  2357. width: 100%;
  2358. display: inline-block;
  2359. }
  2360. .shopCar .oder_list dl span {
  2361. width: 20%;
  2362. }
  2363. .shopCar .oder_list dl .line02 span {
  2364. line-height: 168px;
  2365. height: 168px;
  2366. }
  2367. .shopCar .oder_list dl span.wd01 {
  2368. width: 4%;
  2369. }
  2370. .shopCar .oder_list dl span.wd02 {
  2371. width: 12%;
  2372. }
  2373. .shopCar .oder_list dl span.wd02 em {
  2374. color: #e64040;
  2375. }
  2376. .shopCar .oder_list dl .pro_xq img {
  2377. width: 60px;
  2378. height: 60px;
  2379. float: left;
  2380. vertical-align: middle;
  2381. margin-top: 50px;
  2382. border: 1px solid #e8e8e8;
  2383. }
  2384. .shopCar .oder_list dl .deal_btn {
  2385. line-height: 25px;
  2386. padding-top: 30px;
  2387. position: relative;
  2388. }
  2389. .shopCar .oder_list dl .deal_btn a {
  2390. width: 100%;
  2391. display: inline-block;
  2392. color: #5078cb;
  2393. }
  2394. .shopCar .oder_list dl .deal_btn a.price_btn {
  2395. color: #e64040;
  2396. }
  2397. .shopCar .oder_list dl .price_input {
  2398. width: 100%;
  2399. margin: 0 auto;
  2400. font-size: 14px;
  2401. margin-top: 20px;
  2402. }
  2403. .shopCar .oder_list dl .price_input p {
  2404. height: 50px;
  2405. line-height: 50px;
  2406. }
  2407. .shopCar .oder_list dl .price_input p input[type="text"] {
  2408. width: 108px;
  2409. height: 34px;
  2410. border: #ccc 1px solid;
  2411. display: inline-block;
  2412. text-align: center;
  2413. margin-top: 10px;
  2414. line-height: 34px;
  2415. }
  2416. .shopCar .oder_list dl .price_input label {
  2417. width: 16px;
  2418. height: 16px;
  2419. background: url("../../img/user/images/radio.png");
  2420. background-position: 0 -1px;
  2421. margin-right: 2px;
  2422. vertical-align: middle;
  2423. }
  2424. .shopCar .oder_list dl .price_input label:last-child {
  2425. margin-left: 20px;
  2426. }
  2427. .shopCar .oder_list dl .price_input input[type="radio"]:checked + label {
  2428. background-position: -19px -1px;
  2429. }
  2430. .shopCar .oder_list dl .btn-wrap {
  2431. padding-right: 40px;
  2432. position: relative;
  2433. height: 30px;
  2434. width: 130px;
  2435. margin-top: 15px;
  2436. line-height: 30px;
  2437. margin-top: 34px;
  2438. margin-left: 35px;
  2439. }
  2440. .shopCar .btn-wrap input {
  2441. display: inline-block;
  2442. }
  2443. .shopCar .btn-wrap .number {
  2444. width: 148px;
  2445. height: 34px !important;
  2446. border: #ccc 1px solid;
  2447. border-radius: 5px;
  2448. display: inline-block;
  2449. text-align: center;
  2450. line-height: 34px !important;
  2451. color: #333;
  2452. }
  2453. .shopCar .btn-wrap .number a {
  2454. width: 26px;
  2455. height: 33px;
  2456. display: inline-block;
  2457. font-size: 22px;
  2458. color: #666;
  2459. line-height: 30px;
  2460. }
  2461. .shopCar .btn-wrap .number a:hover {
  2462. color: #fff;
  2463. background: #5078cb
  2464. }
  2465. .shopCar .btn-wrap .number .reduce {
  2466. float: left;
  2467. border-right: #ccc 1px solid;
  2468. }
  2469. .shopCar .btn-wrap .number .add {
  2470. float: right;
  2471. border-left: #ccc 1px solid;
  2472. }
  2473. .shopCar .btn-wrap .number input {
  2474. float: left;
  2475. width: 92px;
  2476. height: 32px;
  2477. line-height: 34px;
  2478. text-align: center;
  2479. font-size: 16px;
  2480. color: #666;
  2481. border: none;
  2482. }
  2483. .shopCar .oder_list dl dd span.wd02 {
  2484. line-height: 85px;
  2485. }
  2486. .price_rule {
  2487. width: 126px;
  2488. height: 86px;
  2489. position: absolute;
  2490. background: #fff;
  2491. right: 100px;
  2492. top: 30px;
  2493. padding: 8px;
  2494. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,0,0,.2);
  2495. display: none;
  2496. }
  2497. .price_rule p {
  2498. line-height: 28px;
  2499. font-size: 14px;
  2500. width: 100%;
  2501. display: inline-block;
  2502. }
  2503. .price_rule p i {
  2504. width: 70px;
  2505. display: inline-block;
  2506. color: #999;
  2507. float: left;
  2508. text-align: left;
  2509. }
  2510. .shopCar .oder_list dl .all_price {
  2511. height: 60px;
  2512. line-height: 60px;
  2513. border-bottom: none;
  2514. }
  2515. .shopCar .oder_list dl .all_price div.fl a {
  2516. font-size: 14px;
  2517. color: #5078cb;
  2518. margin: 0 15px 0 15px
  2519. }
  2520. .shopCar .oder_list dl .all_price span {
  2521. float: left;
  2522. line-height: 60px;
  2523. color: #959595;
  2524. margin-left: 90px;
  2525. }
  2526. .shopCar .oder_list dl .all_price span em {
  2527. color: #e64040;
  2528. }
  2529. .shopCar .oder_list dl .all_price div.fr {
  2530. font-size: 18px;
  2531. color: #e64040;
  2532. }
  2533. .shopCar .oder_list dl .all_price div.fr em {
  2534. font-size: 24px;
  2535. color: #e64040;
  2536. }
  2537. .shopCar .oder_list dl .all_price div.fr .settlement {
  2538. width: 116px;
  2539. height: 60px;
  2540. background: #d32526;
  2541. text-align: center;
  2542. color: #fff;
  2543. font-size: 18px;
  2544. display: inline-block;
  2545. margin-left: 20px;
  2546. }
  2547. .shopCar .oder_list dl .all_price div.fr .settlement:hover {
  2548. background: #f00;
  2549. }
  2550. .line_open span .open {
  2551. position: relative;
  2552. }
  2553. .line_open span .open:after,.tab_oder a:after {
  2554. content: "";
  2555. display: block;
  2556. width: 8px;
  2557. height: 8px;
  2558. border-left: 1px solid #444;
  2559. border-bottom: 1px #444 solid;
  2560. position: absolute;
  2561. right: -15px;
  2562. top: 15px;
  2563. transform: rotate(-45deg);
  2564. cursor: pointer;
  2565. transition: transform .1s ease-out,top .1s ease-out;
  2566. }
  2567. .line_open span .open.active:after {
  2568. transform: rotate(135deg);
  2569. top: 23px;
  2570. border-left: 1px solid #5078cb;
  2571. border-bottom: 1px #5078cb solid;
  2572. }
  2573. .line_open span .open.active {
  2574. color: #5078cb;
  2575. }
  2576. .line_open span,.line_open {
  2577. height: 40px !important;
  2578. line-height: 40px !important;
  2579. }
  2580. .add_ticket_form ul li div.fr .select_adr {
  2581. width: 80.5%;
  2582. margin-left: 15px;
  2583. }
  2584. .add_ticket_form ul li div.fr .select_adr select {
  2585. width: 100%;
  2586. }
  2587. .tab_oder {
  2588. position: relative;
  2589. }
  2590. .tab_oder a:after {
  2591. top: 1px;
  2592. }
  2593. .tab_oder ul {
  2594. position: absolute;
  2595. background: #fff;
  2596. border: #e8e8e8 1px solid;
  2597. width: 130%;
  2598. margin: 0px auto;
  2599. z-index: 10;
  2600. top: 28px;
  2601. display: none;
  2602. left: -20px;
  2603. }
  2604. .tab_oder ul li {
  2605. height: 30px;
  2606. padding: 0 20px;
  2607. font-size: 14px;
  2608. }
  2609. .tab_oder ul li:hover {
  2610. background: #ccc;
  2611. }
  2612. .tab_oder ul li.selected {
  2613. background: #5078cb;
  2614. color: #fff;
  2615. }
  2616. .tab_oder ul li {
  2617. height: 30px;
  2618. }
  2619. .log_cter_h .open ul {
  2620. display: inline-block;
  2621. }
  2622. .log_cter_h .open a:after {
  2623. transform: rotate(-225deg);
  2624. top: 6px;
  2625. transition: all .1s ease-in;
  2626. }
  2627. /*购物车-付款*/
  2628. .payment,.payment .payment_menu {
  2629. width: 100%;
  2630. margin: 0 auto;
  2631. margin-bottom: 10px;
  2632. }
  2633. .payment_menu {
  2634. width: 100%;
  2635. margin: 0 auto;
  2636. height: 30px;
  2637. }
  2638. .payment_menu_1 {
  2639. height: 30px;
  2640. line-height: 30px;
  2641. float: right;
  2642. text-align: center;
  2643. width: 623px;
  2644. background: url("../../img/user/images/pay_menu.png") no-repeat;
  2645. }
  2646. .payment_menu_1 span {
  2647. width: 155px;
  2648. height: 30px;
  2649. line-height: 30px;
  2650. font-size: 16px;
  2651. display: inline-block;
  2652. float: left;
  2653. color: #575757;
  2654. }
  2655. .payment_menu_1 span.on {
  2656. color: #fff;
  2657. }
  2658. #active01 {
  2659. background-position: 0 0;
  2660. }
  2661. #active02 {
  2662. background-position: 0 -31px;
  2663. }
  2664. #active03 {
  2665. background-position: 0 -62px;
  2666. }
  2667. #active04 {
  2668. background-position: 0 -93px;
  2669. }
  2670. .pay_com {
  2671. width: 100%;
  2672. margin: 0 auto;
  2673. height: 40px;
  2674. margin-top: 10px;
  2675. background: #fff;
  2676. }
  2677. .pay_com span {
  2678. font-size: 18px;
  2679. display: inline-block;
  2680. height: 40px;
  2681. line-height: 40px;
  2682. width: 96%;
  2683. border-bottom: #e8e8e8 1px solid;
  2684. background: #fff;
  2685. margin-left: 2%;
  2686. }
  2687. .pay_com span a {
  2688. float: right;
  2689. height: 40px;
  2690. }
  2691. .pay_com span a img {
  2692. vertical-align: middle;
  2693. }
  2694. .payment .adress_list {
  2695. width: 100%;
  2696. margin: 0 auto;
  2697. background: #fff;
  2698. }
  2699. .payment .adress_list ul {
  2700. width: 100%;
  2701. margin: 0 auto;
  2702. padding-top: 20px;
  2703. }
  2704. .payment .adress_list ul li {
  2705. width: 282px;
  2706. height: 152px;
  2707. background: url("../../img/user/images/adress_bg.jpg") no-repeat;
  2708. position: relative;
  2709. float: left;
  2710. margin: 0 37px 20px 23px;
  2711. }
  2712. .payment .adress_list ul li h4 {
  2713. width: 90%;
  2714. margin: 0 auto;
  2715. height: 30px;
  2716. display: inline-block;
  2717. border-bottom: #e8e8e8 1px solid;
  2718. font-size: 14px;
  2719. line-height: 30px;
  2720. margin-left: 20px;
  2721. margin-top: 15px;
  2722. margin-bottom: 10px;
  2723. }
  2724. .payment .adress_list ul li p,.payment .adress_list ul li span {
  2725. width: 90%;
  2726. margin: 0 auto;
  2727. display: inline-block;
  2728. font-size: 14px;
  2729. line-height: 22px;
  2730. margin-left: 20px;
  2731. }
  2732. .payment .adress_list ul li span {
  2733. margin-top: 10px;
  2734. }
  2735. .payment .adress_list ul li span img {
  2736. margin-left: 10px;
  2737. vertical-align: middle;
  2738. }
  2739. .payment .adress_list ul li.active {
  2740. background-position: -290px 0;
  2741. }
  2742. .payment .adress_list ul li em {
  2743. width: 70px;
  2744. height: 24px;
  2745. line-height: 24px;
  2746. background: rgba(130,130,130,0.5);
  2747. text-align: center;
  2748. font-size: 14px;
  2749. color: #fff;
  2750. position: absolute;
  2751. top: 0;
  2752. right: 0;
  2753. }
  2754. .margin_no {
  2755. margin-right: 0px !important;
  2756. }
  2757. .payment .adress_list .pay_add {
  2758. width: 100%;
  2759. height: 40px;
  2760. line-height: 40px;
  2761. }
  2762. .payment .adress_list .pay_add a {
  2763. color: #5078cb;
  2764. margin: 0 22px;
  2765. font-size: 14px;
  2766. }
  2767. .payment .adress_list .pay_add a:hover {
  2768. color: #5078cb;
  2769. }
  2770. .pay_oder_xq {
  2771. width: 100%;
  2772. background: #fff;
  2773. margin: 0 auto;
  2774. }
  2775. .pay_oder_xq .pay_oder_xq_list {
  2776. width: 92%;
  2777. margin: 0 auto;
  2778. padding: 10px 0 10px 0;
  2779. }
  2780. .pay_oder_xq .pay_oder_xq_list p {
  2781. width: 100%;
  2782. margin: 0 auto;
  2783. display: inline-block;
  2784. font-size: 14px;
  2785. line-height: 40px;
  2786. }
  2787. .pay_oder_xq .pay_oder_xq_list p em {
  2788. width: 100px;
  2789. display: inline-block;
  2790. float: left;
  2791. color: #969595;
  2792. }
  2793. .sure_oder {
  2794. width: 100%;
  2795. margin: 0 auto;
  2796. background: #fff;
  2797. }
  2798. .sure_oder .oder_xq_list dl dt {
  2799. border-top: none;
  2800. height: 40px;
  2801. border-bottom: #769be9 2px solid;
  2802. }
  2803. .sure_oder .oder_xq_list dl span {
  2804. width: 16%;
  2805. position: relative;
  2806. max-height: 90px;
  2807. }
  2808. .sure_oder .oder_xq_list dl .oder_l img {
  2809. margin-left: 10px;
  2810. }
  2811. .sure_oder .oder_xq_list dl span textarea {
  2812. padding: 5px;
  2813. width: 120px;
  2814. height: 60px;
  2815. border: #ccc 1px solid;
  2816. margin-top: 10px;
  2817. }
  2818. .sure_oder .btn-wrap {
  2819. padding-right: 40px;
  2820. position: relative;
  2821. height: 30px;
  2822. width: 130px;
  2823. line-height: 30px;
  2824. margin-top: 28px;
  2825. margin-left: 22px;
  2826. }
  2827. .sure_oder .btn-wrap input {
  2828. display: inline-block;
  2829. }
  2830. .sure_oder .btn-wrap .number {
  2831. width: 125px;
  2832. height: 34px !important;
  2833. border: #ccc 1px solid;
  2834. display: inline-block;
  2835. text-align: center;
  2836. line-height: 34px !important;
  2837. color: #333;
  2838. }
  2839. .sure_oder .btn-wrap .number a {
  2840. width: 26px;
  2841. height: 33px;
  2842. display: inline-block;
  2843. font-size: 22px;
  2844. color: #666;
  2845. line-height: 34px;
  2846. }
  2847. .sure_oder .btn-wrap .number a:hover {
  2848. color: #fff;
  2849. background: #5078cb
  2850. }
  2851. .sure_oder .btn-wrap .number .reduce {
  2852. float: left;
  2853. border-right: #ccc 1px solid;
  2854. }
  2855. .sure_oder .btn-wrap .number .add {
  2856. float: right;
  2857. border-left: #ccc 1px solid;
  2858. }
  2859. .sure_oder .btn-wrap .number input {
  2860. float: left;
  2861. width: 68px;
  2862. height: 32px;
  2863. line-height: 34px;
  2864. text-align: center;
  2865. font-size: 14px;
  2866. color: #666;
  2867. border: none;
  2868. }
  2869. .sure_oder .select {
  2870. width: 135px;
  2871. height: 34px;
  2872. border: #5078cb 1px solid;
  2873. background: url("../../img/user/images/select.png") no-repeat right;
  2874. font-size: 14px;
  2875. filter: alpha(opacity=1);
  2876. -moz-opacity: .1;
  2877. opacity: 1;
  2878. }
  2879. .sure_oder .oder_xq_list dl .style01 {
  2880. text-align: left;
  2881. width: 50%;
  2882. padding-left: 20px;
  2883. }
  2884. .sure_oder .oder_xq_list dl dd.pay_price {
  2885. width: 100%;
  2886. min-height: 240px;
  2887. padding-top: 20px;
  2888. border-bottom: none;
  2889. }
  2890. .pay_price div {
  2891. width: 320px;
  2892. min-height: 150px;
  2893. border: #d32526 1px solid;
  2894. float: right;
  2895. padding: 10px;
  2896. margin-right: 20px;
  2897. }
  2898. .pay_price div h4 {
  2899. width: 100%;
  2900. font-size: 24px;
  2901. }
  2902. .pay_price div h4 em {
  2903. color: #dd2727;
  2904. font-size: 36px;
  2905. }
  2906. .pay_price p {
  2907. width: 100%;
  2908. height: 34px;
  2909. display: inline-block;
  2910. }
  2911. .pay_price div p {
  2912. line-height: 28px;
  2913. font-size: 14px;
  2914. text-align: right;
  2915. }
  2916. .pay_price a {
  2917. float: right;
  2918. width: 94px;
  2919. height: 36px;
  2920. display: inline-block;
  2921. background: #e64040;
  2922. text-align: center;
  2923. line-height: 34px;
  2924. color: #fff;
  2925. font-size: 18px;
  2926. margin-right: 20px;
  2927. }
  2928. /*线下支付*/
  2929. .pay_com_head {
  2930. width: 100%;
  2931. height: 140px;
  2932. margin: 0 auto;
  2933. box-shadow: 1px 3px 4px #ccc;
  2934. background: #fff;
  2935. }
  2936. .pay_com_head div.fl {
  2937. margin-top: 25px;
  2938. }
  2939. .pay_com_head div.fr .payment_menu_1 {
  2940. margin-top: 52px;
  2941. }
  2942. .payment .oder_xq {
  2943. width: 100%;
  2944. margin: 0 auto;
  2945. height: 50px;
  2946. padding: 25px 0 15px;
  2947. }
  2948. .payment .oder_xq p {
  2949. font-size: 16px;
  2950. line-height: 25px;
  2951. width: 96%;
  2952. margin: 0 auto;
  2953. }
  2954. .payment .oder_xq p span {
  2955. font-size: 14px;
  2956. color: #666;
  2957. }
  2958. .payment .oder_xq p span em {
  2959. color: #e64040;
  2960. }
  2961. .pay_center {
  2962. width: 100%;
  2963. margin: 0 auto;
  2964. background: #fff;
  2965. padding-bottom: 40px;
  2966. border: #e8e8e8 1px solid;
  2967. }
  2968. .payment .pay_style {
  2969. width: 100%;
  2970. margin: 0 auto;
  2971. height: 50px;
  2972. line-height: 50px;
  2973. border-bottom: #dcdcdc 1px solid;
  2974. }
  2975. .payment .pay_style a {
  2976. width: 125px;
  2977. height: 50px;
  2978. line-height: 50px;
  2979. float: left;
  2980. display: inline-block;
  2981. text-align: center;
  2982. font-size: 18px;
  2983. position: relative;
  2984. }
  2985. .payment .pay_style a:first-child:before {
  2986. content: "";
  2987. position: absolute;
  2988. right: 0;
  2989. width: 1px;
  2990. height: 30px;
  2991. background: #dcdcdc;
  2992. top: 10px;
  2993. }
  2994. .payment .pay_style a.active {
  2995. color: #5078cb;
  2996. border-bottom: #5078cb 2px solid;
  2997. }
  2998. .pay_center dl {
  2999. width: 100%;
  3000. margin: 0 auto;
  3001. margin-top: 35px;
  3002. }
  3003. .pay_center dl dd {
  3004. min-height: 40px;
  3005. font-size: 14px;
  3006. width: 100%;
  3007. margin: 0 auto;
  3008. }
  3009. .pay_center dl dd div.fl {
  3010. width: 230px;
  3011. min-height: 40px;
  3012. line-height: 40px;
  3013. text-align: center;
  3014. }
  3015. .pay_center dl dd .select {
  3016. width: 135px;
  3017. height: 34px;
  3018. border: #5078cb 1px solid;
  3019. background: url("../../img/user/images/select.png") no-repeat right;
  3020. font-size: 14px;
  3021. }
  3022. .pay_center dl dd .open_all {
  3023. float: right;
  3024. color: #5078cb;
  3025. line-height: 40px;
  3026. font-size: 14px;
  3027. margin-right: 28px;
  3028. }
  3029. .pay_center dl dd .open_all:hover {
  3030. color: #5078cb;
  3031. }
  3032. .pay_center dl dd div.fr {
  3033. width: 960px;
  3034. border-bottom: #dcdcdc 1px dashed;
  3035. }
  3036. .pay_center dl .bank div.fr {
  3037. border-bottom: none;
  3038. }
  3039. .pay_center .bank {
  3040. display: inline-block;
  3041. }
  3042. .pay_center .bank ul {
  3043. width: 100%;
  3044. margin: 0 auto;
  3045. }
  3046. .pay_center .bank ul li {
  3047. width: 100%;
  3048. margin: 0 auto;
  3049. height: 50px;
  3050. line-height: 50px;
  3051. border-bottom: #dcdcdc 1px dashed;
  3052. }
  3053. .pay_center .bank ul li span {
  3054. width: 25%;
  3055. margin: 0 auto;
  3056. height: 50px;
  3057. line-height: 50px;
  3058. display: inline-block;
  3059. float: left;
  3060. font-size: 14px;
  3061. text-align: center;
  3062. }
  3063. .pay_center .bank ul li span.wid01 {
  3064. text-align: left;
  3065. }
  3066. .pay_center .bank ul li span input {
  3067. margin-right: 10px;
  3068. }
  3069. .pay_center .bank ul li a {
  3070. color: #969595;
  3071. }
  3072. .pay_center .bank ul li .edit em {
  3073. width: 22px;
  3074. height: 22px;
  3075. display: inline-block;
  3076. background: url("../../img/user/images/edit_bg.png") no-repeat center;
  3077. margin-right: 10px;
  3078. }
  3079. .pay_center .bank ul li em {
  3080. position: relative;
  3081. top: 5px
  3082. }
  3083. .pay_center .bank ul li .edit:hover em {
  3084. background: url("../../img/user/images/edit_bg_act.png") no-repeat center;
  3085. }
  3086. .pay_center .bank ul li .edit:hover {
  3087. color: #5078cb;
  3088. }
  3089. .pay_center .bank ul li .delet em {
  3090. width: 22px;
  3091. height: 23px;
  3092. display: inline-block;
  3093. background: url("../../img/user/images/del.png") no-repeat center;
  3094. margin-right: 10px;
  3095. margin-left: 30px;
  3096. }
  3097. .pay_center .bank ul li .delet:hover em {
  3098. background: url("../../img/user/images/del_act.png") no-repeat center;
  3099. }
  3100. .pay_center .bank ul li .delet:hover {
  3101. color: #5078cb;
  3102. }
  3103. .pay_center .bank ul p {
  3104. width: 100%;
  3105. margin: 0 auto;
  3106. height: 50px;
  3107. line-height: 50px;
  3108. display: inline-block;
  3109. border-bottom: #dcdcdc 1px solid;
  3110. }
  3111. .pay_center .bank ul p a {
  3112. color: #5078cb;
  3113. font-size: 14px;
  3114. }
  3115. .pay_center .bank ul p a:hover {
  3116. color: #5078cb;
  3117. }
  3118. .pay_center .time {
  3119. height: 32px;
  3120. line-height: 32px;
  3121. border: #5078cb 1px solid;
  3122. width: 206px;
  3123. position: relative;
  3124. font-size: 14px;
  3125. padding-left: 10px;
  3126. background: url("../../img/user/images/time.png") no-repeat right;
  3127. }
  3128. .pay_center .load {
  3129. height: 125px;
  3130. padding-top: 10px;
  3131. }
  3132. .pay_center .load div.fr {
  3133. border-bottom: none !important;
  3134. }
  3135. .pay_center .load .reason_img {
  3136. width: 100px;
  3137. height: 100px;
  3138. background: url("../../img/user/images/upload.png") no-repeat center;
  3139. float: left;
  3140. border: #ccc 1px solid;
  3141. margin-bottom: 20px;
  3142. }
  3143. .pay_center .load input[type="file"] {
  3144. opacity: 0;
  3145. width: 100px;
  3146. height: 100px;
  3147. filter: alpha(opacity=0);
  3148. -moz-opacity: .0;
  3149. opacity: 0.0;
  3150. cursor: pointer;
  3151. }
  3152. .pay_center .load span.prompt {
  3153. width: 200px;
  3154. display: inline-block;
  3155. font-size: 12px;
  3156. color: #999;
  3157. line-height: 20px;
  3158. position: relative;
  3159. top: 50px;
  3160. margin-left: 10px;
  3161. }
  3162. .pay_center dl dd p {
  3163. width: 100%;
  3164. margin: 0 auto;
  3165. height: 50px;
  3166. line-height: 50px;
  3167. display: inline-block;
  3168. }
  3169. .pay_center dl dd p em {
  3170. font-size: 24px;
  3171. float: right;
  3172. margin-right: 98px;
  3173. }
  3174. .pay_center dl dd p em i {
  3175. font-size: 36px;
  3176. color: #ed0d0d;
  3177. }
  3178. .pay_btn {
  3179. width: 100%;
  3180. margin: 0 auto;
  3181. height: 50px;
  3182. line-height: 50px;
  3183. margin-top: 30px;
  3184. }
  3185. .pay_btn a {
  3186. width: 116px;
  3187. margin: 0 auto;
  3188. height: 40px;
  3189. display: inline-block;
  3190. float: right;
  3191. background: #e64040;
  3192. font-size: 18px;
  3193. text-align: center;
  3194. color: #fff;
  3195. line-height: 40px;
  3196. margin-right: 98px;
  3197. }
  3198. .pay_btn a:hover {
  3199. background: #e30e16;
  3200. }
  3201. .none_add {
  3202. padding: 15px;
  3203. font-size: 12px;
  3204. width: 120px;
  3205. height: 30px;
  3206. position: absolute;
  3207. top: 70px;
  3208. left: -140px;
  3209. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,0,0,.2);
  3210. background: #fff;
  3211. line-height: 20px;
  3212. text-align: center;
  3213. }
  3214. .none_add a {
  3215. color: #e64040;
  3216. }
  3217. /*20170327修改*/
  3218. .com_log_list {
  3219. width: 100%;
  3220. margin: 0 auto;
  3221. background: #fff;
  3222. height: 220px;
  3223. }
  3224. .com_log_list ul {
  3225. width: 100%;
  3226. margin: 0 auto;
  3227. padding-top: 40px;
  3228. }
  3229. .com_log_list ul li {
  3230. width: 282px;
  3231. height: 152px;
  3232. background: url("../images/adress_bg.jpg") no-repeat;
  3233. position: relative;
  3234. float: left;
  3235. margin: 0 70px 20px 10px;
  3236. }
  3237. .com_log_list ul li h4 {
  3238. width: 90%;
  3239. margin: 0 auto;
  3240. height: 30px;
  3241. display: inline-block;
  3242. border-bottom: #e8e8e8 1px solid;
  3243. font-size: 14px;
  3244. line-height: 30px;
  3245. margin-left: 20px;
  3246. margin-top: 15px;
  3247. margin-bottom: 10px;
  3248. }
  3249. .com_log_list ul li p,.com_log_list ul li span {
  3250. width: 90%;
  3251. margin: 0 auto;
  3252. display: inline-block;
  3253. font-size: 14px;
  3254. line-height: 22px;
  3255. margin-left: 20px;
  3256. }
  3257. .com_log_list ul li span {
  3258. margin-top: 10px;
  3259. }
  3260. .com_log_list ul li span img {
  3261. margin-left: 10px;
  3262. vertical-align: middle;
  3263. }
  3264. .com_log_list ul li.active {
  3265. background-position: -290px 0;
  3266. }
  3267. .com_log_list ul li em {
  3268. width: 70px;
  3269. height: 24px;
  3270. line-height: 24px;
  3271. background: rgba(130,130,130,0.5);
  3272. text-align: center;
  3273. font-size: 14px;
  3274. color: #fff;
  3275. position: absolute;
  3276. top: 0;
  3277. right: 0;
  3278. }
  3279. .com_log_list .log_line {
  3280. width: 90px;
  3281. background: none;
  3282. margin: 0;
  3283. margin-left: 30px;
  3284. font-size: 14px;
  3285. }
  3286. /*修改样式 2017-0418*/
  3287. .btn-success{
  3288. background: #5078cb;
  3289. border-color: #3b88c3;
  3290. }
  3291. .checkbox label, .radio label{
  3292. line-height: 21px;
  3293. position: relative;
  3294. left: -15px;
  3295. }
  3296. .col-md-offset-3 .btn{
  3297. background: #5078cb;
  3298. border-color: #3b88c3;
  3299. }
  3300. .col-md-offset-3 .btn:hover{
  3301. background: #3b88c3;
  3302. }
  3303. .col-md-offset-3 .btn:nth-child(2){
  3304. margin-left: 20px;
  3305. }
  3306. .form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline{
  3307. padding-top: 0;
  3308. }
  3309. .mar-rt0 .col-md-2{
  3310. padding-right: 0;
  3311. }
  3312. .mar-rt0 .col-md-3{
  3313. padding-right: 0;
  3314. }
  3315. .btn{
  3316. font-family: "Microsoft Yahei", "微软雅黑";
  3317. }
  3318. .add_ticket_form .form-group{
  3319. line-height: 34px;
  3320. }
  3321. .modal-header .modal-title{
  3322. font-size: 14px;
  3323. }
  3324. .form-horizontal .control-label{
  3325. padding-top: 0;
  3326. }
  3327. /*弹出框表单行高设置*/
  3328. .modal-content .form-group{
  3329. line-height: 34px;
  3330. }
  3331. .modal-content label{
  3332. font-size: 14px;
  3333. font-weight: inherit;
  3334. }
  3335. .modal-content #bill-info label{
  3336. font-weight: inherit;
  3337. }
  3338. .modal-content .btn-default{
  3339. border-color: #5078cb !important;
  3340. color: #5078cb !important;
  3341. background: #fff !important;
  3342. }
  3343. .modal-content .btn-default:hover{
  3344. background: #5078cb;
  3345. color: #fff;
  3346. }
  3347. .modal-content .btn-success[disabled]{
  3348. background: #5078cb;
  3349. border-color: #3b88c3;
  3350. }
  3351. .pay_com a{
  3352. font-size: 16px;
  3353. color: #5078cb;
  3354. }
  3355. .grey{
  3356. color: #999;
  3357. }
  3358. .btn-success:hover {
  3359. color: #fff;
  3360. background-color: #5078cb;
  3361. border-color: #3b88c3;
  3362. }
  3363. /*订单细节*/
  3364. /*.oder_xq_list dl .oder_l p {*/
  3365. /*font-size: 14px;*/
  3366. /*word-break: break-all;*/
  3367. /*}*/
  3368. /*.sure_oder .oder_xq_list dl .oder_l span.wd02 p {*/
  3369. /*width: 60%;*/
  3370. /*word-break: normal;*/
  3371. /*}*/
  3372. /*.sure_oder .oder_xq_list dl span.wd01 {*/
  3373. /*width: 15%;*/
  3374. /*}*/
  3375. /*.sure_oder .oder_xq_list dl span {*/
  3376. /*width: 20%;*/
  3377. /*}*/
  3378. /*.sure_oder .oder_xq_list dl dt span:nth-child(5),.sure_oder .oder_xq_list dl dd span:nth-child(5) {*/
  3379. /*width: 10%;*/
  3380. /*}*/
  3381. /*.sure_oder .btn-wrap {*/
  3382. /*margin-left: 10px;*/
  3383. /*}*/
  3384. /*消息中心*/
  3385. #massage .oder01 ul{
  3386. background: #ecf2fd;
  3387. }
  3388. #massage .oder01{
  3389. position: relative;
  3390. }
  3391. #massage .oder01 .filter-list{
  3392. position: absolute;
  3393. right: 0;
  3394. width: 240px;
  3395. top: 0;
  3396. line-height: 40px;
  3397. }
  3398. #massage .oder01 .select{
  3399. position: absolute;
  3400. left: 260px;
  3401. top: 0;
  3402. }
  3403. #massage .oder01 .select select.form-control{
  3404. border-radius: 0;
  3405. height: 30px;
  3406. margin: 5px 25px;
  3407. width: 105px;
  3408. padding: 0 15px;
  3409. opacity: 1;
  3410. }
  3411. #massage .oder01 .red{
  3412. color: #f00 !important;
  3413. }
  3414. #massage .oder01 .filter-list a{
  3415. font-size: 14px;
  3416. display: inline-block;
  3417. width: 80px;
  3418. }
  3419. #massage .oder01 .filter-list a i{
  3420. margin-left: 5px;
  3421. font-size: 12px;
  3422. }
  3423. #massage .oder01 .filter-list .check-active label{
  3424. margin-right: 0 !important;
  3425. }
  3426. #massage .oder01 .filter-list .check-active span{
  3427. font-weight: normal;
  3428. }
  3429. #massage .oder01 .filter-list .check-active label,.com-massage ul li .check label{
  3430. width: 16px;
  3431. height: 16px;
  3432. background: url("../../img/icon/massage-check.png") no-repeat;
  3433. background-position: -1px -1px;
  3434. }
  3435. #massage .oder01 .filter-list .check-active input[type="checkbox"]:checked +label,.com-massage ul li .check input[type="checkbox"]:checked + label{
  3436. background-position: -20px -1px;
  3437. }
  3438. .com-massage ul li .check input{
  3439. display: none;
  3440. }
  3441. .com-massage,.com-massage ul{
  3442. width: 100%;
  3443. margin: 0 auto;
  3444. background:#fff;
  3445. display: inline-block;
  3446. padding-bottom: 10px;
  3447. }
  3448. .com-massage ul li{
  3449. width: 100%;
  3450. margin: 0 auto;
  3451. float: left;
  3452. height: 80px;
  3453. border-bottom: #dadada 1px dashed;
  3454. }
  3455. .com-massage ul li.active{
  3456. border-top: #5078cb 1px dashed;
  3457. border-bottom: #5078cb 1px dashed;
  3458. }
  3459. .com-massage ul li .icon{
  3460. width: 46px;
  3461. height: 46px;
  3462. background: url("../../img/icon/massage-icon.png") no-repeat;
  3463. overflow: hidden;
  3464. background-position: -1px -1px;
  3465. position: relative;
  3466. }
  3467. .com-massage ul li a{
  3468. display: inline-block;
  3469. width: 46px;
  3470. height: 46px;
  3471. float: left;
  3472. float: left;
  3473. margin: 17px 30px;
  3474. position: relative;
  3475. }
  3476. .com-massage ul li a em.dot{
  3477. position: absolute;
  3478. width: 14px;
  3479. display: inline-block;
  3480. height: 14px;
  3481. background: #de0a21;
  3482. border-radius: 100%;
  3483. right: -3px;
  3484. top: -3px;
  3485. }
  3486. .com-massage ul li .icon.icon-service{
  3487. background-position: -51px -1px;
  3488. }
  3489. .com-massage ul li .icon.icon-system{
  3490. background-position: -101px -1px;
  3491. }
  3492. .com-massage ul li .icon.icon-massage{
  3493. background-position: -151px -1px;
  3494. }
  3495. .com-massage ul li .content{
  3496. float: left;
  3497. margin: 16px 0;
  3498. }
  3499. .com-massage ul li .content p{
  3500. font-size: 14px;
  3501. line-height: 25px;
  3502. color: #666;
  3503. }
  3504. .com-massage ul li .content p span{
  3505. margin-right: 50px;
  3506. color: #333;
  3507. }
  3508. .com-massage ul li .content p time{
  3509. color: #999;
  3510. }
  3511. .com-massage ul li .content p em.blue{
  3512. color: #5078cb;
  3513. }
  3514. .com-massage ul li .check{
  3515. float: right;
  3516. margin: 46px 57px 0 0;
  3517. }
  3518. /*收货地址*/
  3519. .logistic-content{
  3520. width: 100%;
  3521. margin: 0 auto;
  3522. background: #fff;
  3523. padding-bottom: 30px;
  3524. }
  3525. .logistic-content .row{
  3526. margin: 0 18px;
  3527. }
  3528. .logistic-content .menu-title{
  3529. line-height: 30px;
  3530. font-size: 16px;
  3531. padding-top: 20px;
  3532. }
  3533. .logistic-content .menu-title span{
  3534. font-size: 12px;
  3535. color: #5078cb;
  3536. }
  3537. .logistic-content .menu-title span em{
  3538. margin: 0 5px;
  3539. }
  3540. .logistic-content .add-log{
  3541. margin-bottom: 5px;
  3542. }
  3543. .logistic-content .add-log button{
  3544. border: none;
  3545. font-size: 14px;
  3546. background: none;
  3547. float: right;
  3548. margin-right: 22px;
  3549. }
  3550. .logistic-content .add-log button i{
  3551. color: #32b500;
  3552. margin-right: 5px;
  3553. }
  3554. .logistic-content .log-tab{
  3555. width: 92%;
  3556. margin: 0 auto;
  3557. }
  3558. .logistic-content .log-tab .table tbody tr td,.logistic-content .log-tab .table thead tr th{
  3559. border-bottom: #e8e8e8 1px solid;
  3560. text-align: center;
  3561. word-break: break-all;
  3562. vertical-align: middle;
  3563. }
  3564. .log-tab .table tbody tr td:first-child,.log-tab .table thead tr th:first-child{
  3565. padding-left: 30px;
  3566. }
  3567. .logistic-content .log-tab .table tbody tr td{
  3568. white-space: nowrap;
  3569. overflow: hidden;
  3570. text-overflow: ellipsis;
  3571. }
  3572. .logistic-content .log-tab .table .text-left{
  3573. text-align: left;
  3574. }
  3575. .logistic-content .log-tab .table{
  3576. border: #e8e8e8 1px solid;
  3577. table-layout: fixed;
  3578. }
  3579. .logistic-content .log-tab .table thead tr th{
  3580. font-size: 14px;
  3581. font-weight: inherit;
  3582. }
  3583. .logistic-content .log-tab .table thead tr{
  3584. height: 38px;
  3585. background: #f1f1f1;
  3586. }
  3587. .logistic-content .log-tab .table tbody tr td a{
  3588. color: #5078CB;
  3589. margin: 0 3px;
  3590. }
  3591. .logistic-content .log-tab .table tbody tr{
  3592. height: 50px;
  3593. }
  3594. .logistic-content .log-tab .table tbody tr td button{
  3595. width: 64px;
  3596. height: 24px;
  3597. line-height: 24px;
  3598. color: #fff;
  3599. text-align: center;
  3600. border-radius: 3px;
  3601. border: none;
  3602. background: #5078cb;
  3603. }
  3604. .logistic-content .log-tab .table tbody tr td button.default{
  3605. background: #fc4f03;
  3606. display: none;
  3607. }
  3608. .logistic-content .log-tab .table tbody tr:hover{
  3609. background: #f2f2f2;
  3610. }
  3611. .logistic-content .log-tab .table tbody tr:hover button.default{
  3612. display: inline-block;
  3613. }
  3614. .contact_btn {
  3615. width: 62px;
  3616. height: 18px;
  3617. line-height: 18px;
  3618. background: #ef7f03;
  3619. display: inline-block;
  3620. text-align: center;
  3621. color: #fff !important;
  3622. font-size: 12px;
  3623. border-radius: 5px;
  3624. }
  3625. .red{
  3626. color: #f00 !important;
  3627. }
  3628. /*hover链接*/
  3629. .oder .oder_list dl dd.line01 a:hover,
  3630. .shopCar .oder_list dl .deal_btn a:hover,
  3631. #buyer_cart .shopCar .oder_list dl .line02 .car_pro_xq a:hover em,
  3632. .oder_list dl .pro_xq a:hover,
  3633. #oder-detail .oder_xq_list dl .oder_l p.style01 a:hover{
  3634. color: #5078cb !important;
  3635. }
  3636. .oder_xq_list dl span a{
  3637. color: #333;
  3638. }