add.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  1. * {
  2. box-sizing: border-box;
  3. padding: 0;
  4. margin: 0;
  5. }
  6. html {
  7. -webkit-text-size-adjust: 100%;
  8. -ms-text-size-adjust: 100%;
  9. }
  10. body {
  11. font-size: 12px;
  12. background: #fff;
  13. color: #323232;
  14. font-family: Microsoft YaHei;
  15. }
  16. body, ol, table, tr, td, ul, li, dt, dd, dl, h1, h2, h3, h4, h5, h6,
  17. form, input, select, textarea, p, em, i, b, strong, span {
  18. font-size: 12px;
  19. font-weight: normal;
  20. list-style-type: none;
  21. font-style: inherit;
  22. }
  23. a {
  24. text-decoration: none;
  25. }
  26. a:hover {
  27. text-decoration: none;
  28. }
  29. img {
  30. border: none;
  31. }
  32. input, button, select, textarea {
  33. outline: none
  34. }
  35. .clearfix:before, .clearfix:after {
  36. display: table;
  37. content: '';
  38. line-height: 0;
  39. }
  40. .clearfix:after {
  41. clear: both;
  42. }
  43. .clear {
  44. clear: both;
  45. }
  46. .fl {
  47. float: left;
  48. }
  49. .fr {
  50. float: right;
  51. }
  52. .textMore {
  53. display: block;
  54. white-space: nowrap;
  55. overflow: hidden;
  56. text-overflow: ellipsis;
  57. }
  58. .no-space {
  59. display: flex;
  60. }
  61. body {
  62. background: #f5f5f5;
  63. }
  64. .wrap {
  65. width: 100%;
  66. margin: 0px auto;
  67. /*margin-top: 20px;*/
  68. }
  69. .content {
  70. width: 930px;
  71. margin: 0 auto;
  72. }
  73. .bule {
  74. color: #3578ba;
  75. }
  76. .grey {
  77. color: #969595;
  78. }
  79. .red {
  80. color: #d2272d;
  81. }
  82. /*产品资料-价格*/
  83. input:focus, select:focus {
  84. border: #3578ba 1px solid !important;
  85. order-color: #66afe9;
  86. outline: 0;
  87. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  88. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
  89. }
  90. .com_title {
  91. width: 100%;
  92. margin: 0px auto;
  93. height: 40px;
  94. line-height: 40px;
  95. font-size: 14px;
  96. color: #323232;
  97. background: #f5f5f5;
  98. }
  99. .com_title font {
  100. color: #3f84f6;
  101. }
  102. .search {
  103. position: relative;
  104. }
  105. .search input {
  106. width: 300px;
  107. padding-left: 10px;
  108. height: 36px;
  109. background: #fff;
  110. float: left;
  111. vertical-align: middle;
  112. border: #3578ba 1px solid;
  113. font-size: 14px;
  114. text-align: center;
  115. padding-right: 85px;
  116. line-height: 36px;
  117. }
  118. .search a.seek {
  119. vertical-align: middle;
  120. display: inline-block;
  121. line-height: 36px;
  122. text-align: center;
  123. height: 36px;
  124. width: 85px;
  125. border-left: 0;
  126. background: #3578ba;
  127. color: #fff;
  128. text-align: center;
  129. font-size: 16px;
  130. float: right;
  131. border: #3578ba 1px solid;
  132. position: absolute;
  133. right: 0;
  134. }
  135. .search a.seek:hover {
  136. background: #1f6199;
  137. color: #fff;
  138. }
  139. .public-01 {
  140. height: 44px;
  141. margin-bottom: 10px;
  142. margin-top: 10px;
  143. }
  144. .public-01 ul {
  145. width: 87%;
  146. margin: 0 auto;
  147. height: 44px;
  148. line-height: 44px;
  149. background: #fff;
  150. border: #e8e8e8 1px solid;
  151. }
  152. .public-01 ul li {
  153. width: 100px;
  154. height: 44px;
  155. text-align: center;
  156. float: left;
  157. margin-left: 10px;
  158. }
  159. .public-01 ul li a {
  160. font-size: 16px;
  161. width: 100px;
  162. height: 44px;
  163. display: inline-block;
  164. color: #323232;
  165. }
  166. .public-01 ul li.active a {
  167. color: #d82128;
  168. border-bottom: 3px #d82128 solid;
  169. }
  170. .public-01 ul li:hover a {
  171. color: #d82128;
  172. border-bottom: 3px #d82128 solid;
  173. }
  174. .public-01 ul li a em {
  175. color: #d2272d;
  176. font-size: 16px;
  177. }
  178. .public-01 ul li.active a {
  179. color: #d82128;
  180. }
  181. .public-01-btn, .public-01-btn a {
  182. width: 104px;
  183. height: 44px;
  184. color: #3f84f6;
  185. text-align: center;
  186. background: #fff;
  187. display: inline-block;
  188. font-size: 14px;
  189. line-height: 44px;
  190. border: #e8e8e8 1px solid;
  191. }
  192. .public-01-btn a:hover {
  193. border: #3578ba 1px solid;
  194. }
  195. .public-01-btn a img {
  196. vertical-align: middle;
  197. margin-right: 5px;
  198. }
  199. .pro-price {
  200. margin-bottom: 20px !important;
  201. }
  202. .pro-price, .pro-price dl {
  203. width: 100%;
  204. margin: 0 auto;
  205. background: #fff;
  206. padding-top: 6px;
  207. }
  208. .pro-price dl dt {
  209. width: 100%;
  210. margin: 0 auto;
  211. height: 40px;
  212. line-height: 40px;
  213. }
  214. .pro-price dl span {
  215. width: 18.75%;
  216. display: inline-block;
  217. float: left;
  218. font-size: 14px;
  219. text-align: center;
  220. }
  221. .pro-price dl span.wid01 {
  222. width: 25%;
  223. }
  224. .pro-price dl dt span {
  225. line-height: 40px;
  226. }
  227. .pro-price dl dd span {
  228. line-height: 110px;
  229. height: 110px;
  230. }
  231. .pro-price dl dd span p {
  232. line-height: 22px;
  233. text-align: left;
  234. font-size: 14px;
  235. width: 80%;
  236. margin: 0 auto;
  237. }
  238. .pro-price dl dd {
  239. border-bottom: #e3e3e3 1px dotted;
  240. }
  241. .pro-price dl dd:hover {
  242. border: #d32526 1px solid;
  243. }
  244. .pro-price dl dd {
  245. height: 110px;
  246. overflow: hidden;
  247. }
  248. .pro-price dl .bottom01 {
  249. border-bottom: #3578ba 1px dotted;
  250. }
  251. .pro-price dl dd span.style01 {
  252. padding-top: 10px;
  253. }
  254. .pro-price dl dd span em {
  255. width: 100%;
  256. display: inline-block;
  257. font-size: 14px;
  258. }
  259. .pro-price dl dd span.style02 {
  260. line-height: 22px;
  261. margin-top: 30px;
  262. }
  263. .pro-price dl dd span em i {
  264. margin-left: 10px;
  265. }
  266. /*B2B商务账号设置-个人信息*/
  267. /*弹框*/
  268. .bomb-box {
  269. width: 100%;
  270. height: 100%;
  271. position: fixed;
  272. z-index: 11111;
  273. background: rgba(0, 0, 0, 0.2);
  274. top: 0;
  275. left: 0;
  276. }
  277. .bomb-box .box {
  278. position: absolute;
  279. left: 0;
  280. right: 0;
  281. top: 0;
  282. bottom: 0;
  283. margin: auto;
  284. box-shadow: 0 0 3px #888;
  285. }
  286. .bomb-box .box01 {
  287. margin-top: 80px;
  288. width: 580px;
  289. height: 406px;
  290. border-radius: 5px;
  291. background: #fff;
  292. }
  293. .bomb-box .box i.off {
  294. width: 20px;
  295. height: 20px;
  296. display: inline-block;
  297. position: absolute;
  298. right: 8px;
  299. top: 8px;
  300. text-align: center;
  301. cursor: pointer;
  302. }
  303. .bomb-box .box p {
  304. height: 40px;
  305. line-height: 40px;
  306. font-size: 14px;
  307. width: 100%;
  308. margin: 0 auto;
  309. border-bottom: #e8e8e8 1px solid;
  310. padding-left: 20px;
  311. }
  312. .bomb-box .box-bottom{
  313. padding: 0 5px 5px;
  314. width: 465px;
  315. height: 450px!important;
  316. background: #e8e8e8;
  317. }
  318. .bomb-box .box-bottom .box-header{
  319. padding-left: 5px;
  320. width: 100%;
  321. height: 26px;
  322. }
  323. .bomb-box .box-bottom .box-header p{
  324. float: left;
  325. padding-left: 10px;
  326. height: 26px;
  327. line-height: 28px;
  328. width: 100px;
  329. font-size: 14px;
  330. color: #000;
  331. }
  332. .bomb-box .box-bottom .box-header a{
  333. margin-top: 6px;
  334. display: inline-block;
  335. float: right;
  336. width: 15px;
  337. height: 15px;
  338. text-align: center;
  339. font-size: 14px;
  340. color: #000;
  341. border-radius: 3px;
  342. border: 1px solid #000;
  343. }
  344. .bomb-box .box-bottom .per-data{
  345. margin: 0 auto;
  346. width: 455px;
  347. height: 418px;
  348. text-align: center;
  349. background: #f3f3f3;
  350. border-top: 1px solid #ccc;
  351. }
  352. .bomb-box .box-bottom .per-data ul li{
  353. margin-bottom: 15px;
  354. height: 26PX;
  355. line-height: 26px;
  356. }
  357. .bomb-box .box-bottom .per-data ul li:first-child, .bomb-box .box-bottom .per-data ul li:last-child{
  358. margin-top: 25px;
  359. }
  360. .bomb-box .box-bottom .per-data ul li em{
  361. width: 80px;
  362. text-align: right;
  363. }
  364. .bomb-box .box-bottom .per-data ul li input{
  365. padding-left: 10px;
  366. width: 300px;
  367. height: 26px;
  368. border: 1px solid #a0a0a0;
  369. }
  370. .bomb-box .box-bottom .per-data ul li a.mod-psd{
  371. float: none;
  372. }
  373. .per-data {
  374. width: 90%;
  375. margin: 0 auto;
  376. }
  377. .per-data ul, .per-data ul li {
  378. width: 100%;
  379. margin: 0 auto;
  380. }
  381. .per-data ul li {
  382. height: 34px;
  383. line-height: 34px;
  384. margin-top: 15px;
  385. }
  386. .per-data ul li em {
  387. width: 60px;
  388. font-size: 14px;
  389. float: left;
  390. }
  391. .per-data ul li.text-info{
  392. font-size: 13px;
  393. color: #787878 !important;
  394. }
  395. .per-data ul li.text-info b{
  396. font-size: 13px;
  397. color: #D08200;
  398. }
  399. .per-data ul li input, .per-data ul li select {
  400. width: 236px;
  401. height: 34px;
  402. border: #e8e8e8 1px solid;
  403. font-size: 14px;
  404. padding-left: 10px;
  405. }
  406. .per-data ul li select {
  407. background: url("../img/purc/select.png") no-repeat right;
  408. -webkit-appearance: none;
  409. appearance: none;
  410. -o-appearance: none;
  411. -moz-appearance: none;
  412. -ms-appearance: none;
  413. }
  414. .per-data ul li select option {
  415. line-height: 30px;
  416. }
  417. .per-data ul li span {
  418. color: #959595;
  419. line-height: 18px;
  420. float: right;
  421. width: 215px;
  422. display: inline-block;
  423. }
  424. .per-data ul li.per-btn {
  425. margin-top: 30px;
  426. }
  427. .per-data ul li.perBtn{
  428. margin-top: 45px;
  429. }
  430. .per-data ul li.perBtn .save{
  431. margin-left: 150px;
  432. }
  433. .per-data ul li a {
  434. width: 94px;
  435. height: 36px;
  436. display: inline-block;
  437. font-size: 14px;
  438. color: #fff;
  439. text-align: center;
  440. line-height: 34px;
  441. float: left;
  442. }
  443. .per-data ul li button {
  444. width: 94px;
  445. height: 36px;
  446. display: inline-block;
  447. font-size: 14px;
  448. color: #fff;
  449. text-align: center;
  450. line-height: 34px;
  451. float: left;
  452. }
  453. .per-data ul li a.save {
  454. margin-left: 60px;
  455. background: #3f84f6;
  456. }
  457. .per-data ul li button.save {
  458. margin-left: 60px;
  459. background: #3f84f6;
  460. border: 1px;
  461. }
  462. .per-data ul li a.mod-psd {
  463. background: #8dc7f9;
  464. margin-left: 30px;
  465. }
  466. .per-data ul li a:hover {
  467. background: #3578ba;
  468. }
  469. .per-data ul li button:hover {
  470. background: #3578ba;
  471. }
  472. .per ul{
  473. text-align: center;
  474. }
  475. .per ul li.register{
  476. margin-top: 10px;
  477. height: 20px;
  478. line-height: 20px;
  479. font-size: 14px;
  480. }
  481. .per ul li.register span{
  482. float: none;
  483. margin-left: 5px;
  484. width: 65px;
  485. font-size: 14px;
  486. color: #3578ba;
  487. }
  488. .per ul li em{
  489. margin-left: 60px;
  490. text-align: left;
  491. }
  492. /*产品资料-价格-新增*/
  493. .com_head a {
  494. color: #fff;
  495. float: right;
  496. margin-right: 40px;
  497. font-size: 14px;
  498. }
  499. .com_head a i {
  500. margin-left: 5px;
  501. line-height: 40px;
  502. }
  503. .com_head a:hover {
  504. color: #d2272d;
  505. }
  506. .pro-add-data {
  507. width: 100%;
  508. margin: 0 auto;
  509. background: #fff;
  510. }
  511. .pro-add-data dl {
  512. width: 95%;
  513. margin: 0 auto;
  514. }
  515. .pro-add-data dl dd {
  516. width: 100%;
  517. margin: 0 auto;
  518. height: 34px;
  519. line-height: 34px;
  520. font-size: 14px;
  521. margin-top: 10px;
  522. }
  523. .pro-add-data dl dd div.fl {
  524. width: 100px;
  525. }
  526. .pro-add-data dl dd div.fr {
  527. width: 750px;
  528. }
  529. .pro-add-data dl dd div.fr input {
  530. width: 750px;
  531. border-bottom: #5d5d5d 1px solid !important;
  532. height: 34px;
  533. line-height: 34px;
  534. border: none;
  535. position: relative;
  536. font-size: 14px;
  537. /*top: -6px;*/
  538. color: #666;
  539. }
  540. .pro-add-data dl dd div.fr input:focus {
  541. /*box-shadow: none;
  542. border: none !important;*/
  543. border: #3578ba 1px solid !important;
  544. }
  545. .com_title01 {
  546. height: 50px;
  547. line-height: 50x;
  548. width: 100%;
  549. margin: 0 auto;
  550. border-bottom: #3578ba 1px dotted;
  551. border-top: #e8e8e8 1px solid;
  552. margin-top: 10px;
  553. }
  554. .com_title01 span {
  555. margin-left: 20px;
  556. font-size: 14px;
  557. line-height: 50px;
  558. color: #555;
  559. font-weight: bold;
  560. }
  561. .pro-info, .pro-info dl {
  562. width: 99%;
  563. margin: 0 auto;
  564. }
  565. .pro-info dl dd, .pro-info dl dt {
  566. width: 99%;
  567. margin: 0 auto;
  568. height: 50px;
  569. border-bottom: #e8e8e8 1px dotted;
  570. }
  571. .pro-info dl span {
  572. width: 8.5%;
  573. font-size: 14px;
  574. float: left;
  575. display: inline-block;
  576. height: 50px;
  577. line-height: 50px;
  578. text-align: center;
  579. }
  580. .pro-info dl span.wid01 {
  581. width: 4%;
  582. }
  583. .pro-info dl span.wid02 {
  584. width: 12%;
  585. }
  586. .pro-info dl span.wid01 a {
  587. width: 20px;
  588. height: 20px;
  589. display: inline-block;
  590. line-height: 18px;
  591. background: #c2c2c2;
  592. text-align: center;
  593. border-radius: 100%;
  594. }
  595. .pro-info dl span.wid01 a i {
  596. color: #fff;
  597. }
  598. .pro-info dl span.wid01 a:hover {
  599. background: #d2272d;
  600. }
  601. .pro-info dl span.add-wl {
  602. text-align: left;
  603. width: 100%;
  604. }
  605. .pro-info .save {
  606. width: 100%;
  607. height: 36px;
  608. margin: 5px 0 20px 0;
  609. }
  610. .pro-info .save a {
  611. width: 94px;
  612. height: 36px;
  613. display: inline-block;
  614. background: #3578ba;
  615. text-align: center;
  616. color: #fff;
  617. font-size: 14px;
  618. float: right;
  619. line-height: 36px;
  620. margin-right: 40px;
  621. }
  622. .pro-info .save a:hover {
  623. background: #1f4fb2;
  624. }
  625. .pro-add-data02 {
  626. width: 100%;
  627. margin: 0 auto;
  628. background: #fff;
  629. margin-top: 20px;
  630. }
  631. .pro-search {
  632. width: 100%;
  633. height: 90px;
  634. margin: 0 auto;
  635. /*border-bottom: #d0cfcf 1px solid;*/
  636. overflow: hidden;
  637. }
  638. .pro-search .search {
  639. margin-top: 30px;
  640. margin-right: 20px;
  641. }
  642. .pro-search .search input {
  643. width: 348px;
  644. }
  645. .pro-add-data02 .pro-info dl span {
  646. width: 12.5%;
  647. }
  648. /*分页*/
  649. .page {
  650. width: 100%;
  651. margin: 0 auto;
  652. height: 60px;
  653. line-height: 60px;
  654. }
  655. .page ul {
  656. margin-left: 20px;
  657. }
  658. .page ul li {
  659. float: left;
  660. font-size: 14px;
  661. color: #999;
  662. margin: 0 5px;
  663. }
  664. .page ul li a {
  665. width: 50px;
  666. display: inline-block;
  667. font-size: 14px;
  668. color: #999;
  669. }
  670. .page ul li input {
  671. width: 24px;
  672. height: 24px;
  673. border: #3578ba 1px solid;
  674. text-align: center;
  675. color: #3578ba;
  676. margin: 0 10px;
  677. }
  678. .page ul li a:hover {
  679. color: #3578ba;
  680. }
  681. /*产品资料批量导入 1*/
  682. .bomb-box .box02 {
  683. width: 654px;
  684. height: 264px;
  685. border-radius: 5px;
  686. background: #fff;
  687. }
  688. .bomb-box .box02 .many-file {
  689. width: 90%;
  690. margin: 0 auto;
  691. font-size: 14px;
  692. }
  693. .bomb-box .box02 .many-file .file {
  694. margin-top: 25px;
  695. position: relative;
  696. }
  697. .bomb-box .box02 .many-file span {
  698. margin-left: 10px;
  699. }
  700. .bomb-box .box02 .many-file span, .bomb-box .box02 .many-file .file input[type="text"] {
  701. width: 506px;
  702. height: 34px;
  703. display: inline-block;
  704. border: #e8e8e8 1px solid;
  705. position: relative;
  706. }
  707. .bomb-box .box02 .many-file .file input[type="text"] {
  708. padding-left: 30px;
  709. font-size: 14px;
  710. color: #999;
  711. }
  712. .bomb-box .box02 .many-file span {
  713. border: none;
  714. }
  715. .bomb-box .box02 .many-file .file i {
  716. position: absolute;
  717. top: 10px;
  718. z-index: 10;
  719. color: #959595;
  720. font-size: 16px;
  721. left: 10px;
  722. }
  723. .bomb-box .box02 .many-file-btn {
  724. width: 235px;
  725. margin: 0px auto;
  726. margin-top: 20px;
  727. }
  728. .bomb-box .box02 .many-file-btn a {
  729. width: 94px;
  730. height: 36px;
  731. line-height: 36px;
  732. font-size: 14px;
  733. display: inline-block;
  734. text-align: center;
  735. }
  736. .bomb-box .box02 .many-file-btn a.btn01 {
  737. background: #3f84f6;
  738. color: #fff;
  739. }
  740. .bomb-box .box02 .many-file-btn .btn01 a {
  741. color: #fff;
  742. }
  743. .bomb-box .box02 .many-file-btn a.btn02 {
  744. border: #3f84f6 1px solid;
  745. color: #3f84f6;
  746. margin-left: 45px;
  747. }
  748. .bomb-box .box02 .many-file-btn a:hover {
  749. background: #135c9a;
  750. color: #fff;
  751. }
  752. .many-file-text {
  753. width: 100%;
  754. margin: 0 auto;
  755. margin-top: 30px;
  756. }
  757. .many-file-text em {
  758. width: 100%;
  759. margin: 0 auto;
  760. display: inline-block;
  761. line-height: 30px;
  762. }
  763. .bomb-box .box02 .file01 {
  764. width: 506px;
  765. height: 34px;
  766. filter: alpha(opacity=0);
  767. -moz-opacity: 0;
  768. opacity: 0;
  769. position: absolute;
  770. left: 0;
  771. top: 8px;
  772. }
  773. /*产品资料批量导入 后*/
  774. .bomb-box .box03 {
  775. width: 648px;
  776. min-height: 300px;
  777. border-radius: 5px;
  778. background: #fff;
  779. margin-top: 15%;
  780. bottom: auto;
  781. padding-bottom: 18px;
  782. }
  783. .bomb-box .box03 .many-tile {
  784. width: 100%;
  785. height: 60px;
  786. line-height: 60px;
  787. font-size: 14px;
  788. }
  789. .bomb-box .box03 .many-tile i {
  790. background: #04be02;
  791. color: #fff;
  792. font-size: 14px;
  793. border-radius: 100%;
  794. width: 24px;
  795. height: 24px;
  796. line-height: 24px;
  797. margin-left: 60px;
  798. text-align: center;
  799. margin-right: 10px;
  800. }
  801. .bomb-box .box03 .fail-data {
  802. width: 90%;
  803. margin: 0 auto;
  804. }
  805. .bomb-box .box03 .fail-data p {
  806. width: 100%;
  807. margin: 0 auto;
  808. font-size: 14px;
  809. color: #959595;
  810. height: 30px;
  811. line-height: 30px;
  812. border-bottom: none !important;
  813. padding-left: 0
  814. }
  815. .bomb-box .box03 .fail-data dl {
  816. width: 100%;
  817. margin: 0 auto;
  818. }
  819. .bomb-box .box03 .fail-data dl span {
  820. font-size: 14px;
  821. width: 18.333%;
  822. float: left;
  823. text-align: center;
  824. border: #e8e8e8 1px solid;
  825. border-top: none;
  826. border-right: none;
  827. }
  828. .bomb-box .box03 .fail-data dl dt, .bomb-box .box03 .fail-data dl dd {
  829. width: 100%;
  830. margin: 0 auto;
  831. display: flex !important;
  832. border-top: #e8e8e8 1px solid;
  833. border-right: #e8e8e8 1px solid;
  834. }
  835. .bomb-box .box03 .fail-data dl span.wid01 {
  836. width: 15%;
  837. }
  838. .bomb-box .box03 .fail-data dl span.wid02 {
  839. width: 30%;
  840. }
  841. .bomb-box .box03 .fail-data dl dt, .bomb-box .box03 .fail-data dl dt span {
  842. height: 40px;
  843. line-height: 40px;
  844. display: inline-block;
  845. }
  846. .bomb-box .box03 .fail-data dl dd, .bomb-box .box03 .fail-data dl dd span {
  847. height: 50px;
  848. line-height: 50px;
  849. display: inline-block;
  850. }
  851. .fail-data a {
  852. width: 94px;
  853. height: 36px;
  854. display: inline-block;
  855. background: #3578ba;
  856. text-align: center;
  857. color: #fff;
  858. font-size: 14px;
  859. float: right;
  860. line-height: 36px;
  861. margin-top: 30px;
  862. }
  863. .fail-data a:hover {
  864. background: #1f4fb2;
  865. }
  866. /*供应商列表*/
  867. .supply-list {
  868. width: 100%;
  869. margin: 0 auto;
  870. background: #fff;
  871. margin-top: 10px;
  872. }
  873. .supply-list dl, .supply-list dl dt, .supply-list dl dd {
  874. width: 100%;
  875. margin: 0 auto;
  876. border-bottom: #dcdcdc 1px dotted;
  877. }
  878. .supply-list dl dt, .supply-list dl dt span {
  879. height: 50px;
  880. line-height: 50px;
  881. }
  882. .supply-list dl span {
  883. width: 20.5%;
  884. display: inline-block;
  885. text-align: center;
  886. font-size: 14px;
  887. }
  888. .supply-list dl span.wid01 {
  889. width: 8%;
  890. }
  891. .supply-list dl span.wid02 {
  892. width: 10%;
  893. }
  894. .supply-list dl dd, .supply-list dl dd span {
  895. height: 110px;
  896. line-height: 110px;
  897. overflow: hidden;
  898. }
  899. .supply-list dl dd p {
  900. line-height: 22px;
  901. padding-top: 20px;
  902. font-size: 14px;
  903. width: 90%;
  904. margin: 0 auto;
  905. }
  906. .supply-list dl dd:hover {
  907. border: #d2272d 1px solid;
  908. }
  909. .supply-list dl dd span a {
  910. color: #3f84f6;
  911. }
  912. .supply-list dl dd span a.buy-btn {
  913. margin-left: 15px;
  914. }
  915. .supply-list dl dd span a:hover {
  916. color: #d2272d;
  917. }
  918. /*供应商详情*/
  919. .pro-add-data .sty01 {
  920. margin-top: 0px !important;
  921. }
  922. .supply-list01 dl span {
  923. width: 20%;
  924. }
  925. .supply-list01 dl span.wid01, .supply-list01 dl span.wid02 {
  926. width: 10%;
  927. }
  928. .supply-list01 dl span a.edit {
  929. margin-right: 10px;
  930. }
  931. /*设置-企业设置-收货地址编辑*/
  932. .bomb-box .box04 {
  933. width: 780px;
  934. height: 478px;
  935. background: #fff;
  936. }
  937. .bomb-box .box04 p {
  938. height: 50px;
  939. line-height: 50px;
  940. border-bottom: #dcdcdc 1px dotted;
  941. }
  942. .bomb-box .box04 ul {
  943. width: 92%;
  944. margin: 0 auto;
  945. }
  946. .bomb-box .box04 ul li {
  947. width: 100%;
  948. height: 34px;
  949. margin-top: 16px !important;
  950. line-height: 34px;
  951. margin: 0 auto;
  952. }
  953. .bomb-box .box04 ul li.line01 div {
  954. width: 50%;
  955. float: left;
  956. }
  957. .bomb-box .box04 ul li.line01 div.fl span.fl, .bomb-box .box04 ul li.line01 div.fr span.fl {
  958. width: 80px;
  959. font-size: 14px;
  960. }
  961. .bomb-box .box04 ul li.line01 div.fl span.fr, .bomb-box .box04 ul li.line01 div.fr span.fr {
  962. width: 254px;
  963. height: 34px;
  964. display: inline-block;
  965. float: left;
  966. }
  967. .bomb-box .box04 ul li div em {
  968. color: #f00;
  969. }
  970. .bomb-box .box04 ul li.line01 div.fl span.fr input, .bomb-box .box04 ul li.line01 div.fr span.fr input {
  971. width: 254px;
  972. height: 34px;
  973. padding-left: 10px;
  974. border: #cccccd 1px solid;
  975. font-size: 14px;
  976. }
  977. .bomb-box .box04 ul li.line01 div.fr span.fl {
  978. margin-left: 20px;
  979. }
  980. .bomb-box .box04 ul li.line02 div.fl {
  981. width: 80px;
  982. font-size: 14px;
  983. }
  984. .bomb-box .box04 ul li.line02 div.fr {
  985. width: 632px;
  986. height: 34px;
  987. font-size: 14px;
  988. float: left;
  989. }
  990. .bomb-box .box04 ul li.line02 div.fr input {
  991. width: 632px;
  992. height: 34px;
  993. font-size: 14px;
  994. padding-left: 10px;
  995. border: #cccccd 1px solid;
  996. }
  997. .bomb-box .box04 .margin-top40 {
  998. margin-top: 40px !important;
  999. }
  1000. .bomb-box .box04 .emaill, .bomb-box .box04 .address {
  1001. position: relative;
  1002. }
  1003. .bomb-box .box04 .emaill i, .bomb-box .box04 .address i {
  1004. position: absolute;
  1005. bottom: -30px;
  1006. width: 112%;
  1007. font-size: 12px;
  1008. color: #959595;
  1009. left: 0;
  1010. }
  1011. .bomb-box .box04 .select {
  1012. position: relative;
  1013. }
  1014. .bomb-box .box04 .select i {
  1015. position: absolute;
  1016. top: 10px;
  1017. left: 60px;
  1018. color: #959595;
  1019. }
  1020. .bomb-box .box04 .many-file-btn {
  1021. width: 240px;
  1022. margin: 0px auto;
  1023. margin-top: 60px;
  1024. }
  1025. .bomb-box .box04 .many-file-btn a {
  1026. width: 94px;
  1027. height: 36px;
  1028. line-height: 36px;
  1029. font-size: 14px;
  1030. display: inline-block;
  1031. text-align: center;
  1032. }
  1033. .bomb-box .box04 .many-file-btn button {
  1034. width: 94px;
  1035. height: 36px;
  1036. line-height: 36px;
  1037. font-size: 14px;
  1038. display: inline-block;
  1039. text-align: center;
  1040. }
  1041. .bomb-box .box04 .many-file-btn button.btn01 {
  1042. border: 1px;
  1043. background: #3f84f6;
  1044. color: #fff;
  1045. }
  1046. .bomb-box .box04 .many-file-btn a.btn01 {
  1047. background: #3f84f6;
  1048. color: #fff;
  1049. }
  1050. .bomb-box .box04 .many-file-btn .btn01 a {
  1051. color: #fff;
  1052. }
  1053. .bomb-box .box04 .many-file-btn a.btn02 {
  1054. border: #3f84f6 1px solid;
  1055. color: #3f84f6;
  1056. margin-left: 45px;
  1057. }
  1058. .bomb-box .box04 .many-file-btn button:hover {
  1059. background: #135c9a;
  1060. color: #fff;
  1061. }
  1062. .bomb-box .box04 .many-file-btn a:hover {
  1063. background: #135c9a;
  1064. color: #fff;
  1065. }
  1066. /*产品资料新增*/
  1067. .pro-add-tab {
  1068. padding-bottom: 40px;
  1069. }
  1070. .pro-add-tab dl {
  1071. margin-top: 20px;
  1072. }
  1073. .pro-add-tab dl dd span {
  1074. font-size: 12px;
  1075. color: #959595;
  1076. margin-left: 10px;
  1077. }
  1078. .pro-add-tab dd div.fr input {
  1079. width: 190px !important;
  1080. color: #323232 !important;
  1081. }
  1082. .com_head span.fr {
  1083. margin-right: 20px;
  1084. color: #fff;
  1085. }
  1086. .com_head span.fr em {
  1087. margin-right: 50px;
  1088. font-size: 14px;
  1089. color:#fff;
  1090. }
  1091. .pro-add-tab dl dd select {
  1092. width: 96px;
  1093. height: 34px;
  1094. background: url("../img/purc/select.png") no-repeat right;
  1095. -webkit-appearance: none;
  1096. appearance: none;
  1097. -o-appearance: none;
  1098. -moz-appearance: none;
  1099. -ms-appearance: none;
  1100. border: #3f84f6 1px solid;
  1101. position: relative;
  1102. font-size: 14px;
  1103. padding-left: 10px;
  1104. }
  1105. .pro-add-tab .com_title01 span em {
  1106. color: #d2272d;
  1107. font-size: 14px;
  1108. margin-left: 5px;
  1109. }
  1110. .pro-add-tab .upload-pro {
  1111. height: 100px;
  1112. overflow: hidden;
  1113. margin-top: 20px;
  1114. }
  1115. .pro-add-tab .upload-pro span {
  1116. width: 100px;
  1117. height: 100px;
  1118. background: url("../img/purc/upload.png") no-repeat center;
  1119. display: inline-block;
  1120. border: #ccc 1px solid;
  1121. float: left;
  1122. margin-left: 0;
  1123. }
  1124. .pro-add-tab .upload-pro input[type="file"] {
  1125. width: 100px !important;
  1126. height: 100px;
  1127. filter: alpha(opacity=0);
  1128. -moz-opacity: 0;
  1129. opacity: 0;
  1130. }
  1131. .pro-add-tab .upload-pro i {
  1132. font-size: 12px;
  1133. color: #959595;
  1134. margin-left: 10px;
  1135. padding-top: 75px;
  1136. display: inline-block;
  1137. }
  1138. .pro-add-tab .text-detail {
  1139. height: 120px;
  1140. overflow: hidden;
  1141. margin-top: 20px;
  1142. }
  1143. .pro-add-tab .text-detail textarea {
  1144. width: 710px;
  1145. height: 110px;
  1146. border: #ccc 1px solid;
  1147. padding: 0 10px;
  1148. font-size: 14px;
  1149. }
  1150. .pro-add-tab .fj-file {
  1151. width: 200px;
  1152. height: 34px;
  1153. display: inline-block;
  1154. position: relative;
  1155. }
  1156. .pro-add-tab .fj-file input[type="text"], .pro-add-tab .fj-file input[type="file"] {
  1157. width: 200px;
  1158. height: 34px;
  1159. border: none !important;
  1160. top: 0;
  1161. padding-left: 15px;
  1162. z-index: 1;
  1163. color: #3f84f6 !important;
  1164. }
  1165. .pro-add-tab .fj-file i {
  1166. position: absolute;
  1167. top: 6px;
  1168. left: -10px;
  1169. z-index: 2;
  1170. font-size: 16px;
  1171. width: 18px;
  1172. height: 18px;
  1173. display: inline-block;
  1174. background: url("../img/purc/folder.png") no-repeat center;
  1175. }
  1176. .pro-add-tab .fj-file input[type="file"] {
  1177. filter: alpha(opacity=0);
  1178. -moz-opacity: 0;
  1179. opacity: 0;
  1180. position: absolute;
  1181. left: 0;
  1182. top: 0;
  1183. }
  1184. .pro-add-tab .many-file-btn {
  1185. width: 220px;
  1186. margin: 0px auto;
  1187. margin-top: 20px;
  1188. float: right;
  1189. margin-right: 40px;
  1190. }
  1191. .pro-add-tab .many-file-btn a {
  1192. width: 94px;
  1193. height: 36px;
  1194. line-height: 36px;
  1195. font-size: 14px;
  1196. display: inline-block;
  1197. text-align: center;
  1198. }
  1199. .pro-add-tab .many-file-btn button {
  1200. border: 1px;
  1201. width: 94px;
  1202. height: 36px;
  1203. line-height: 36px;
  1204. font-size: 14px;
  1205. display: inline-block;
  1206. text-align: center;
  1207. }
  1208. .pro-add-tab .many-file-btn button.btn01 {
  1209. background: #3f84f6;
  1210. color: #fff;
  1211. }
  1212. .pro-add-tab .many-file-btn .btn01 a {
  1213. color: #fff;
  1214. }
  1215. .pro-add-tab .many-file-btn a.btn02 {
  1216. border: #3f84f6 1px solid;
  1217. color: #3f84f6;
  1218. margin-left: 25px;
  1219. }
  1220. .pro-add-tab .many-file-btn a:hover {
  1221. background: #135c9a;
  1222. color: #fff;
  1223. }
  1224. .pro-add-tab .many-file-btn button.btn02 {
  1225. border: #3f84f6 1px solid;
  1226. color: #3f84f6;
  1227. margin-left: 25px;
  1228. background-color: #fff;
  1229. }
  1230. .pro-add-tab .many-file-btn button:hover {
  1231. background: #135c9a;
  1232. color: #fff;
  1233. }
  1234. .pro-add-tab dl dd div.fr {
  1235. position: relative;
  1236. }
  1237. .pro-add-tab #proText {
  1238. position: absolute;
  1239. border: none !important;
  1240. color: #3f84f6 !important;
  1241. top: 30px;
  1242. left: 110px;
  1243. width: 600px !important;
  1244. }
  1245. option {
  1246. height: 30px;
  1247. padding-top: 3px;
  1248. padding-left: 10px;
  1249. }
  1250. /*B2B商务采购变更-添加*/
  1251. .oder-change {
  1252. width: 100%;
  1253. margin: 0 auto;
  1254. background: #fff;
  1255. padding-top: 10px;
  1256. padding-bottom: 30px;
  1257. }
  1258. .oder-change .purc {
  1259. width: 100%;
  1260. margin: 0 auto;
  1261. }
  1262. .oder-change .purc li {
  1263. width: 100%;
  1264. height: 34px;
  1265. line-height: 34px;
  1266. margin-bottom: 16px;
  1267. }
  1268. .oder-change .purc li div {
  1269. width: 450px;
  1270. float: left;
  1271. font-size: 14px;
  1272. }
  1273. .oder-change .purc li div em {
  1274. width: 110px;
  1275. float: left;
  1276. margin-left: 30px;
  1277. line-height: 40px;
  1278. font-size: 14px;
  1279. }
  1280. .oder-change .purc li div span {
  1281. width: 275px;
  1282. float: left;
  1283. display: inline-block;
  1284. height: 40px;
  1285. line-height: 40px;
  1286. position: relative;
  1287. font-size: 14px;
  1288. }
  1289. .oder-change .dropdown-menu td {
  1290. padding: 0;
  1291. line-height: 30px;
  1292. }
  1293. .oder-change .purc li div span .select01 {
  1294. width: 187px;
  1295. height: 34px;
  1296. font-size: 14px;
  1297. padding-left: 10px;
  1298. }
  1299. .oder-change .purc li.beizhu div {
  1300. width: 800px;
  1301. }
  1302. .oder-change .purc li.beizhu div span {
  1303. width: 600px;
  1304. }
  1305. .oder-change .purc li div span .select01 option em {
  1306. margin-right: 10px;
  1307. width: 20px;
  1308. display: inline-block;
  1309. }
  1310. .oder-change .purc li div span .select02 {
  1311. background: url("../img/purc/select.png") no-repeat right;
  1312. -webkit-appearance: none;
  1313. appearance: none;
  1314. -o-appearance: none;
  1315. -moz-appearance: none;
  1316. -ms-appearance: none;
  1317. border: #5078cb 1px solid;
  1318. height: 34px;
  1319. font-size: 14px;
  1320. line-height: 34px;
  1321. padding-left: 20px;
  1322. }
  1323. .oder-change .purc li div span .select02 option {
  1324. padding-right: 21px;
  1325. text-align: center;
  1326. }
  1327. .oder-change .purc li div span .wid152 {
  1328. width: 152px;
  1329. }
  1330. .oder-change .purc li div span .wid100 {
  1331. width: 100px;
  1332. }
  1333. .editable {
  1334. width: 100%;
  1335. height: 34px;
  1336. border: none;
  1337. font-size: 14px;
  1338. padding-left: 4px;
  1339. line-height: 34px;
  1340. }
  1341. /*下拉样式*/
  1342. .oder-change .select {
  1343. width: 568px !important;
  1344. height: 34px;
  1345. border: #ccc 1px solid;
  1346. font-size: 14px;
  1347. position: relative;
  1348. margin: 0px auto;
  1349. margin-top: 3px;
  1350. }
  1351. .oder-change .select:after {
  1352. content: "";
  1353. display: block;
  1354. width: 8px;
  1355. height: 8px;
  1356. border-left: 1px solid #444;
  1357. border-bottom: 1px #444 solid;
  1358. position: absolute;
  1359. right: 10px;
  1360. top: 10px;
  1361. transform: rotate(-45deg);
  1362. cursor: pointer;
  1363. transition: transform .1s ease-out, top .1s ease-out;
  1364. }
  1365. .oder-change .select p {
  1366. width: 95% !important;
  1367. display: block;
  1368. height: 34px;
  1369. line-height: 32px;
  1370. padding: 0 15px;
  1371. cursor: pointer;
  1372. font-size: 14px;
  1373. }
  1374. .oder-change .select ul {
  1375. list-style-type: none;
  1376. background-color: #fff;
  1377. width: 100%;
  1378. position: absolute;
  1379. top: 35px;
  1380. overflow-y: auto;
  1381. left: -1px;
  1382. max-height: 0;
  1383. transition: max-height .5s ease-out;
  1384. z-index: 20;
  1385. }
  1386. .oder-change .select ul li {
  1387. line-height: 34px;
  1388. cursor: pointer;
  1389. padding-left: 10px;
  1390. font-size: 14px;
  1391. margin-bottom: 0;
  1392. }
  1393. .oder-change .select ul li:hover {
  1394. background-color: #f5f5f5;
  1395. }
  1396. .oder-change .select ul li.selected {
  1397. background-color: #5078cb;
  1398. color: #fff;
  1399. }
  1400. .oder-change .select ul li b, .oder-change .select p b {
  1401. margin-right: 16px;
  1402. }
  1403. @-webkit-keyframes slide-out {
  1404. 0% {
  1405. transform: scale(1, 0)
  1406. }
  1407. 25% {
  1408. transform: scale(1,
  1409. 1.1)
  1410. }
  1411. 50% {
  1412. transform: scale(1,
  1413. 0.85)
  1414. }
  1415. 0% {
  1416. transform: scale(1,
  1417. 1.1)
  1418. }
  1419. 0% {
  1420. transform: scale(1,
  1421. 1)
  1422. }
  1423. }
  1424. .oder-change .select.open ul {
  1425. max-height: 500px;
  1426. animation: slide-out .3s ease-in;
  1427. transform-origin: 50% 0;
  1428. transition: max-height .3s ease-in;
  1429. border: #ccc 1px solid;
  1430. }
  1431. .oder-change .select.open:after {
  1432. transform: rotate(-225deg);
  1433. top: 14px;
  1434. transition: all .1s ease-in;
  1435. }
  1436. .oder-change dl {
  1437. width: 100%;
  1438. margin: 0 auto;
  1439. position: relative;
  1440. }
  1441. .oder-change dl dt {
  1442. width: 100%;
  1443. margin: 0 auto;
  1444. height: 40px;
  1445. }
  1446. .oder-change dl dt b {
  1447. height: 40px;
  1448. line-height: 48px;
  1449. display: inline-block;
  1450. color: #999;
  1451. }
  1452. .oder-change dl dd {
  1453. width: 100%;
  1454. margin: 0 auto;
  1455. min-height: 100px;
  1456. border-bottom: #ccc 1px dashed;
  1457. overflow: hidden;
  1458. }
  1459. .oder-change dl dd:hover {
  1460. border: #3f84f6 1px solid;
  1461. }
  1462. .oder-change dl dd:hover b.wid02 a {
  1463. display: inline-block;
  1464. }
  1465. .oder-change dl dd b {
  1466. height: 100px;
  1467. line-height: 50px;
  1468. display: inline-block;
  1469. }
  1470. .oder-change dl b {
  1471. width: 10.2%;
  1472. font-size: 14px;
  1473. float: left;
  1474. text-align: center;
  1475. }
  1476. .oder-change dl b.wid01 {
  1477. width: 24%;
  1478. }
  1479. .oder-change .purc .address {
  1480. width: 100%;
  1481. }
  1482. .oder-change .purc .address span {
  1483. width: 720px;
  1484. }
  1485. .oder-change ul .address b {
  1486. width: 720px
  1487. }
  1488. .oder-change .add-address {
  1489. float: right;
  1490. color: #5078cb;
  1491. }
  1492. .oder-change .add-address:hover {
  1493. color: #d2272d;
  1494. }
  1495. .oder-change dl b.wid02 {
  1496. width: 4%;
  1497. }
  1498. .oder-change dl b.wid01 p {
  1499. font-size: 14px;
  1500. line-height: 22px;
  1501. text-align: left;
  1502. margin: 0;
  1503. }
  1504. .oder-change dl dd b.wid01 {
  1505. margin-top: 15px;
  1506. }
  1507. .oder-change dl b.wid02 a {
  1508. display: none;
  1509. }
  1510. .oder-change dl b.wid02 a i {
  1511. width: 20px;
  1512. height: 20px;
  1513. display: inline-block;
  1514. line-height: 20px;
  1515. background: #d2272d;
  1516. text-align: center;
  1517. border-radius: 100%;
  1518. color: #fff;
  1519. }
  1520. .oder-change .save {
  1521. margin-top: 30px;
  1522. }
  1523. .oder-change .dropdown-menu {
  1524. min-width: auto;
  1525. }
  1526. .oder-change .save button {
  1527. border: 1px;
  1528. width: 94px;
  1529. height: 36px;
  1530. display: inline-block;
  1531. background: #3578ba;
  1532. text-align: center;
  1533. color: #fff;
  1534. font-size: 14px;
  1535. float: right;
  1536. line-height: 36px;
  1537. margin-right: 40px;
  1538. }
  1539. /* .oder-change .save button:hover {
  1540. background: #1f4fb2;
  1541. } */
  1542. .search-result {
  1543. font-size: 18px;
  1544. color: #969595;
  1545. line-height: 90px;
  1546. }
  1547. .search-result img {
  1548. margin-left: 40px;
  1549. font-style: inherit;
  1550. margin-right: 15px;
  1551. }
  1552. .search-result em {
  1553. color: #000;
  1554. font-size: 18px;
  1555. }
  1556. /*投标单*/
  1557. .tender-list, .tender-list02 {
  1558. width: 100%;
  1559. margin: 0 auto;
  1560. background: #fff;
  1561. }
  1562. .tender-list dl {
  1563. width: 100%;
  1564. margin: 0 auto;
  1565. }
  1566. .tender-list dl dt {
  1567. width: 100%;
  1568. margin: 0 auto;
  1569. height: 40px;
  1570. }
  1571. .tender-list dl dt span {
  1572. height: 40px;
  1573. line-height: 48px;
  1574. display: inline-block;
  1575. color: #999;
  1576. }
  1577. .tender-list dl dd {
  1578. width: 100%;
  1579. margin: 0 auto;
  1580. height: 100px;
  1581. border-bottom: #ccc 1px dashed;
  1582. overflow: hidden;
  1583. }
  1584. .tender-list dl dd:hover {
  1585. border: #d32526 1px solid;
  1586. }
  1587. .tender-list dl dd span {
  1588. height: 100px;
  1589. line-height: 50px;
  1590. display: inline-block;
  1591. }
  1592. .tender-list dl span {
  1593. width: 10.6%;
  1594. font-size: 14px;
  1595. float: left;
  1596. text-align: center;
  1597. }
  1598. .tender-list dl span.wid01 {
  1599. width: 25%;
  1600. }
  1601. .tender-list dl span.wid01 p {
  1602. font-size: 14px;
  1603. line-height: 22px;
  1604. text-align: left;
  1605. margin: 0;
  1606. }
  1607. .tender-list dl dd span.wid01 {
  1608. margin-top: 15px;
  1609. }
  1610. .tender-list .com_title01 em, .tender-list02 .com_title01 em {
  1611. margin-left: 5px;
  1612. font-size: 16px;
  1613. color: #f00;
  1614. position: relative;
  1615. top: 3px;
  1616. }
  1617. /*招标单*/
  1618. .tender-list02 dl {
  1619. width: 100%;
  1620. margin: 0 auto;
  1621. }
  1622. .tender-list02 dl dt {
  1623. width: 100%;
  1624. margin: 0 auto;
  1625. height: 40px;
  1626. }
  1627. .tender-list02 dl dt span {
  1628. height: 50px;
  1629. line-height: 50px;
  1630. display: inline-block;
  1631. color: #999;
  1632. }
  1633. .tender-list02 dl dd {
  1634. width: 100%;
  1635. margin: 0 auto;
  1636. height: 50px;
  1637. border-bottom: #ccc 1px dotted;
  1638. /*overflow: hidden;*/
  1639. display: inline-block;
  1640. display: flex;
  1641. }
  1642. .scroll-y{
  1643. display: inline;
  1644. }
  1645. .tender-list02 dl dd:hover {
  1646. border: #d32526 1px solid;
  1647. }
  1648. .tender-list02 dl dd span {
  1649. height: 50px;
  1650. line-height: 50px;
  1651. display: inline-block;
  1652. }
  1653. .tender-list02 dl span {
  1654. width: 16.6666%;
  1655. font-size: 14px;
  1656. float: left;
  1657. text-align: center;
  1658. }
  1659. .tender-list02 .com_title01 a {
  1660. float: right;
  1661. margin-right: 45px;
  1662. font-size: 14px;
  1663. line-height: 50px;
  1664. }
  1665. .scroll-y {
  1666. width: 100%;
  1667. margin: 0 auto;
  1668. max-height: 500px;
  1669. }
  1670. .scroll-y.active {
  1671. overflow-y: scroll;
  1672. overflow-x: hidden;
  1673. }
  1674. /*评标单*/
  1675. .tender-list02 .comment-oder {
  1676. width: 100%;
  1677. margin: 0 auto;
  1678. }
  1679. .tender-list02 .comment-oder:hover {
  1680. border: #d32526 1px solid;
  1681. }
  1682. .tender-list02 .comment-oder-text {
  1683. border-bottom: #5078cb 1px solid;
  1684. }
  1685. .tender-list02 .comment-oder-text, .comment-oder-text ul {
  1686. width: 100%;
  1687. margin: 0 auto;
  1688. padding: 5px 0;
  1689. position: relative;
  1690. }
  1691. .tender-list02 .comment-oder-text i {
  1692. position: absolute;
  1693. top: -1px;
  1694. left: 35px;
  1695. width: 20px;
  1696. height: 20px;
  1697. line-height: 15px;
  1698. text-align: center;
  1699. background: #595959;
  1700. display: inline-block;
  1701. font-weight: 700;
  1702. font-size: 14px;
  1703. color: #fff;
  1704. border-radius: 0 0 50px 0;
  1705. }
  1706. .tender-list02 .comment-oder-text ul li {
  1707. width: 88%;
  1708. margin: 0 auto;
  1709. height: 30px;
  1710. line-height: 30px;
  1711. }
  1712. .tender-list02 .comment-oder-text ul li span {
  1713. width: 33.3333%;
  1714. float: left;
  1715. }
  1716. .tender-list02 .comment-oder-text ul li span em, .comment-oder-text ul li span b {
  1717. font-size: 14px;
  1718. }
  1719. .tender-list02 .comment-oder-text ul li span em {
  1720. width: 110px;
  1721. display: inline-block;
  1722. }
  1723. .tender-list02 .comment-oder-text ul li span b {
  1724. color: #959595;
  1725. }
  1726. .tender-list02 .comment-oder-list, .comment-oder-list dl {
  1727. width: 100%;
  1728. margin: 0 auto;
  1729. }
  1730. .tender-list02 .comment-oder-list dl dt, .comment-oder-list dl dd {
  1731. width: 100%;
  1732. margin: 0 auto;
  1733. border-bottom: #ccc 1px dashed;
  1734. height: 50px;
  1735. line-height: 50px;
  1736. }
  1737. .tender-list02 .comment-oder-list dl dt span.wid01 {
  1738. text-align: left;
  1739. padding-left: 30px;
  1740. }
  1741. .tender-list02 .comment-oder-list dl span {
  1742. font-size: 14px;
  1743. width: 9.1%;
  1744. float: left;
  1745. color: #323232 !important;
  1746. line-height: 50px;
  1747. position: relative;
  1748. overflow: hidden;
  1749. }
  1750. .tender-list02 .comment-oder-list dl span.wid01 {
  1751. width: 30%;
  1752. }
  1753. .tender-list02 .comment-oder-list dl span.wid02 {
  1754. width: 15%;
  1755. }
  1756. .tender-list02 .comment-oder-list dl dd span a {
  1757. margin-left: 15px;
  1758. font-size: 12px;
  1759. }
  1760. .tender-list02 .comment-oder-list dl dd:hover {
  1761. border-bottom: #ccc 1px dotted;
  1762. border-top: none;
  1763. border-left: none;
  1764. border-right: none;
  1765. }
  1766. .tender-list02 .change01 {
  1767. width: 16px;
  1768. height: 14px;
  1769. display: inline-block;
  1770. float: right;
  1771. line-height: 7px;
  1772. position: absolute;
  1773. top: 13px;
  1774. }
  1775. .tender-list02 .change01 i {
  1776. width: 100%;
  1777. display: inline-block;
  1778. height: 7px;
  1779. color: #000;
  1780. }
  1781. .tender-list02 .change01:hover i {
  1782. color: #5078cb;
  1783. }
  1784. .tender-list02 .explain {
  1785. width: 90%;
  1786. height: 30px;
  1787. border: none;
  1788. text-align: center;
  1789. }
  1790. .tender-list02 .save {
  1791. margin-top: 30px;
  1792. }
  1793. .tender-list02 .save a {
  1794. width: 94px;
  1795. height: 36px;
  1796. display: inline-block;
  1797. background: #3578ba;
  1798. text-align: center;
  1799. color: #fff;
  1800. font-size: 14px;
  1801. float: right;
  1802. line-height: 36px;
  1803. margin-right: 40px;
  1804. }
  1805. .tender-list02 .save a:hover {
  1806. background: #1f4fb2;
  1807. }
  1808. .tender-list02 .com_title01, .tender-list .com_title01 {
  1809. margin-top: 0;
  1810. }
  1811. /*采购变更弹窗*/
  1812. .pro-add-data02 {
  1813. margin-bottom: 30px;
  1814. }
  1815. .pro-add-data02 .pro-info dl {
  1816. position: relative;
  1817. }
  1818. .pro-add-data02 .pro-info dl dd.active .add01 {
  1819. color: #d32526;
  1820. }
  1821. .pro-add-data02 .pro-info dl dd.active {
  1822. border: #d32526 1px solid;
  1823. }
  1824. .add-tanchuang {
  1825. position: absolute;
  1826. box-shadow: 0 0 3px #888;
  1827. width: 238px;
  1828. height: 202px;
  1829. background: #fff;
  1830. right: 100px;
  1831. top: 20%;
  1832. display: none;
  1833. }
  1834. .add-tanchuang ul {
  1835. width: 195px;
  1836. margin: 0 auto;
  1837. margin-top: 10px;
  1838. }
  1839. .add-tanchuang ul li {
  1840. width: 100%;
  1841. margin: 0 auto;
  1842. height: 34px;
  1843. line-height: 34px;
  1844. margin-top: 12px;
  1845. }
  1846. .add-tanchuang ul li div.fl {
  1847. width: 50px;
  1848. font-size: 14px;
  1849. }
  1850. .add-tanchuang ul li div.fr {
  1851. width: 145px;
  1852. }
  1853. .add-tanchuang ul li div.fr .price-input {
  1854. width: 145px;
  1855. border: #969595 1px solid;
  1856. height: 34px;
  1857. font-size: 14px;
  1858. padding-left: 10px;
  1859. }
  1860. .add-tanchuang ul li.add-btn {
  1861. margin-top: 20px;
  1862. }
  1863. .add-tanchuang ul li.add-btn div.fr a {
  1864. width: 62px;
  1865. height: 24px;
  1866. display: inline-block;
  1867. line-height: 24px;
  1868. text-align: center;
  1869. }
  1870. .add-tanchuang ul li div.fr a.off {
  1871. border: #3f84f6 1px solid;
  1872. color: #3f84f6;
  1873. float: left;
  1874. }
  1875. .add-tanchuang ul li div.fr a.ok {
  1876. background: #3f84f6;
  1877. color: #fff;
  1878. float: right;
  1879. }
  1880. .add-tanchuang ul li div.fr a:hover {
  1881. background: #5078cb;
  1882. color: #fff;
  1883. }
  1884. .add-tanchuang ul li .btn-wrap {
  1885. position: relative;
  1886. height: 30px;
  1887. width: 145px;
  1888. line-height: 30px;
  1889. }
  1890. .add-tanchuang ul li .btn-wrap input {
  1891. display: inline-block;
  1892. }
  1893. .add-tanchuang ul li .btn-wrap .number {
  1894. width: 145px;
  1895. height: 34px !important;
  1896. border: #969595 1px solid;
  1897. display: inline-block;
  1898. text-align: center;
  1899. line-height: 34px !important;
  1900. color: #333;
  1901. }
  1902. .add-tanchuang ul li .btn-wrap .number a {
  1903. width: 26px;
  1904. height: 33px;
  1905. display: inline-block;
  1906. font-size: 18px;
  1907. color: #666;
  1908. line-height: 28px;
  1909. }
  1910. .add-tanchuang ul li .btn-wrap .number a:hover {
  1911. color: #fff;
  1912. background: #5078cb
  1913. }
  1914. .add-tanchuang ul li .btn-wrap .number .reduce {
  1915. float: left;
  1916. border-right: #969595 1px solid;
  1917. }
  1918. .add-tanchuang ul li .btn-wrap .number .add {
  1919. float: right;
  1920. border-left: #969595 1px solid;
  1921. }
  1922. .add-tanchuang ul li .btn-wrap .number input {
  1923. float: left;
  1924. width: 91px;
  1925. height: 32px;
  1926. line-height: 32px;
  1927. text-align: center;
  1928. font-size: 16px;
  1929. color: #666;
  1930. border: none;
  1931. }
  1932. .area-select {
  1933. width: 204px;
  1934. height: 34px;
  1935. padding-left: 10px;
  1936. border: #cccccd 1px solid;
  1937. font-size: 14px;
  1938. float: left;
  1939. margin-left: 10px;
  1940. }
  1941. .area-select:first-child {
  1942. margin-left: 0 !important;
  1943. }
  1944. .area-select[size] {
  1945. z-index: 1000;
  1946. position: relative;
  1947. }
  1948. .area-select option {
  1949. width: 204px;
  1950. position: relative;
  1951. left: -10px;
  1952. }
  1953. .oder-change dl .editable {
  1954. text-align: center;
  1955. }
  1956. .oder-change dl dd b {
  1957. height: auto;
  1958. }
  1959. .oder-change .save button:disabled {
  1960. background: #ccc !important;
  1961. }
  1962. .pro-add-data02 table tbody {
  1963. font-size: 14px;
  1964. }
  1965. .pro-add-data02 .table-default .header {
  1966. background: #fff;
  1967. border: none;
  1968. font-size: 14px;
  1969. }
  1970. .pro-add-data02 .table-default .header th {
  1971. border-bottom: #e8e8e8 1px solid;
  1972. }
  1973. .pro-add-data02 table tbody tr td {
  1974. /*line-height: 50px;*/
  1975. height: 50px;
  1976. padding: 0;
  1977. font-size: 14px !important;
  1978. border-bottom: #e8e8e8 1px solid;
  1979. background: #fff;
  1980. vertical-align: middle;
  1981. }
  1982. .pro-add-data02 table tbody tr {
  1983. margin-top: 1px;
  1984. background: #f5f5f5;
  1985. }
  1986. .pro-add-data02 table tbody tr td a:hover {
  1987. color: #f00 !important;
  1988. }
  1989. .pro-add-data02 table tbody tr:hover td {
  1990. background: #f5f5f5;
  1991. }
  1992. /*蒋下划线改成框*/
  1993. .pro-add-data dl dd div.fr input {
  1994. border: #bfbfbf 1px solid !important;
  1995. padding-left: 10px;
  1996. }
  1997. .bor01 {
  1998. width: 187px;
  1999. height: 34px;
  2000. border: #bfbfbf 1px solid !important;
  2001. font-size: 14px;
  2002. padding-left: 10px;
  2003. line-height: 34px;
  2004. }
  2005. .com_title01{
  2006. border-bottom: #5078cb 1px dashed !important;
  2007. }