main.css 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504
  1. *{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html{
  6. font-size: 62.5%;
  7. font-size: 100px;
  8. overflow: hidden;
  9. }
  10. body{
  11. background: #f4f2f3;
  12. }
  13. p{
  14. margin-bottom: 0;
  15. }
  16. ul{
  17. list-style: none;
  18. }
  19. a{
  20. text-decoration: none;
  21. }
  22. input{
  23. border: none;
  24. }
  25. select{
  26. /*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/
  27. border:1px solid #000;
  28. /*很关键:将默认的select选择框样式清除*/
  29. appearance:none;
  30. -moz-appearance:none;
  31. -webkit-appearance:none;
  32. direction: rtl;
  33. }
  34. /*清除ie的默认选择框样式清除,隐藏下拉箭头*/
  35. select::-ms-expand {
  36. display: none;
  37. }
  38. option {
  39. direction: ltr;
  40. }
  41. @media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5 */
  42. .ar_header{
  43. height: 3rem !important;
  44. line-height: 3rem !important;
  45. }
  46. .zuo {
  47. font-size: 2.15rem !important;
  48. }
  49. .rowll{
  50. padding-left: 0.5rem !important;
  51. }
  52. .hiddenMsg>.row>div {
  53. padding-left: 1.2rem !important;
  54. }
  55. .hiddenMsg>.row>.col-md-3{
  56. padding-right: 0px !important;
  57. }
  58. #wrap section {
  59. bottom: 1.35rem !important;
  60. }
  61. .pzSearch{
  62. width:26% !important;
  63. }
  64. .zzz{
  65. margin-top:0.45rem;
  66. }
  67. .yellowPig{
  68. background-position: -0.56rem -2.52rem !important;
  69. }
  70. .yellowFeiPig{
  71. background-position: -2.91rem -2.55rem !important;
  72. }
  73. .yellowQuanPig{
  74. background-position: -5.33rem -2.55rem !important;
  75. }
  76. .bulePig{
  77. background-position: -0.56rem -4.38rem !important;
  78. }
  79. .buleFeiPig{
  80. background-position: -2.91rem -4.4rem !important;
  81. }
  82. .buleQuanPig{
  83. background-position: -5.33rem -4.4rem !important;
  84. }
  85. .purplePig{
  86. background-position: -0.56rem -6.28rem !important;
  87. }
  88. .purpleFeiPig{
  89. background-position: -2.91rem -6.28rem !important;
  90. }
  91. .purpleQuanPig{
  92. background-position: -5.33rem -6.28rem !important;
  93. }
  94. .pinkPig{
  95. background-position: -0.56rem -8.1rem !important;
  96. }
  97. .pinkQuanPig{
  98. background-position: -2.91rem -8.1rem !important;
  99. }
  100. .cyanPig{
  101. background-position: -0.56rem -9.98rem !important;
  102. }
  103. .cyanFeiPig{
  104. background-position: -2.91rem -9.98rem !important;
  105. }
  106. .cyanQuanPig{
  107. background-position: -5.33rem -9.98rem !important;
  108. }
  109. .orangePuMian{
  110. background-position: -0.56rem -11.85rem !important;
  111. }
  112. .orangePig{
  113. background-position: -2.91rem -11.85rem !important;
  114. }
  115. .orangeFeiPig{
  116. background-position: -5.33rem -11.85rem !important;
  117. }
  118. .group_row div:nth-of-type(1) {
  119. margin-left: 0.4rem !important;
  120. }
  121. .table2>tbody>tr>td:nth-of-type(2){
  122. width: 3.8rem !important;
  123. }
  124. .tr1_2 {
  125. width: 19rem !important;
  126. padding: 8px 0 0 4px !important;
  127. }
  128. .tr1_3{
  129. width: 18rem !important;
  130. padding: 8px 0 !important;
  131. }
  132. .tr1_4{
  133. width: 8rem;
  134. padding: 8px 0 0 4px !important;
  135. }
  136. #wrap footer {
  137. height: 1.35rem !important;
  138. line-height: 1.35rem !important;
  139. }
  140. #hiddenBoxPig {
  141. bottom: 14% !important;
  142. }
  143. .rowll {
  144. margin-left: 0.1rem !important;
  145. }
  146. .col-md-2,.col-md-6{
  147. padding-left: 0 !important;
  148. padding-right: 0 !important;
  149. }
  150. .col-md-2{
  151. text-align: center;
  152. }
  153. .col-md-6{
  154. text-align: left !important;
  155. }
  156. .col-sm-6{
  157. text-align: center !important;
  158. }
  159. .tabler>tbody>tr>td{
  160. padding: 8px 8px 0 2px;
  161. font-size: 0.1rem;
  162. }
  163. #hiddenBox{
  164. width: 23.5rem !important;
  165. margin-left: -11.75rem !important;
  166. margin-top: -12.7rem !important;
  167. }
  168. #hiddenBox .hiddenBoxTop {
  169. height: 4rem !important;
  170. line-height: 4rem !important;
  171. }
  172. .table tr td span {
  173. font-size: 1.2rem !important;
  174. }
  175. .swiper-container-horizontal>.swiper-pagination-bullets {
  176. bottom: -4px !important;
  177. }
  178. #hiddenBox .hiddenBoxTop div {
  179. font-size: 2rem !important;
  180. }
  181. .swiper-container-horizontal>.swiper-pagination-bullets {
  182. bottom: 4px !important;
  183. }
  184. }
  185. @media (device-height:640px) and (-webkit-min-device-pixel-ratio:2){/* 兼容Galaxy S5 */
  186. .hiddenMsg>.row>div {
  187. padding-left: 1.2rem !important;
  188. }
  189. .ar_header>.btn-group>.zuo{
  190. margin-top: 0 !important;
  191. font-size: 2rem !important;
  192. }
  193. .topBg .btn-group .fenmian_btn {
  194. font-size: 0.35rem !important;
  195. margin-top: 0 !important;
  196. }
  197. .title .xinZengDuanNai_btn {
  198. font-size: 0.35rem !important;
  199. margin-top: 0 !important;
  200. }
  201. .topBg .btn-group .record_btn {
  202. font-size: 0.35rem !important;
  203. margin-top: 0 !important;
  204. }
  205. .header>.btn-group>.danganshuju_leftbtn{
  206. font-size: 0.35rem !important;
  207. margin-top: 0 !important;
  208. }
  209. #wrap section .sectionTop {
  210. height: 61% !important;
  211. }
  212. #wrap section .sectionBtm {
  213. height: 39% !important;
  214. }
  215. .group_hiddenMsg .group_row .col-md-6 {
  216. padding-left: 15px !important;
  217. }
  218. .yellowPig{
  219. background-position: -0.56rem -2.48rem !important;
  220. }
  221. .yellowFeiPig{
  222. background-position: -2.91rem -2.55rem !important;
  223. }
  224. .yellowQuanPig{
  225. background-position: -5.33rem -2.55rem !important;
  226. }
  227. .bulePig{
  228. background-position: -0.56rem -4.28rem !important;
  229. }
  230. .buleFeiPig{
  231. background-position: -2.91rem -4.4rem !important;
  232. }
  233. .buleQuanPig{
  234. background-position: -5.33rem -4.4rem !important;
  235. }
  236. .purplePig{
  237. background-position: -0.56rem -6.15rem !important;
  238. }
  239. .purpleFeiPig{
  240. background-position: -2.91rem -6.28rem !important;
  241. }
  242. .purpleQuanPig{
  243. background-position: -5.33rem -6.28rem !important;
  244. }
  245. .pinkPig{
  246. background-position: -0.56rem -7.92rem !important;
  247. }
  248. .pinkQuanPig{
  249. background-position: -2.91rem -8.1rem !important;
  250. }
  251. .cyanPig{
  252. background-position: -0.56rem -9.75rem !important;
  253. }
  254. .cyanFeiPig{
  255. background-position: -2.91rem -9.75rem !important;
  256. }
  257. .cyanQuanPig{
  258. background-position: -5.33rem -10.05rem !important;
  259. }
  260. .orangePuMian{
  261. background-position: -0.56rem -11.6rem !important;
  262. }
  263. .orangePig{
  264. background-position: -2.91rem -11.9rem !important;
  265. }
  266. .orangeFeiPig{
  267. background-position: -5.33rem -11.9rem !important;
  268. }
  269. .col-md-2,.col-md-6{
  270. padding-left: 0 !important;
  271. padding-right: 0 !important;
  272. }
  273. .col-md-2{
  274. text-align: center;
  275. }
  276. .col-md-6{
  277. text-align: left !important;
  278. }
  279. .table2>tbody>tr>td:nth-of-type(2) {
  280. width: 2rem !important;
  281. }
  282. .swiper-container-horizontal>.swiper-pagination-bullets {
  283. bottom: -5px !important;
  284. }
  285. .tr1_2 {
  286. width: 13rem !important;
  287. }
  288. .tr1_3 {
  289. width: 11rem !important;
  290. }
  291. .tabler>tbody>tr>td{
  292. padding: 8px 8px 0 2px;
  293. font-size: 0.24rem;
  294. }
  295. .zhuanr {
  296. margin-left: -0.6rem !important;
  297. }
  298. #wrap footer {
  299. height: 1.2rem !important;
  300. line-height: 1.2rem !important;
  301. }
  302. }
  303. @media (device-height:667px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 */
  304. .hiddenMsg>.row>div {
  305. padding-left: 1.5rem !important;
  306. }
  307. .yellowPig{
  308. background-position: -0.56rem -2.52rem !important;
  309. }
  310. .yellowFeiPig{
  311. background-position: -2.91rem -2.55rem !important;
  312. }
  313. .yellowQuanPig{
  314. background-position: -5.33rem -2.55rem !important;
  315. }
  316. .bulePig{
  317. background-position: -0.56rem -4.38rem !important;
  318. }
  319. .buleFeiPig{
  320. background-position: -2.91rem -4.4rem !important;
  321. }
  322. .buleQuanPig{
  323. background-position: -5.33rem -4.4rem !important;
  324. }
  325. .purplePig{
  326. background-position: -0.56rem -6.28rem !important;
  327. }
  328. .purpleFeiPig{
  329. background-position: -2.91rem -6.28rem !important;
  330. }
  331. .purpleQuanPig{
  332. background-position: -5.33rem -6.28rem !important;
  333. }
  334. .pinkPig{
  335. background-position: -0.56rem -8.1rem !important;
  336. }
  337. .pinkQuanPig{
  338. background-position: -2.91rem -8.1rem !important;
  339. }
  340. .cyanPig{
  341. background-position: -0.56rem -9.95rem !important;
  342. }
  343. .cyanFeiPig{
  344. background-position: -2.91rem -9.95rem !important;
  345. }
  346. .cyanQuanPig{
  347. background-position: -5.33rem -9.95rem !important;
  348. }
  349. .orangePuMian{
  350. background-position: -0.56rem -11.83rem !important;
  351. }
  352. .orangePig{
  353. background-position: -2.91rem -11.83rem !important;
  354. }
  355. .orangeFeiPig{
  356. background-position: -5.33rem -11.83rem !important;
  357. }
  358. .group_hiddenMsg .group_row .col-md-6{
  359. padding-left: 15px !important;
  360. }
  361. .zzz{
  362. margin-top:0.45rem;
  363. }
  364. .nbsp{
  365. margin-top: 0.76rem !important;
  366. }
  367. .tabler>tbody>tr>td{
  368. padding: 0 8px 0 4px;
  369. font-size: 0.25rem;
  370. }
  371. #hiddenBox{
  372. width: 25.5rem !important;
  373. margin-left: -12.75rem !important;
  374. margin-top: -15.2rem !important;
  375. }
  376. #hiddenBox .hiddenBoxTop {
  377. height: 4rem !important;
  378. line-height: 4rem !important;
  379. }
  380. .table tr td span {
  381. font-size: 1.4rem !important;
  382. }
  383. .swiper-container-horizontal>.swiper-pagination-bullets {
  384. bottom: -4px !important;
  385. }
  386. #hiddenBox .hiddenBoxTop div {
  387. font-size: 2rem !important;
  388. }
  389. .col-md-2,.col-md-6{
  390. padding-left: 0 !important;
  391. padding-right: 0 !important;
  392. }
  393. .col-md-2{
  394. text-align: center;
  395. }
  396. .col-md-6{
  397. text-align: left !important;
  398. }
  399. .hbgzsbg {
  400. text-align: center;
  401. }
  402. .dayNumBox .prevBtn .btn-group button {
  403. font-size: 0.3rem !important;
  404. margin-left: 0 !important;
  405. margin-top: -0.1rem !important;
  406. }
  407. .dayNumBox .nextBtn .btn-group button {
  408. font-size: 0.3rem !important;
  409. margin-top: -0.1rem !important;
  410. }
  411. .topBg .btn-group .btn_l {
  412. font-size: 0.41rem !important;
  413. margin-top: -0.1rem !important;
  414. }
  415. .fenmian_dayNumBox .fenmian_nextBtn .btn-group button {
  416. margin-top: -0.1rem !important;
  417. }
  418. .fenmian_dayNumBox .fenmian_prevBtn .btn-group button {
  419. margin-top: -0.1rem !important;
  420. }
  421. #hiddenBox .submit {
  422. font-size: 2rem !important;
  423. }
  424. .iscroller {
  425. height: 9rem !important;
  426. }
  427. .iscroll>.container>.hiddenMsgBox:nth-last-child(1){
  428. margin-bottom: 10px !important;
  429. }
  430. }
  431. @media (device-height:732px) and (-webkit-min-device-pixel-ratio:2){/* 兼容Nexus 6P */
  432. .hiddenMsg>.row>div {
  433. padding-left: 1.8rem !important;
  434. }
  435. .ar_header>.btn-group>.zuo{
  436. margin-top: 0 !important;
  437. font-size: 2rem !important;
  438. }
  439. .topBg .btn-group .fenmian_btn {
  440. font-size: 0.35rem !important;
  441. margin-top: 0 !important;
  442. }
  443. .title .xinZengDuanNai_btn {
  444. font-size: 0.35rem !important;
  445. margin-top: 0 !important;
  446. }
  447. .topBg .btn-group .record_btn {
  448. font-size: 0.35rem !important;
  449. margin-top: 0 !important;
  450. }
  451. .header>.btn-group>.danganshuju_leftbtn{
  452. font-size: 0.35rem !important;
  453. margin-top: 0 !important;
  454. }
  455. #wrap section {
  456. bottom: 1.5rem !important;
  457. }
  458. .pzSearch{
  459. width:12% !important;
  460. }
  461. .group_hiddenMsg .group_row .col-md-6 {
  462. padding-left: 15px !important;
  463. }
  464. .yellowPig{
  465. background-position: -0.56rem -2.52rem !important;
  466. }
  467. .yellowFeiPig{
  468. background-position: -2.91rem -2.55rem !important;
  469. }
  470. .yellowQuanPig{
  471. background-position: -5.33rem -2.55rem !important;
  472. }
  473. .bulePig{
  474. background-position: -0.56rem -4.38rem !important;
  475. }
  476. .buleFeiPig{
  477. background-position: -2.91rem -4.4rem !important;
  478. }
  479. .buleQuanPig{
  480. background-position: -5.33rem -4.4rem !important;
  481. }
  482. .purplePig{
  483. background-position: -0.56rem -6.28rem !important;
  484. }
  485. .purpleFeiPig{
  486. background-position: -2.91rem -6.28rem !important;
  487. }
  488. .purpleQuanPig{
  489. background-position: -5.33rem -6.28rem !important;
  490. }
  491. .pinkPig{
  492. background-position: -0.56rem -8.1rem !important;
  493. }
  494. .pinkQuanPig{
  495. background-position: -2.91rem -8.1rem !important;
  496. }
  497. .cyanPig{
  498. background-position: -0.56rem -9.98rem !important;
  499. }
  500. .cyanFeiPig{
  501. background-position: -2.91rem -9.98rem !important;
  502. }
  503. .cyanQuanPig{
  504. background-position: -5.33rem -9.98rem !important;
  505. }
  506. .orangePuMian{
  507. background-position: -0.56rem -11.85rem !important;
  508. }
  509. .orangePig{
  510. background-position: -2.91rem -11.85rem !important;
  511. }
  512. .orangeFeiPig{
  513. background-position: -5.33rem -11.85rem !important;
  514. }
  515. .tabler>tbody>tr>td{
  516. padding: 0 8px 0 4px;
  517. font-size: 0.25rem;
  518. }
  519. .col-md-2,.col-md-6{
  520. padding-left: 0 !important;
  521. padding-right: 0 !important;
  522. }
  523. .col-md-2{
  524. text-align: center;
  525. }
  526. .col-md-6{
  527. text-align: left !important;
  528. }
  529. .tr1_2 {
  530. width: 7rem !important;
  531. }
  532. .zhuanr {
  533. margin-left: -0.6rem !important;
  534. }
  535. .swiper-container-horizontal>.swiper-pagination-bullets {
  536. bottom: 4px !important;
  537. }
  538. #wrap footer {
  539. height: 1.15rem !important;
  540. line-height: 1.15rem !important;
  541. }
  542. }
  543. @media (device-height:736px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 Plus */
  544. .hiddenMsg>.row>div {
  545. padding-left: 1.2rem !important;
  546. }
  547. .group_hiddenMsg .group_row .col-md-6 {
  548. padding-left: 15px !important;
  549. }
  550. .pzSearch{
  551. width:12% !important;
  552. }
  553. .yellowPig{
  554. background-position: -0.56rem -2.52rem !important;
  555. }
  556. .yellowFeiPig{
  557. background-position: -2.91rem -2.55rem !important;
  558. }
  559. .yellowQuanPig{
  560. background-position: -5.33rem -2.55rem !important;
  561. }
  562. .bulePig{
  563. background-position: -0.56rem -4.38rem !important;
  564. }
  565. .buleFeiPig{
  566. background-position: -2.91rem -4.4rem !important;
  567. }
  568. .buleQuanPig{
  569. background-position: -5.33rem -4.4rem !important;
  570. }
  571. .purplePig{
  572. background-position: -0.56rem -6.28rem !important;
  573. }
  574. .purpleFeiPig{
  575. background-position: -2.91rem -6.28rem !important;
  576. }
  577. .purpleQuanPig{
  578. background-position: -5.33rem -6.28rem !important;
  579. }
  580. .pinkPig{
  581. background-position: -0.56rem -8.1rem !important;
  582. }
  583. .pinkQuanPig{
  584. background-position: -2.91rem -8.1rem !important;
  585. }
  586. .cyanPig{
  587. background-position: -0.56rem -9.98rem !important;
  588. }
  589. .cyanFeiPig{
  590. background-position: -2.91rem -9.98rem !important;
  591. }
  592. .cyanQuanPig{
  593. background-position: -5.33rem -9.98rem !important;
  594. }
  595. .orangePuMian{
  596. background-position: -0.56rem -11.85rem !important;
  597. }
  598. .orangePig{
  599. background-position: -2.91rem -11.85rem !important;
  600. }
  601. .orangeFeiPig{
  602. background-position: -5.33rem -11.85rem !important;
  603. }
  604. .tabler>tbody>tr>td{
  605. padding: 0 8px 0 4px;
  606. font-size: 0.25rem;
  607. }
  608. .swiper-container-horizontal>.swiper-pagination-bullets {
  609. bottom: 4px !important;
  610. }
  611. .tr1_2{
  612. width: 7rem !important;
  613. }
  614. .col-md-2,.col-md-6{
  615. padding-left: 0 !important;
  616. padding-right: 0 !important;
  617. }
  618. .col-md-2{
  619. text-align: center;
  620. }
  621. .col-md-6{
  622. text-align: left !important;
  623. }
  624. .table>tbody>tr>.marginBottom:nth-of-type(4) {
  625. text-align: left !important;
  626. }
  627. .zzz{
  628. margin-top:0.45rem;
  629. }
  630. #hiddenBox .hiddenBoxTop div {
  631. font-size: 2.5rem !important;
  632. }
  633. #hiddenBox {
  634. width: 25.5rem;
  635. margin-left: -12.75rem !important;
  636. margin-top: -14.2rem !important;
  637. }
  638. .table tr td span {
  639. font-size: 1.8rem !important;
  640. }
  641. #hiddenBox .hiddenBoxTop {
  642. height: 6rem !important;
  643. line-height: 6rem !important;
  644. }
  645. #hiddenBox .submit {
  646. font-weight: bold !important;
  647. }
  648. .option{
  649. height: 18.37rem !important;
  650. }
  651. .swiper-container {
  652. height: 18.37rem !important;
  653. }
  654. .topBg .btn-group .btn_l {
  655. font-size: 0.41rem !important;
  656. margin-top: -0.1rem !important;
  657. }
  658. }
  659. @media (device-height:1024px) and (-webkit-min-device-pixel-ratio:2){/* 兼容ipad */
  660. .hiddenMsg>.row>div {
  661. padding-left: 1.2rem !important;
  662. }
  663. .col-md-2,.col-md-6{
  664. padding-left: 0 !important;
  665. padding-right: 0 !important;
  666. }
  667. .col-md-2{
  668. text-align: center;
  669. }
  670. .col-md-6{
  671. text-align: left !important;
  672. }
  673. .yellowPig{
  674. background-position: -0.56rem -2.52rem !important;
  675. }
  676. .yellowFeiPig{
  677. background-position: -2.91rem -2.55rem !important;
  678. }
  679. .yellowQuanPig{
  680. background-position: -5.33rem -2.55rem !important;
  681. }
  682. .bulePig{
  683. background-position: -0.56rem -4.38rem !important;
  684. }
  685. .buleFeiPig{
  686. background-position: -2.91rem -4.4rem !important;
  687. }
  688. .buleQuanPig{
  689. background-position: -5.33rem -4.4rem !important;
  690. }
  691. .purplePig{
  692. background-position: -0.56rem -6.28rem !important;
  693. }
  694. .purpleFeiPig{
  695. background-position: -2.91rem -6.28rem !important;
  696. }
  697. .purpleQuanPig{
  698. background-position: -5.33rem -6.28rem !important;
  699. }
  700. .pinkPig{
  701. background-position: -0.56rem -8.1rem !important;
  702. }
  703. .pinkQuanPig{
  704. background-position: -2.91rem -8.1rem !important;
  705. }
  706. .cyanPig{
  707. background-position: -0.56rem -9.98rem !important;
  708. }
  709. .cyanFeiPig{
  710. background-position: -2.91rem -9.98rem !important;
  711. }
  712. .cyanQuanPig{
  713. background-position: -5.33rem -9.98rem !important;
  714. }
  715. .orangePuMian{
  716. background-position: -0.56rem -11.85rem !important;
  717. }
  718. .orangePig{
  719. background-position: -2.91rem -11.85rem !important;
  720. }
  721. .orangeFeiPig{
  722. background-position: -5.33rem -11.85rem !important;
  723. }
  724. .zzz{
  725. margin-top:0.45rem;
  726. }
  727. }
  728. .container{
  729. width: 100%;
  730. padding-left:0 ;
  731. padding-right:0 ;
  732. }
  733. .header{
  734. width: 100%;
  735. height: 0.71rem;
  736. line-height: 0.71rem;
  737. padding-left:0.3rem ;
  738. }
  739. .topBg{
  740. position: relative;
  741. background: #2285e2;
  742. border: none;
  743. }
  744. .searchBox{
  745. width: 100%;
  746. height: 0.58rem;
  747. position: relative;
  748. margin-top: 0.1rem;
  749. margin-bottom: 0.1rem;
  750. background: #f4f2f3;
  751. }
  752. .glyphicon-search{
  753. position: absolute;
  754. left: 1.5rem;
  755. top: 0.165rem;
  756. z-index: 100;
  757. }
  758. .danganInput{
  759. width: 5rem;
  760. height: 0.58rem;
  761. position: absolute;
  762. left: 50%;
  763. top: 0;
  764. margin-left: -2.5rem;
  765. }
  766. .input-group .form-control{
  767. border-radius: 0.15rem !important;
  768. height: 0.58rem;
  769. background: #2285e2;
  770. text-indent: 1.6rem;
  771. color: #12528f;
  772. }
  773. .finish{
  774. height: 0.71rem;
  775. line-height: 0.71rem;
  776. position: absolute;
  777. top: 0;
  778. right: 0.5rem;
  779. color: #fff;
  780. font-size: 0.26rem;
  781. font-weight: bold;
  782. background: #2285e2;
  783. border: none;
  784. }
  785. .btn-group .btn{
  786. border: none;
  787. background: #2285e2;
  788. color: #fff;
  789. margin-top: -0.1rem;
  790. margin-left: 0.02rem !important;
  791. font-size: 0.41rem;
  792. }
  793. .danganshuju_leftbtn{
  794. margin-top: -0.1rem !important;
  795. }
  796. .scrollr{
  797. width: 100%;
  798. z-index: 999;
  799. overflow: hidden;
  800. position: absolute;
  801. top:2.15rem;
  802. bottom:0;
  803. }
  804. .dangan_scrollr{
  805. width: 100%;
  806. position: absolute;
  807. }
  808. .table1{
  809. margin-bottom: 0;
  810. background: #fff;
  811. font-weight: bold;
  812. }
  813. .table2>tbody>tr>td:nth-of-type(1){
  814. width: 1rem;
  815. }
  816. .table2>tbody>tr>td:nth-of-type(2){
  817. width: 1.8rem;;
  818. }
  819. .table2>tbody>tr>td:nth-of-type(3){
  820. width: 1rem;
  821. }
  822. .table>tbody>tr>td{
  823. border-top: none;
  824. }
  825. .table1>tbody>tr:nth-of-type(1){
  826. height: 0.4rem;
  827. line-height: 0.4rem;
  828. color: #9b9d9c;
  829. font-size: 0.25rem;
  830. }
  831. .table>tbody>tr:nth-of-type(2){
  832. line-height: 1.07rem;
  833. }
  834. .table>tbody>tr>.marginBottom:nth-of-type(3){
  835. width: 2rem;
  836. text-align: left;
  837. color:#2485e4;
  838. }
  839. .table1>tbody>tr>.marginBottom:nth-of-type(3){
  840. text-align: right;
  841. color:#2485e4;
  842. }
  843. .table1>tbody>tr>td:nth-of-type(2){
  844. text-align: right;
  845. }
  846. .table1>tbody>tr>td:nth-of-type(3){
  847. text-align: right;
  848. text-indent: 0.2rem;
  849. }
  850. .table>tbody>tr>.marginBottom:nth-of-type(4){
  851. width: 1rem;
  852. text-align: left;
  853. color:#2485e4;
  854. }
  855. .tr1_1{
  856. width: 6rem;
  857. color: #9b9d9c !important;
  858. }
  859. .tr1_2{
  860. width: 10rem;
  861. color: #9b9d9c !important;
  862. }
  863. .tr1_3{
  864. width: 9rem;
  865. text-align: right;
  866. color: #9b9d9c !important;
  867. }
  868. .tr1_4{
  869. width: 8rem;
  870. text-align: center;
  871. color: #9b9d9c !important;
  872. }
  873. .marginBottom{
  874. vertical-align: middle !important;
  875. }
  876. /*archAdministration*/
  877. #overlay{
  878. background: #000;
  879. filter: alpha(opacity=50); /* IE的透明度 */
  880. opacity: 0.5; /* 透明度 */
  881. position: absolute;
  882. top: 0px;
  883. left: 0px;
  884. width: 100%;
  885. height: 100%;
  886. z-index: 99; /* 此处的图层要大于页面 */
  887. display:none;
  888. }
  889. .ar_header{
  890. width: 100%;
  891. height: 4rem;
  892. line-height: 4rem;
  893. padding-left:1.4rem;
  894. }
  895. .topBg .p{
  896. position: absolute;
  897. left: 50%;
  898. top: 0;
  899. text-align: center;
  900. font-size: 2rem;
  901. color: #fff;
  902. font-weight: bold;
  903. margin-left: -10%;
  904. }
  905. .ar_header>.btn-group>.zuo{
  906. margin-left: 0.31rem !important;
  907. font-size: 2.4rem;
  908. margin-top: -8px;
  909. }
  910. header .right{
  911. margin-top: 1rem;
  912. font-size: 1.5rem !important;
  913. float: right !important;
  914. margin-right: 0.8rem;
  915. }
  916. .ar_seaech{
  917. position: absolute;
  918. left: 0.5rem;
  919. z-index: 100;
  920. }
  921. nav{
  922. width: 100%;
  923. height: 3.4rem;
  924. line-height: 3.4rem;
  925. display: -webkit-flex;
  926. background: #eeeeee;
  927. }
  928. nav .atPrePigHome{
  929. color: #2285e2;
  930. font-size: 1.2rem;
  931. margin-left: 1.5rem;
  932. -webkit-box-flex: 1;
  933. }
  934. nav .atPrestaus{
  935. font-size: 1.2rem;
  936. color: #2285e2;
  937. margin-left: 1.5rem;
  938. -webkit-box-flex: 1;
  939. }
  940. .val1{
  941. border-radius:0.3rem ;
  942. color: #fff;
  943. background: #2285e2;
  944. font-size: 1.2rem;
  945. padding: 0.3rem;
  946. }
  947. .val2{
  948. padding: 0.3rem;
  949. border-radius:0.3rem ;
  950. color: #fff;
  951. background: #2285e2;
  952. font-size: 1.2rem;
  953. }
  954. .zhushe{
  955. display: none;
  956. }
  957. nav .right{
  958. position: fixed;
  959. right: 0.5rem;
  960. margin-top: 0.6rem;
  961. -webkit-box-flex: 1;
  962. font-size: 1rem !important;
  963. float: right !important;
  964. }
  965. .dangan_iscroll{
  966. width: 100%;
  967. overflow: hidden;
  968. background: #eeeeee;
  969. position: absolute;
  970. top:6.4rem;
  971. bottom:4rem;
  972. }
  973. section .container{
  974. width: 100%;
  975. position: absolute;
  976. }
  977. .footerBox{
  978. width: 100%;
  979. height: 4rem;
  980. line-height: 4rem;
  981. position: absolute;
  982. bottom: 0;
  983. border-top: 1px solid #ccc !important;
  984. display: -webkit-box;
  985. -webkit-box-pack: center;
  986. background: #fff;
  987. }
  988. .footerBox>div{
  989. text-align: center;
  990. -webkit-box-flex: 1;
  991. font-size: 2.2rem;
  992. margin:0 1.8rem;
  993. }
  994. .footerBox span{
  995. height: 4rem;
  996. border: 1px solid #ccc !important;
  997. display: inline-block;
  998. }
  999. .footerBox>div.active{
  1000. color: #2285e2;
  1001. border-bottom:2px solid #2285e2 !important;
  1002. }
  1003. .btn-bg{
  1004. background: #fff !important;
  1005. color: #ccc !important;
  1006. }
  1007. .dangan_iscroll>.container>.row{
  1008. display: -webkit-box;
  1009. }
  1010. .hiddenMsgBox .hiddenMsg .row{
  1011. display: -webkit-box;
  1012. }
  1013. .row div{
  1014. -webkit-box-flex: 1;
  1015. }
  1016. .rowll{
  1017. background: #fff;
  1018. padding-left: 1rem;
  1019. margin-top: 10px;
  1020. }
  1021. .iscroll>.container>.rowll:nth-last-child(2){
  1022. margin-bottom: 10px !important;
  1023. }
  1024. .iscroll>.container>.hiddenMsgBox:nth-last-child(1){
  1025. margin-bottom: 10px !important;
  1026. margin-top: -10px;
  1027. }
  1028. .rowll div{
  1029. height: 2rem;
  1030. line-height: 2rem;
  1031. margin-bottom: 1rem;
  1032. margin-top: 1rem;
  1033. text-align: center;
  1034. padding: 0;
  1035. }
  1036. .rowll>div:nth-last-child(1){
  1037. margin-top: 0;
  1038. }
  1039. .hiddenMsgBox{
  1040. display: none;
  1041. }
  1042. .hiddenMsg{
  1043. border-top: 1px solid #ccc;
  1044. padding:0 1rem;
  1045. background: #fff;
  1046. }
  1047. .hiddenMsg>.row>div{
  1048. width: 3rem;
  1049. line-height: 3rem;
  1050. color: #000;
  1051. margin: 0.2rem 0;
  1052. font-size: 1.2rem;
  1053. text-align:left !important;
  1054. white-space: nowrap;
  1055. overflow: hidden;
  1056. text-overflow: ellipsis;
  1057. }
  1058. .dropup .caret{
  1059. border-bottom:8px solid !important;
  1060. }
  1061. .caret{
  1062. border-top: 8px solid;
  1063. border-right: 8px solid transparent;
  1064. border-left: 8px solid transparent;
  1065. }
  1066. .hiddenMsg>div:nth-last-child(1){
  1067. margin-bottom: 1.5rem;
  1068. padding-bottom: 0.3rem;
  1069. }
  1070. .hiddenMsg>div>.dateleft{
  1071. margin-left: 5.5rem;
  1072. }
  1073. .hiddenMsg .row img{
  1074. width: 3rem;
  1075. height: 3rem;
  1076. }
  1077. .hbgzsbg{
  1078. border-radius: 1rem;
  1079. background: #eeeeee;
  1080. white-space: nowrap;
  1081. overflow: hidden;
  1082. text-overflow: ellipsis;
  1083. width: 22% !important;
  1084. }
  1085. #hiddenBox{
  1086. display: none;
  1087. width: 26.5rem;
  1088. position: absolute;
  1089. left: 50%;
  1090. top: 50%;
  1091. margin-left: -13.25rem;
  1092. margin-top: -15.7rem;
  1093. z-index: 9999;
  1094. background: #fff;
  1095. border-radius: 0.5rem;
  1096. }
  1097. .checkboxBox{
  1098. width: 100%;
  1099. overflow: hidden;
  1100. }
  1101. .table{
  1102. margin-bottom: 0;
  1103. }
  1104. tr{
  1105. border: 0px solid transparent !important;
  1106. }
  1107. .table tr td span{
  1108. width:9rem;
  1109. margin-left: 0.8rem;
  1110. font-size: 1.3rem;
  1111. white-space: nowrap;
  1112. overflow: hidden;
  1113. text-overflow: ellipsis;
  1114. display: inline-block;
  1115. }
  1116. #hiddenBox .hiddenBoxTop{
  1117. width: 100%;
  1118. height: 4.5rem;
  1119. text-align: center;
  1120. line-height: 4.5rem;
  1121. border: 1.5px solid #2285e2 !important;
  1122. display: -webkit-box;
  1123. -webkit-box-pack: center;
  1124. }
  1125. .swiper-container{
  1126. padding-bottom: 1rem;
  1127. }
  1128. .swiper-container-horizontal>.swiper-pagination-bullets{
  1129. bottom:0px;
  1130. z-index: 99999999;
  1131. }
  1132. .swiper-pagination-bullet-active{
  1133. background: #c2a6fd;
  1134. }
  1135. #hiddenBox .hiddenBoxTop div{
  1136. width: 50%;
  1137. -webkit-box-flex: 1;
  1138. font-size: 1.6rem;
  1139. color: #2285e2;
  1140. }
  1141. #hiddenBox .hiddenBoxTop .active{
  1142. background: #2285e2;
  1143. color: #fff;
  1144. }
  1145. #hiddenBox .submit{
  1146. width: 100%;
  1147. height: 4rem;
  1148. border: none;
  1149. border-top: 1px solid #ddcdfe !important;
  1150. float: left;
  1151. outline: none;
  1152. font-size: 1.6rem;
  1153. color: #000000;
  1154. }
  1155. /*dataEmployed*/
  1156. .activeFooter{
  1157. color: #2988e4;
  1158. }
  1159. #wrap{
  1160. width: 100%;
  1161. }
  1162. #wrap header{
  1163. width: 100%;
  1164. height: 0.7rem;
  1165. line-height: 0.7rem;
  1166. background: #2285e2;
  1167. }
  1168. #wrap header p{
  1169. margin-bottom: 0;
  1170. text-align: center;
  1171. font-size: 0.34rem;
  1172. color: #fff;
  1173. font-weight: bold;
  1174. }
  1175. #wrap section{
  1176. width: 100%;
  1177. overflow: hidden;
  1178. position: absolute;
  1179. bottom: 1.15rem;
  1180. top: 0.7rem;
  1181. }
  1182. #wrap section .indexContent{
  1183. position: absolute;
  1184. width: 100%;
  1185. height: 100%;
  1186. }
  1187. #wrap section .sectionTop{
  1188. width: 100%;
  1189. height: 62%;
  1190. background: -webkit-linear-gradient(right top, #c2a6fd 30%,#50a8ff 100%);
  1191. overflow: hidden;
  1192. position: absolute;
  1193. }
  1194. #wrap section .sectionBtm{
  1195. width: 100%;
  1196. height: 38%;
  1197. background: #fff;
  1198. padding: 0.05rem 0;
  1199. position: absolute;
  1200. bottom: 0;
  1201. }
  1202. #wrap section .sectionTop .sectionData{
  1203. width: 100%;
  1204. }
  1205. #wrap section .sectionTop .sectionData h2{
  1206. width: 80%;
  1207. height: 1rem;
  1208. line-height: 1.1rem;
  1209. color: #fff;
  1210. margin: 0;
  1211. margin-left: 0.25rem !important;
  1212. }
  1213. #wrap section .sectionTop .sectionData h2 em{
  1214. font-size: 0.5rem;
  1215. }
  1216. #wrap section .sectionTop .sectionData h2 .sm{
  1217. font-size: 0.3rem;
  1218. }
  1219. #wrap section .sectionTop .sectionData h2 .du{
  1220. font-size: 0.3rem;
  1221. }
  1222. #wrap section .sectionTop .sectionData h2 .pigHome{
  1223. font-size: 0.38rem;
  1224. }
  1225. #wrap section .sectionTop .sectionData h3{
  1226. width: 80%;
  1227. height: 0.4rem;
  1228. line-height: 0.4rem;
  1229. color: #fff;
  1230. font-size: 0.28rem;
  1231. margin: 0;
  1232. margin-left: 0.25rem !important;
  1233. }
  1234. #wrap section .sectionTop .sectionData h4{
  1235. width: 80%;
  1236. height: 0.5rem;
  1237. line-height: 0.5rem;
  1238. color: #fff;
  1239. font-size: 0.28rem;
  1240. margin: 0;
  1241. margin-left: 0.25rem !important;
  1242. }
  1243. #hiddenBoxPig{
  1244. width: 90%;
  1245. border-radius:0.12rem;;
  1246. background: #fff;
  1247. z-index: 99;
  1248. padding: 0.15rem 0.15rem 0 0.15rem;
  1249. }
  1250. .hiddenBoxShuJu .hiddenBoxTopShuJu{
  1251. width: 100%;
  1252. height: 1.5rem;
  1253. display: -webkit-box;
  1254. }
  1255. .hiddenBoxShuJu .row{
  1256. margin-left: -4px;
  1257. }
  1258. .hiddenBoxShuJu .hiddenBoxTopShuJu div{
  1259. width: 25%;
  1260. float: left;
  1261. text-align: center;
  1262. vertical-align: middle;
  1263. }
  1264. .hiddenBoxShuJu .hiddenBoxTopShuJu div p{
  1265. width: 100%;
  1266. height: 0.5rem;
  1267. line-height: 0.5rem;
  1268. margin-bottom: 0;
  1269. color: #bfbfbf;
  1270. font-weight: bold;
  1271. }
  1272. .hiddenBoxShuJu .hiddenBoxBtm{
  1273. width: 100%;
  1274. height: 1.5rem;
  1275. }
  1276. .hiddenBoxShuJu .hiddenBoxBtm div{
  1277. width: 25%;
  1278. float: left;
  1279. text-align: center;
  1280. vertical-align: middle;
  1281. }
  1282. .hiddenBoxShuJu .hiddenBoxBtm div img{
  1283. width: 0.831rem;
  1284. height: 0.831rem;
  1285. }
  1286. .hiddenBoxShuJu .hiddenBoxTopShuJu div img {
  1287. width: 0.831rem;
  1288. height: 0.831rem;
  1289. }
  1290. .hiddenBoxShuJu .hiddenBoxBtm div p{
  1291. width: 100%;
  1292. height: 0.5rem;
  1293. line-height: 0.5rem;
  1294. margin-bottom: 0;
  1295. color: #bfbfbf;
  1296. font-weight: bold;
  1297. }
  1298. #wrap footer{
  1299. width: 100%;
  1300. height:1.15rem;;
  1301. line-height: 1.15rem;;
  1302. border-top: 2px solid #e5e5e5;
  1303. background: #f6f6f6;
  1304. position: absolute;
  1305. bottom: 0;
  1306. }
  1307. #wrap footer .container .row{
  1308. display: -webkit-box;
  1309. margin-right: 0;
  1310. margin-left: 0;
  1311. }
  1312. #wrap footer .container .row div{
  1313. width: 25%;
  1314. position: relative;
  1315. }
  1316. #wrap footer .container .row div p{
  1317. height: 0.4rem;
  1318. line-height: 0.1rem;
  1319. text-align: center;
  1320. margin-bottom: 0;
  1321. margin-left: 0.3rem;
  1322. }
  1323. .imgPig{
  1324. width: 40px;
  1325. height: 40px;
  1326. background: url(../img/btnbg.png) no-repeat 0 0px;
  1327. display: inline-block;
  1328. margin-left: 0.2rem;
  1329. background-size:400% ;
  1330. margin-top: 0.05rem;
  1331. }
  1332. .imgdata{
  1333. width: 40px;
  1334. height: 40px;
  1335. background: url(../img/btnbg.png) no-repeat -40px -42px;
  1336. display: inline-block;
  1337. margin-left: 0.18rem;
  1338. background-size:400% ;
  1339. margin-top: 0.05rem;
  1340. }
  1341. .imgbiao{
  1342. width: 40px;
  1343. height: 40px;
  1344. background: url(../img/btnbg.png) no-repeat -85px 4px;
  1345. display: inline-block;
  1346. margin-left: 0.2rem;
  1347. background-size:400% ;
  1348. margin-top: 0.05rem;
  1349. }
  1350. .imgxun{
  1351. width: 40px;
  1352. height: 40px;
  1353. background: url(../img/btnbg.png) no-repeat -124px 0px;
  1354. display: inline-block;
  1355. margin-left: 0.2rem;
  1356. background-size:400% ;
  1357. margin-top: 0.05rem;
  1358. }
  1359. .pig{
  1360. position: absolute;
  1361. bottom: 0;
  1362. left: 0;
  1363. }
  1364. /*weaningRecord*/
  1365. .activetext{
  1366. color:#2285e2 ;
  1367. }
  1368. #fmsg{
  1369. display: none;
  1370. width: 5.5rem;
  1371. height: 3.22rem;
  1372. background: #fff;
  1373. position: fixed;
  1374. left: 50%;
  1375. top: 50%;
  1376. margin-left: -2.75rem;
  1377. margin-top: -1.66rem;
  1378. z-index: 9999;
  1379. border-radius: 0.1rem;
  1380. }
  1381. #fmsg .headerx{
  1382. padding: 0.1rem 0.61rem;
  1383. }
  1384. #fmsg .headerx .val{
  1385. height: 0.5rem;
  1386. line-height: 0.5rem;
  1387. font-size: 0.3rem;
  1388. font-weight: bold;
  1389. text-align: center;
  1390. margin-top: 0.2rem;
  1391. }
  1392. #fmsg .headerx .text{
  1393. height: 0.5rem;
  1394. line-height: 0.5rem;
  1395. font-size: 0.3rem;
  1396. text-align: center;
  1397. margin-top: 0.2rem;
  1398. margin-left: 0.13rem;
  1399. }
  1400. #fmsg .footerboxx{
  1401. width: 100%;
  1402. height: 1rem;
  1403. position: absolute;
  1404. bottom: 0;
  1405. border-top: 1px solid #ccc;
  1406. }
  1407. #fmsg .footerboxx .esc{
  1408. width: 50%;
  1409. height: 1rem;
  1410. border:0;
  1411. border-right: 1px solid #ccc;
  1412. float: left;
  1413. outline: none;
  1414. }
  1415. #fmsg .footerboxx .sbm{
  1416. width: 50%;
  1417. height: 1rem;
  1418. border:0;
  1419. float: left;
  1420. outline: none;
  1421. }
  1422. .content_header{
  1423. width: 100%;
  1424. height: 0.71rem;
  1425. line-height: 0.71rem;
  1426. padding-left:0.3rem ;
  1427. font-weight: bold;
  1428. }
  1429. .topBg .btn-group .btn_l{
  1430. font-size: 0.41rem;
  1431. color: #fff;
  1432. border: none;
  1433. background: #2285e2;
  1434. outline: none;
  1435. margin-top: -0.07rem;
  1436. margin-left: 0.02rem !important;
  1437. }
  1438. .content_header p{
  1439. position: absolute;
  1440. left: 50%;
  1441. top: 0;
  1442. margin-left: -10%;
  1443. height: 0.7rem;
  1444. line-height: 0.7rem;
  1445. font-size: 0.32rem;
  1446. display: inline-block;
  1447. color: #fff;
  1448. margin-bottom: 0;
  1449. }
  1450. .searchBoxx{
  1451. width: 100%;
  1452. height: 0.58rem;
  1453. position: relative;
  1454. margin-top: 0.1rem;
  1455. margin-bottom: 0.1rem;
  1456. background: #f4f2f3;
  1457. }
  1458. .search{
  1459. position: absolute;
  1460. left: 1.5rem;
  1461. top: 0.165rem;
  1462. z-index: 100;
  1463. }
  1464. .inputBox{
  1465. width: 5rem;
  1466. height: 0.58rem;
  1467. position: absolute;
  1468. left: 50%;
  1469. top:0;
  1470. margin-left: -2.5rem;
  1471. }
  1472. .inputBox .inputx{
  1473. border-radius: 0.15rem !important;
  1474. height: 0.58rem;
  1475. background: #2285e2;
  1476. text-indent: 1.6rem;
  1477. color: #12528f;
  1478. }
  1479. .dayNumBox{
  1480. width: 100%;
  1481. height: 0.54rem;
  1482. background: #fff;
  1483. margin-top: 0.2rem;
  1484. position: relative;
  1485. background: #f4f2f3;
  1486. margin-bottom: 0.22rem;
  1487. }
  1488. .prevBtn{
  1489. height: 0.54rem;
  1490. line-height: 0.54rem;
  1491. display: inline-block;
  1492. margin-left: 0.15rem;
  1493. color: #2285e2;
  1494. }
  1495. .nextBtn{
  1496. height: 0.54rem;
  1497. line-height: 0.54rem;
  1498. display: inline-block;
  1499. position: absolute;
  1500. right: 0.15rem;
  1501. color: #2285e2;
  1502. text-align: right;
  1503. }
  1504. .slflag>div{
  1505. font-size: 0.2rem;
  1506. }
  1507. .dayNumBox .prevBtn .btn-group button{
  1508. border: none;
  1509. font-size: 0.3rem;
  1510. background: #f4f2f3;
  1511. color: #2285e2;
  1512. margin-left: 0 !important;
  1513. margin-top: -0.02rem;
  1514. }
  1515. .dayNumBox .nextBtn .btn-group button{
  1516. font-size: 0.3rem;
  1517. color: #2285e2;
  1518. border: none;
  1519. background: #f4f2f3;
  1520. margin-top: -0.02rem;
  1521. }
  1522. .dayNumBox #date,
  1523. .dayNumBox .dateS,
  1524. .dayNumBox .dateE{
  1525. width: 2.2rem;
  1526. height: 0.54rem;
  1527. text-align: center;
  1528. position: absolute;
  1529. left: 50%;
  1530. margin-left: -1.1rem;
  1531. border: none;
  1532. outline: none;
  1533. border-radius: 0.1rem;
  1534. background: #fff;
  1535. -moz-box-shadow:-0.05rem 0.05rem 0.05rem #cbd2dc;
  1536. -webkit-box-shadow: -0.05rem 0.05rem 0.05rem #cbd2dc;
  1537. box-shadow: -0.05rem 0.05rem 0.05rem #cbd2dc;
  1538. color: #2386e3;
  1539. display: inline-block;
  1540. font-size: 0.27rem;
  1541. }
  1542. .iscroller{
  1543. width: 100%;
  1544. position: relative;
  1545. background: #fff;
  1546. overflow: hidden;
  1547. height: 8.9rem;
  1548. }
  1549. .duannai_iscroll{
  1550. width: 100%;
  1551. position: absolute;
  1552. }
  1553. .iscroller .tabler{
  1554. height: 9.1rem;
  1555. }
  1556. .nbsp{
  1557. margin-top: 0.84rem;
  1558. }
  1559. .hbgzsbgg{
  1560. padding-left: 0 !important;
  1561. }
  1562. #duannai_addBtn{
  1563. width: 0.94rem;
  1564. height: 1.25rem;
  1565. background: #c2a6fd;
  1566. position: fixed;
  1567. bottom: 0;
  1568. left: 50%;
  1569. margin-left: -0.47rem;
  1570. border-radius: 0.47rem 0.47rem 0 0;
  1571. }
  1572. #duannai_addBtn span{
  1573. font-size: 0.5rem;
  1574. color: #fff;
  1575. margin-left: 0.2rem;
  1576. margin-top: 0.2rem;
  1577. }
  1578. #duannai_addBtn p{
  1579. margin-left: 0.18rem;
  1580. margin-top: 0.05rem;
  1581. color: #fff;
  1582. font-size: 0.3rem;
  1583. }
  1584. .lisBtn{
  1585. border-radius: 0.1rem;
  1586. color: #fff;
  1587. background: #2285E2;
  1588. text-align: center;
  1589. }
  1590. .duannai_td{
  1591. padding: 8px 4px;
  1592. border-top: none;
  1593. border-bottom: 1px solid #ddd;
  1594. }
  1595. .duannai_td div:nth-of-type(1){
  1596. margin: 0.2rem 0;
  1597. }
  1598. /*parturition*/
  1599. #alert{
  1600. display: none;
  1601. width: 5.5rem;
  1602. height: 3.22rem;
  1603. background: #fff;
  1604. position: fixed;
  1605. left: 50%;
  1606. top: 50%;
  1607. margin-left: -2.75rem;
  1608. margin-top: -1.66rem;
  1609. z-index: 9999;
  1610. border-radius: 0.1rem;
  1611. }
  1612. #alert .headerx{
  1613. padding: 0.1rem 0.61rem;
  1614. }
  1615. #alert .headerx .val{
  1616. height: 0.5rem;
  1617. line-height: 0.5rem;
  1618. font-size: 0.3rem;
  1619. font-weight: bold;
  1620. text-align: center;
  1621. margin-top: 0.4rem;
  1622. }
  1623. #alert .headerx .text{
  1624. height: 0.5rem;
  1625. line-height: 0.5rem;
  1626. font-size: 0.3rem;
  1627. text-align: center;
  1628. margin-top: 0.2rem;
  1629. }
  1630. #alert .footerboxx{
  1631. width: 100%;
  1632. height: 1rem;
  1633. position: absolute;
  1634. bottom: 0;
  1635. border-top: 1px solid #ccc;
  1636. }
  1637. #alert .footerboxx .esc{
  1638. width: 50%;
  1639. height: 1rem;
  1640. border:0;
  1641. border-right: 1px solid #ccc;
  1642. float: left;
  1643. outline: none;
  1644. }
  1645. #alert .footerboxx .sbm{
  1646. width: 50%;
  1647. height: 1rem;
  1648. border:0;
  1649. float: left;
  1650. outline: none;
  1651. }
  1652. .fenmian_header{
  1653. width: 100%;
  1654. height: 0.71rem;
  1655. line-height: 0.71rem;
  1656. padding-left: 0.3rem;
  1657. font-weight: bold;
  1658. }
  1659. .topBg .btn-group .fenmian_btn{
  1660. font-size: 0.41rem;
  1661. color: #fff;
  1662. border: none;
  1663. background: #2285e2;
  1664. outline: none;
  1665. margin-top: -0.1rem;
  1666. margin-left: 0.02rem !important;
  1667. }
  1668. .fenmian_header p{
  1669. position: absolute;
  1670. left: 50%;
  1671. top: 0;
  1672. margin-left: -10%;
  1673. height: 0.71rem;
  1674. line-height: 0.71rem;
  1675. font-size: 0.32rem;
  1676. display: inline-block;
  1677. color: #fff;
  1678. margin-bottom: 0;
  1679. }
  1680. .fenmian_searchBox{
  1681. width: 100%;
  1682. height: 0.58rem;
  1683. position: relative;
  1684. margin-top: 0.1rem;
  1685. margin-bottom: 0.1rem;
  1686. background: #f4f2f3;
  1687. }
  1688. .fenmian_search{
  1689. position: absolute;
  1690. left: 1.5rem;
  1691. top: 0.165rem;
  1692. z-index: 100;
  1693. }
  1694. .fenmian_inputBox{
  1695. width: 5rem;
  1696. height: 0.58rem;
  1697. position: absolute;
  1698. left: 50%;
  1699. top: 0;
  1700. margin-left: -2.5rem;
  1701. }
  1702. .fenmian_inputBox .fenmian_input{
  1703. border-radius: 0.15rem !important;
  1704. height: 0.58rem;
  1705. background: #2285e2;
  1706. text-indent: 1.6rem;
  1707. color: #12528f;
  1708. }
  1709. .fenmian_dayNumBox{
  1710. width: 100%;
  1711. height: 0.54rem;
  1712. background: #fff;
  1713. margin-top: 0.2rem;
  1714. position: relative;
  1715. background: #f4f2f3;
  1716. margin-bottom: 0.1rem;
  1717. }
  1718. .fenmian_prevBtn{
  1719. height: 0.54rem;
  1720. line-height: 0.54rem;
  1721. display: inline-block;
  1722. margin-left: 0.15rem;
  1723. color: #2285e2;
  1724. }
  1725. .fenmian_nextBtn{
  1726. height: 0.54rem;
  1727. line-height: 0.54rem;
  1728. display: inline-block;
  1729. position: absolute;
  1730. right: 0.15rem;
  1731. color: #2285e2;
  1732. text-align: right;
  1733. }
  1734. .fenmian_dayNumBox .fenmian_prevBtn .btn-group button{
  1735. border: none;
  1736. font-size: 0.3rem;
  1737. background: #f4f2f3;
  1738. color: #2285e2;
  1739. margin-left: 0 !important;
  1740. margin-top: 0;
  1741. }
  1742. .fenmian_dayNumBox .fenmian_nextBtn .btn-group button{
  1743. font-size: 0.3rem;
  1744. color: #2285e2;
  1745. border: none;
  1746. background: #f4f2f3;
  1747. margin-top: 0;
  1748. }
  1749. .fenmian_dayNumBox #date,
  1750. .fenmian_dayNumBox .dateS,
  1751. .fenmian_dayNumBox .dateE{
  1752. width: 2.2rem;
  1753. height: 0.54rem;
  1754. text-align: center;
  1755. position: absolute;
  1756. border: none;
  1757. outline: none;
  1758. border-radius: 0.1rem;
  1759. background: #fff;
  1760. -moz-box-shadow: -0.05rem 0.05rem 0.05rem #cbd2dc;
  1761. -webkit-box-shadow: -0.05rem 0.05rem 0.05rem #cbd2dc;
  1762. box-shadow: -0.05rem 0.05rem 0.05rem #cbd2dc;
  1763. color: #2386e3;
  1764. display: inline-block;
  1765. font-size: 0.27rem;
  1766. }
  1767. .fenmian_dayNumBox #date {
  1768. left: 50%;
  1769. margin-left: -1.1rem;
  1770. }
  1771. .dateS{
  1772. left: 13%;
  1773. }
  1774. .dateE{
  1775. right: 13%;
  1776. top: 0.1%;
  1777. }
  1778. .fenge{
  1779. line-height: 0.55rem;
  1780. text-align: center;
  1781. display: block;
  1782. }
  1783. .datetimepicker {
  1784. font-size: 0.4rem;
  1785. }
  1786. #fenmian_addBtn{
  1787. width: 1rem;
  1788. height: 1.5rem;
  1789. background: #c2a6fd;
  1790. position: fixed;
  1791. bottom: 0;
  1792. left: 50%;
  1793. margin-left: -0.5rem;
  1794. border-radius:1.5rem 1.5rem 0 0;
  1795. }
  1796. #fenmian_addBtn span{
  1797. font-size: 0.65rem;
  1798. color: #fff;
  1799. margin-left: 0.17rem;
  1800. margin-top: 0.2rem;
  1801. }
  1802. #fenmian_addBtn p{
  1803. margin-left: 0.17rem;
  1804. color: #fff;
  1805. font-size: 0.35rem;
  1806. }
  1807. .fenmian_iscroll{
  1808. width: 100%;
  1809. position: absolute;
  1810. overflow: hidden;
  1811. background: #fff;
  1812. top:2.2rem;
  1813. bottom:0;
  1814. }
  1815. .fenmian_iscroll .container-fluid{
  1816. width: 100%;
  1817. position: absolute;
  1818. }
  1819. .fenmian_iscroll .container-fluid .row {
  1820. display: -webkit-box;
  1821. margin-top: 0.1rem;
  1822. font-size: 0.25rem;
  1823. }
  1824. .chaochu{
  1825. width:0.6rem;
  1826. white-space: nowrap;
  1827. overflow: hidden;
  1828. text-overflow: ellipsis;
  1829. }
  1830. .col-md-1{
  1831. padding-right: 0;
  1832. padding-left: 10px;
  1833. font-size: 0.22rem;
  1834. }
  1835. .col-md-2,.col-lg-2,.col-xs-1,.col-sm-2{
  1836. padding-right: 0;
  1837. padding-left: 10px;
  1838. }
  1839. .col-xs-3,.col-sm-3,.col-lg-3{
  1840. padding-right: 0 !important;
  1841. padding-left: 0 !important;
  1842. }
  1843. .col-md-12{
  1844. padding-left: 16px;
  1845. margin: 0.2rem 0;
  1846. }
  1847. .borderB>.col-lg-2>span{
  1848. color: #2285e2;
  1849. }
  1850. .borderB>.col-sm-2>span{
  1851. color: #2285e2;
  1852. }
  1853. .borderB>.col-xs-1>span{
  1854. color: #2285e2;
  1855. }
  1856. .borderB>.col-md-2>span{
  1857. color: #2285e2;
  1858. }
  1859. .borderB{
  1860. padding-bottom: 0.2rem;
  1861. border-bottom: 1px solid #ccc;
  1862. }
  1863. .col-md-6{
  1864. padding-right: 1.15rem;
  1865. }
  1866. .fenmian_lisBtn{
  1867. color: #fff;
  1868. border-radius: 0.1rem;
  1869. background: #2285e2;
  1870. position: absolute;
  1871. right: 0.25rem;
  1872. padding: 0 0.1rem;
  1873. font-size: 0.25rem;
  1874. margin-top: 0.2rem;
  1875. }
  1876. /*addWeaning And addParturition*/
  1877. .title{
  1878. width: 100%;
  1879. height: 0.71rem;
  1880. line-height: 0.71rem;
  1881. background-color: #2285e2;
  1882. color: #fff;
  1883. font-size: 0.32rem;
  1884. font-weight: bold;
  1885. }
  1886. .title .xinZengDuanNai_btn{
  1887. font-size: 0.4rem;
  1888. color: #fff;
  1889. border: none;
  1890. background: #2285e2;
  1891. outline: none;
  1892. margin-top: -0.1rem;
  1893. margin-left: 0.32rem !important;
  1894. }
  1895. .title p{
  1896. position: absolute;
  1897. left: 50%;
  1898. top: 0;
  1899. margin-left: -18%;
  1900. height: 0.7rem;
  1901. line-height: 0.7rem;
  1902. font-size: 0.32rem;
  1903. display: inline-block;
  1904. color: #fff;
  1905. margin-bottom: 0;
  1906. }
  1907. .addFmWp_iscroll{
  1908. width: 100%;
  1909. overflow: hidden;
  1910. position: absolute;
  1911. background: #fff;
  1912. top:0.71rem;
  1913. bottom:1.4rem;
  1914. }
  1915. .content{
  1916. width: 100%;
  1917. position: absolute;
  1918. }
  1919. .inputtxt{
  1920. height:0.8rem;
  1921. line-height: 0.8rem;
  1922. color: #262626;
  1923. border-bottom: 0.01rem solid #e2e2e2;
  1924. font-size: 0.28rem;
  1925. }
  1926. .addWeanPartion_p{
  1927. margin-left: 0.4rem;
  1928. font-weight: bold;
  1929. }
  1930. .addWeaning_input{
  1931. width: 3.4rem;
  1932. height: 0.78rem;
  1933. font-size: 0.28rem;
  1934. display: inline-block;
  1935. float: right;
  1936. color:#aaaaaa;
  1937. border: none;
  1938. outline: none;
  1939. background: #fff !important;
  1940. text-align: right;
  1941. margin-right: 0.18rem;
  1942. font-weight: normal;
  1943. }
  1944. .mui-btn-block{
  1945. margin-bottom: 0;
  1946. padding: 0;
  1947. }
  1948. .textIndent1{
  1949. text-indent: 0.5rem;
  1950. }
  1951. .textIndent2{
  1952. text-indent: 0.3rem;
  1953. }
  1954. .textIndent5{
  1955. width: 3rem !important;
  1956. }
  1957. .textIndent6{
  1958. text-indent: 0.3rem;
  1959. }
  1960. .textIndent7{
  1961. text-indent: 0.3rem;
  1962. }
  1963. .textIndent8{
  1964. width: 3rem !important;
  1965. text-indent: 0.3rem;
  1966. }
  1967. #footer{
  1968. width: 100%;
  1969. height: 1.4rem;
  1970. padding: 0.3rem 0;
  1971. background: #fff;
  1972. position: fixed;
  1973. bottom: 0;
  1974. }
  1975. .sub,.subAdd{
  1976. float: left;
  1977. width: 2.4rem;
  1978. height: 0.7rem;
  1979. background-color: #29ce70;
  1980. color: #fff;
  1981. font-size: 0.35rem;
  1982. border-radius: 0.05rem;
  1983. border: none;
  1984. outline: none;
  1985. }
  1986. .sub{
  1987. margin-left: 0.52rem;
  1988. }
  1989. .subAdd{
  1990. margin-left: 0.6rem;
  1991. }
  1992. /*groupOfRecord*/
  1993. .record_header{
  1994. width: 100%;
  1995. height: 0.71rem;
  1996. line-height: 0.71rem;
  1997. padding-left: 0.3rem;
  1998. font-weight: bold;
  1999. }
  2000. .record_header p{
  2001. position: absolute;
  2002. left: 50%;
  2003. top: 0;
  2004. margin-left: -15%;
  2005. height: 0.7rem;
  2006. line-height: 0.7rem;
  2007. font-size: 0.32rem;
  2008. display: inline-block;
  2009. color: #fff;
  2010. margin-bottom: 0;
  2011. }
  2012. .topBg .btn-group .record_btn{
  2013. font-size: 0.41rem;
  2014. color: #fff;
  2015. border: none;
  2016. background: #2285e2;
  2017. outline: none;
  2018. margin-top: -0.1rem;
  2019. margin-left: 0.02rem !important;
  2020. }
  2021. .record_searchBox{
  2022. width: 100%;
  2023. height: 0.58rem;
  2024. position: relative;
  2025. margin-top: 0.1rem;
  2026. margin-bottom: 0.1rem;
  2027. background: #f4f2f3;
  2028. }
  2029. .record_search{
  2030. position: absolute;
  2031. left: 1.5rem;
  2032. top: 0.165rem;
  2033. z-index: 100;
  2034. }
  2035. .record_inputBox{
  2036. width: 5rem;
  2037. height: 0.58rem;
  2038. position: absolute;
  2039. left: 50%;
  2040. top: 0;
  2041. margin-left: -2.5rem;
  2042. }
  2043. .record_inputBox .record_input{
  2044. border-radius: 0.15rem !important;
  2045. height: 0.58rem;
  2046. background: #2285e2;
  2047. text-indent: 1.6rem;
  2048. color: #12528f;
  2049. }
  2050. .group_hiddenMsgBox .group_hiddenMsg .group_row{
  2051. margin-top: 0.1rem;
  2052. }
  2053. .group_iscroll{
  2054. width: 100%;
  2055. overflow: hidden;
  2056. background: #f4f2f3;;
  2057. position: absolute;
  2058. padding: 0 0.3rem;
  2059. top:2.33rem;
  2060. bottom:0;
  2061. }
  2062. .group_iscroll .iscroll_content{
  2063. width: 100%;
  2064. position: absolute;
  2065. }
  2066. .group_iscroll>.iscroll_content>.group_row:nth-last-child(2){
  2067. margin-bottom: 10px;
  2068. }
  2069. .group_iscroll>.iscroll_content>.group_hiddenMsgBox:nth-last-child(1){
  2070. margin-top: -10px;
  2071. margin-bottom: 25px;
  2072. }
  2073. .group_btn{
  2074. background: #fff !important;
  2075. color: #ccc !important;
  2076. border: none;
  2077. }
  2078. .group_row{
  2079. display: -webkit-box;
  2080. height: 0.5rem;
  2081. line-height: 0.5rem;
  2082. font-size: 0.3rem;
  2083. margin-top: 0.1rem;
  2084. }
  2085. .hiddenMsgBox_bom{
  2086. width: 91%;
  2087. display: block;
  2088. border: 0.05rem solid #fff;
  2089. }
  2090. .group_row div{
  2091. -webkit-box-flex: 1;
  2092. color: #454545;
  2093. }
  2094. .group_row div:nth-of-type(1){
  2095. margin-left: 0.1rem;
  2096. }
  2097. .group_row div:nth-of-type(2){
  2098. margin-right: 0.2rem;
  2099. color: #d1d1d1;
  2100. }
  2101. .group_row div:nth-of-type(6){
  2102. margin-right: 0.6rem;
  2103. }
  2104. .btn-group .group_btn{
  2105. font-size: 0;
  2106. }
  2107. .group_dr .group_caret{
  2108. border-bottom: 8px solid !important;
  2109. border-right: 8px solid transparent;
  2110. border-left: 8px solid transparent;
  2111. }
  2112. .group_caret{
  2113. border-top: 8px solid;
  2114. border-right: 8px solid transparent;
  2115. border-left: 8px solid transparent;
  2116. }
  2117. .group_rowll>div:nth-last-child(1){
  2118. margin-top: 0;
  2119. }
  2120. .group_hiddenMsg{
  2121. width: 91%;
  2122. padding:0.2rem 0.15rem 0 0;
  2123. background: #fff;
  2124. margin-top: 0.2rem;
  2125. box-shadow:5px 5px 5px #ccc;
  2126. border-radius: 0.1rem;
  2127. }
  2128. .group_hiddenMsg .group_row div{
  2129. line-height: 0.5rem;
  2130. font-size: 0.2rem;
  2131. color: #646464;
  2132. }
  2133. .stausBox{
  2134. padding-bottom: 0.1rem;
  2135. margin-bottom: 0.1rem;
  2136. }
  2137. .xgmsgbox{
  2138. position: absolute;
  2139. z-index: 999999;
  2140. background: #fff;
  2141. border-radius: 0.15rem;
  2142. left: 50%;
  2143. bottom: 1%;
  2144. margin-left: -2.5rem;
  2145. display: none;
  2146. animation: bottomTop .5s;
  2147. }
  2148. .cententUl>li{
  2149. height: 0.66rem;
  2150. line-height: 0.6rem;
  2151. text-align: center;
  2152. font-size: 0.32rem;
  2153. margin: 0.2rem 1.8rem;
  2154. color: #2285e2;;
  2155. }
  2156. .btmspan{
  2157. height: 0.02rem;
  2158. line-height: 0.02rem;
  2159. background: #ccc;
  2160. display: block;
  2161. }
  2162. @keyframes bottomTop{
  2163. 0%{bottom: -5%;}
  2164. 100%{bottom: 1%;}
  2165. }
  2166. .group_hiddenMsg .group_row .col-md-6{
  2167. padding-right: 0;
  2168. display: flex;
  2169. padding-left: 15px;
  2170. }
  2171. .group_hiddenMsg>.group_row>.col-md-6>span{
  2172. width:1.5rem;
  2173. white-space: nowrap;
  2174. overflow: hidden;
  2175. text-overflow: ellipsis;
  2176. display: inline-block;
  2177. }
  2178. .liuc{
  2179. margin-left: 0.6rem;
  2180. }
  2181. .zhuanr{
  2182. margin-left: -0.58rem;
  2183. }
  2184. .shenhe{
  2185. height: 0.5rem;
  2186. line-height: 0.5rem;
  2187. text-align: center;
  2188. background: #2386e3;
  2189. font-size: 0.3rem;
  2190. color: #fff;
  2191. border-radius: 0.15rem;
  2192. margin-left: 0.8rem;
  2193. float: left;
  2194. padding: 0 0.1rem;
  2195. }
  2196. .ysbt{
  2197. height: 0.5rem;
  2198. line-height: 0.5rem;
  2199. text-align: center;
  2200. font-size: 0.3rem;
  2201. color: #575757;
  2202. border-radius: 0.15rem;
  2203. margin-left: 1rem;
  2204. margin-top: 0.1rem;
  2205. }
  2206. /*productionControl*/
  2207. .productin_iscroll{
  2208. width: 100%;
  2209. overflow: hidden;
  2210. position: absolute;
  2211. top: 0.71rem;
  2212. bottom:0;
  2213. }
  2214. .productin_iscroll_content{
  2215. width: 100%;
  2216. position: absolute;
  2217. }
  2218. #proControl_header{
  2219. width: 100%;
  2220. height: 0.71rem;
  2221. line-height: 0.71rem;
  2222. background: #2285e2;
  2223. font-weight: bold;
  2224. }
  2225. #proControl_header .proControl_btn_group{
  2226. float: left;
  2227. height: 0.71rem;
  2228. }
  2229. #proControl_header .proControl_btn_group .proControl_btn{
  2230. margin-left: 0.4rem !important;
  2231. margin-top: -0.04rem;
  2232. font-size: 0.39rem;
  2233. background: #2285e2;
  2234. border: none;
  2235. color: #fff;
  2236. }
  2237. #proControl_header p{
  2238. float: left;
  2239. font-size: 0.32rem;
  2240. color: #fff;
  2241. position: absolute;
  2242. left: 50%;
  2243. margin-left: -10%;
  2244. height: 0.71rem;
  2245. line-height: 0.71rem;
  2246. display: inline-block;
  2247. }
  2248. #proControl_content{
  2249. width: 100%;
  2250. height: 100%;
  2251. background: #fff;
  2252. overflow: hidden;
  2253. }
  2254. #proControl_content div{
  2255. height:1.6rem;
  2256. border-bottom: 1px solid #b1b1b1;
  2257. padding-left: 0.4rem;
  2258. padding-right: 0.4rem;
  2259. }
  2260. #proControl_content div p{
  2261. height: 0.8rem;
  2262. line-height: 0.8rem;
  2263. padding: 0 0 0.2rem 0;
  2264. color: #8c8c8c;
  2265. font-size: 0.32rem;
  2266. font-weight: bold;
  2267. }
  2268. #proControl_content div span{
  2269. height: 0.6rem;
  2270. line-height: 0.6rem;
  2271. font-size: 0.26rem;
  2272. display: inline-block;
  2273. color: #171717;
  2274. font-weight: 600;
  2275. }
  2276. #proControl_content div span i{
  2277. width: 0.6rem;
  2278. height: 0.4rem;
  2279. display: inline-block;
  2280. vertical-align: middle;
  2281. }
  2282. .yellowPig{
  2283. background-position: -0.56rem -2.52rem ;
  2284. background-repeat: no-repeat;
  2285. background-image: url(../img/zhuanqunpig.png);
  2286. background-size:1200%;
  2287. }
  2288. .yellowFeiPig{
  2289. background-position: -2.91rem -2.55rem ;
  2290. background-repeat: no-repeat;
  2291. background-image: url(../img/zhuanqunpig.png);
  2292. background-size:1200%;
  2293. }
  2294. .yellowQuanPig{
  2295. background-position: -5.33rem -2.55rem;
  2296. background-repeat: no-repeat;
  2297. background-image: url(../img/zhuanqunpig.png);
  2298. background-size:1200%;
  2299. }
  2300. .bulePig{
  2301. background-position: -0.56rem -4.34rem ;
  2302. background-repeat: no-repeat;
  2303. background-image: url(../img/zhuanqunpig.png);
  2304. background-size:1200%;
  2305. }
  2306. .buleFeiPig{
  2307. background-position: -2.91rem -4.4rem ;
  2308. background-repeat: no-repeat;
  2309. background-image: url(../img/zhuanqunpig.png);
  2310. background-size:1200%;
  2311. }
  2312. .buleQuanPig{
  2313. background-position: -5.33rem -4.4rem ;
  2314. background-repeat: no-repeat;
  2315. background-image: url(../img/zhuanqunpig.png);
  2316. background-size:1200%;
  2317. }
  2318. .purplePig{
  2319. background-position: -0.56rem -6.22rem ;
  2320. background-repeat: no-repeat;
  2321. background-image: url(../img/zhuanqunpig.png);
  2322. background-size:1200%;
  2323. }
  2324. .purpleFeiPig{
  2325. background-position: -2.91rem -6.28rem ;
  2326. background-repeat: no-repeat;
  2327. background-image: url(../img/zhuanqunpig.png);
  2328. background-size:1200%;
  2329. }
  2330. .purpleQuanPig{
  2331. background-position: -5.33rem -6.28rem ;
  2332. background-repeat: no-repeat;
  2333. background-image: url(../img/zhuanqunpig.png);
  2334. background-size:1200%;
  2335. }
  2336. .pinkPig{
  2337. background-position: -0.56rem -8rem ;
  2338. background-repeat: no-repeat;
  2339. background-image: url(../img/zhuanqunpig.png);
  2340. background-size:1200%;
  2341. }
  2342. .pinkQuanPig{
  2343. background-position: -2.91rem -8.1rem ;
  2344. background-repeat: no-repeat;
  2345. background-image: url(../img/zhuanqunpig.png);
  2346. background-size:1200%;
  2347. }
  2348. .cyanPig{
  2349. background-position: -0.56rem -9.9rem ;
  2350. background-repeat: no-repeat;
  2351. background-image: url(../img/zhuanqunpig.png);
  2352. background-size:1200%;
  2353. }
  2354. .cyanFeiPig{
  2355. background-position: -2.91rem -9.85rem ;
  2356. background-repeat: no-repeat;
  2357. background-image: url(../img/zhuanqunpig.png);
  2358. background-size:1200%;
  2359. }
  2360. .cyanQuanPig{
  2361. background-position: -5.33rem -10rem ;
  2362. background-repeat: no-repeat;
  2363. background-image: url(../img/zhuanqunpig.png);
  2364. background-size:1200%;
  2365. }
  2366. .orangePuMian{
  2367. background-position: -0.56rem -11.7rem ;
  2368. background-repeat: no-repeat;
  2369. background-image: url(../img/zhuanqunpig.png);
  2370. background-size:1200%;
  2371. }
  2372. .orangePig{
  2373. background-position: -2.91rem -11.92rem ;
  2374. background-repeat: no-repeat;
  2375. background-image: url(../img/zhuanqunpig.png);
  2376. background-size:1200%;
  2377. }
  2378. .orangeFeiPig{
  2379. background-position: -5.33rem -11.92rem ;
  2380. background-repeat: no-repeat;
  2381. background-image: url(../img/zhuanqunpig.png);
  2382. background-size:1200%;
  2383. }
  2384. #proControl_content>div>span:nth-of-type(2){
  2385. position:absolute;
  2386. left: 40%;
  2387. }
  2388. #proControl_content>div>span:nth-of-type(3){
  2389. position:absolute;
  2390. left: 68%;
  2391. }
  2392. .span2{
  2393. margin-left: 0.1rem;
  2394. }
  2395. .span4{
  2396. margin-left: 0;
  2397. }
  2398. .ios .dw .dwbc{
  2399. height: 40px;
  2400. }
  2401. @media screen and (orientation:landscape) {
  2402. @media (device-height:360px) and (-webkit-min-device-pixel-ratio:2){/* 兼容Galaxy S5 */
  2403. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  2404. bottom: -4px !important;
  2405. }
  2406. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  2407. text-align: left !important;
  2408. }
  2409. .col-xs-6,.col-sm-6,.col-lg-6{
  2410. text-align: center !important;
  2411. }
  2412. .zuo {
  2413. font-size: 1rem !important;
  2414. }
  2415. }
  2416. @media (device-height:412px) and (-webkit-min-device-pixel-ratio:2){/* 兼容Nexus 6P */
  2417. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  2418. bottom: -4px !important;
  2419. }
  2420. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  2421. text-align: left !important;
  2422. }
  2423. .col-xs-6,.col-sm-6,.col-lg-6{
  2424. text-align: center !important;
  2425. }
  2426. .zuo {
  2427. font-size: 1rem !important;
  2428. }
  2429. }
  2430. @media (device-height:320px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5 */
  2431. nav {
  2432. height: 2.8rem !important;
  2433. line-height: 2.8rem !important;
  2434. }
  2435. .dangan_iscroll {
  2436. top: 5.6rem !important;
  2437. bottom: 3rem !important;
  2438. }
  2439. .hiddenMsg>.row>div {
  2440. margin: 0.5rem 0 !important;
  2441. line-height: 1.4rem !important;
  2442. }
  2443. .hiddenMsg .row img {
  2444. width: 1.4rem !important;
  2445. height:1.4rem !important;
  2446. }
  2447. .rowll div {
  2448. height: 3rem !important;
  2449. line-height: 3rem !important;
  2450. }
  2451. .footerBox {
  2452. height: 3rem !important;
  2453. line-height: 3rem !important;
  2454. }
  2455. .footerBox>div {
  2456. font-size: 1.5rem !important;
  2457. }
  2458. .footerBox span {
  2459. height: 3rem !important;
  2460. }
  2461. #hiddenBox {
  2462. margin-top: -20% !important;
  2463. }
  2464. #hiddenBox .hiddenBoxTop {
  2465. height: 2.5rem !important;
  2466. line-height: 2.5rem !important;
  2467. }
  2468. #hiddenBox .submit {
  2469. height: 2.5rem !important;
  2470. font-size: 0.8rem !important;
  2471. }
  2472. .ar_header {
  2473. height: 2.8rem !important;
  2474. line-height: 2.8rem !important;
  2475. }
  2476. .topBg .p {
  2477. left: 50%;
  2478. font-size: 2rem !important;
  2479. margin-left: -6%;
  2480. }
  2481. .zuo {
  2482. font-size: 1.8rem !important;
  2483. }
  2484. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  2485. text-align: left !important;
  2486. }
  2487. .col-xs-6,.col-sm-6,.col-lg-6{
  2488. text-align: center !important;
  2489. }
  2490. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  2491. bottom: -4px !important;
  2492. }
  2493. }
  2494. @media (device-height:375px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 */
  2495. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  2496. text-align: left !important;
  2497. }
  2498. .col-xs-6,.col-sm-6,.col-lg-6{
  2499. text-align: center !important;
  2500. }
  2501. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  2502. bottom: -4px !important;
  2503. }
  2504. .ar_header>.btn-group>.zuo{
  2505. margin-left: 0.31rem !important;
  2506. font-size: 1rem !important;
  2507. margin-top: -8px !important;
  2508. }
  2509. #hiddenBox .hiddenBoxTop {
  2510. height: 1.5rem !important;
  2511. line-height: 1.5rem !important;
  2512. }
  2513. #hiddenBox{
  2514. margin-top: -20% !important;
  2515. }
  2516. }
  2517. @media (device-height:414px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 Plus */
  2518. .zuo {
  2519. font-size: 1rem !important;
  2520. }
  2521. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  2522. text-align: left !important;
  2523. }
  2524. .col-xs-6,.col-sm-6,.col-lg-6{
  2525. text-align: center !important;
  2526. }
  2527. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  2528. bottom: -4px !important;
  2529. }
  2530. #hiddenBox{
  2531. margin-top: -20% !important;
  2532. }
  2533. }
  2534. @media (device-height:768px) and (-webkit-min-device-pixel-ratio:2){/* 兼容ipad */
  2535. .zuo {
  2536. font-size: 1rem !important;
  2537. }
  2538. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  2539. text-align: left !important;
  2540. }
  2541. .col-xs-6,.col-sm-6,.col-lg-6{
  2542. text-align: center !important;
  2543. }
  2544. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  2545. bottom: -4px !important;
  2546. }
  2547. #hiddenBox{
  2548. margin-top: -20% !important;
  2549. }
  2550. }
  2551. #wrap header {
  2552. width: 100%;
  2553. height: 0.4rem;
  2554. line-height: 0.4rem;
  2555. background: #2285e2;
  2556. }
  2557. #wrap header p {
  2558. margin-bottom: 0;
  2559. text-align: center;
  2560. font-size: 0.2rem;
  2561. color: #fff;
  2562. font-weight: bold;
  2563. }
  2564. #wrap section {
  2565. width: 100%;
  2566. overflow: hidden;
  2567. position: absolute;
  2568. bottom: 0.5rem;
  2569. top: 0.4rem;
  2570. }
  2571. #hiddenBoxPig {
  2572. padding: 0.08rem 0.15rem 0 0.15rem;
  2573. }
  2574. #wrap footer {
  2575. width: 100%;
  2576. height: 0.5rem;
  2577. line-height: 0.5rem;
  2578. border-top: 2px solid #e5e5e5;
  2579. background: #f6f6f6;
  2580. position: absolute;
  2581. bottom: 0;
  2582. }
  2583. #wrap footer .container .row div p {
  2584. height: 0.4rem;
  2585. line-height: 0.5rem;
  2586. text-align: center;
  2587. margin-bottom: 0;
  2588. margin-left: 0.3rem;
  2589. }
  2590. .imgPig {
  2591. width:30px;
  2592. height: 30px;
  2593. background: url(../img/btnbg.png) no-repeat 0 0px;
  2594. background-size: 430%;
  2595. margin-left: 0.25rem;
  2596. margin-top: 0.02rem;
  2597. }
  2598. .imgdata {
  2599. width:30px;
  2600. height: 30px;
  2601. background: url(../img/btnbg.png) no-repeat -28px 4px ;
  2602. background-size: 372%;
  2603. margin-left: 0.27rem;
  2604. margin-top: 0.02rem;
  2605. }
  2606. .imgbiao {
  2607. width:30px;
  2608. height: 30px;
  2609. background: url(../img/btnbg.png) no-repeat -67px 2px;
  2610. background-size: 426%;
  2611. margin-left: 0.27rem;
  2612. margin-top: 0.02rem;
  2613. }
  2614. .imgxun {
  2615. width:30px;
  2616. height: 30px;
  2617. background: url(../img/btnbg.png) no-repeat -100px 0px;
  2618. background-size: 430%;
  2619. margin-left: 0.27rem;
  2620. margin-top: 0.02rem;
  2621. }
  2622. #wrap section .sectionTop {
  2623. height: 62%;
  2624. position: absolute;
  2625. }
  2626. #wrap section .sectionTop .sectionData h2 {
  2627. height: 0.3rem;
  2628. line-height: 0.3rem;
  2629. }
  2630. #wrap section .sectionTop .sectionData h2 .pigHome {
  2631. font-size: 0.2rem;
  2632. }
  2633. #wrap section .sectionTop .sectionData h2 em {
  2634. font-size: 0.25rem;
  2635. }
  2636. #wrap section .sectionTop .sectionData h2 .sm {
  2637. font-size: 0.2rem;
  2638. }
  2639. #wrap section .sectionTop .sectionData h2 .du {
  2640. font-size: 0.2rem;
  2641. }
  2642. #wrap section .sectionTop .sectionData h3 {
  2643. height: 0.3rem;
  2644. line-height: 0.3rem;
  2645. font-size: 0.16rem;
  2646. }
  2647. #wrap section .sectionTop .sectionData h4 {
  2648. height: 0.3rem;
  2649. line-height: 0.3rem;
  2650. font-size: 0.14rem;
  2651. }
  2652. #wrap section {
  2653. width: 100%;
  2654. overflow: auto;
  2655. position: absolute;
  2656. }
  2657. #wrap section .indexContent{
  2658. position: absolute;
  2659. width: 100%;
  2660. height: 200%;
  2661. }
  2662. #wrap section .sectionBtm {
  2663. height: 38%;
  2664. padding: 0rem 0;
  2665. bottom: 0;
  2666. position: absolute;
  2667. }
  2668. .hiddenBoxShuJu .hiddenBoxTopShuJu {
  2669. width: 100%;
  2670. height: 0.7rem;
  2671. display: -webkit-box;
  2672. }
  2673. .hiddenBoxShuJu .hiddenBoxTopShuJu div img {
  2674. width: 0.35rem;
  2675. height: 0.35rem;
  2676. }
  2677. .hiddenBoxShuJu .hiddenBoxTopShuJu div p {
  2678. height: 0.3rem;
  2679. line-height: 0.3rem;
  2680. }
  2681. .hiddenBoxShuJu .hiddenBoxBtm {
  2682. width: 100%;
  2683. height: 0.7rem;
  2684. }
  2685. .hiddenBoxShuJu .hiddenBoxBtm div img {
  2686. width: 0.35rem;
  2687. height: 0.35rem;
  2688. }
  2689. .ar_header {
  2690. width: 100%;
  2691. height: 1.8rem;
  2692. line-height: 1.8rem;
  2693. padding-left: 1.4rem;
  2694. }
  2695. .ar_header>.btn-group>.zuo{
  2696. margin-left: 0.31rem !important;
  2697. font-size: 1rem !important;
  2698. margin-top: -8px !important;
  2699. }
  2700. .btn-group .btn {
  2701. border: none;
  2702. background: #2285e2;
  2703. color: #fff;
  2704. margin-top: -0.1rem;
  2705. margin-left: 0.02rem !important;
  2706. }
  2707. .col-md-6{
  2708. text-align: left;
  2709. }
  2710. .topBg .p {
  2711. position: absolute;
  2712. left: 50%;
  2713. top: 0;
  2714. text-align: center;
  2715. font-size: 1rem;
  2716. color: #fff;
  2717. font-weight: bold;
  2718. margin-left: -6%;
  2719. }
  2720. header .right {
  2721. margin-top: 0.5rem;
  2722. font-size: 0.8rem !important;
  2723. float: right !important;
  2724. margin-right: 0.8rem;
  2725. }
  2726. #hiddenBox {
  2727. margin-top: -22% !important;
  2728. z-index: 9999;
  2729. }
  2730. #hiddenBox .hiddenBoxTop {
  2731. width: 100%;
  2732. height:1.5rem !important;
  2733. text-align: center;
  2734. line-height: 1.5rem !important;
  2735. border: 1.5px solid #2285e2 !important;
  2736. display: -webkit-box;
  2737. -webkit-box-pack: center;
  2738. }
  2739. #hiddenBox .hiddenBoxTop div {
  2740. width: 50%;
  2741. -webkit-box-flex: 1;
  2742. font-size: 0.7rem !important;
  2743. color: #2285e2;
  2744. }
  2745. .swiper-container {
  2746. padding-bottom: 0.5rem;
  2747. }
  2748. .table tr td span {
  2749. margin-left: 0.8rem;
  2750. font-size: 0.55rem !important;
  2751. }
  2752. #hiddenBox .submit {
  2753. height: 1.5rem;
  2754. font-size: 0.8rem !important;
  2755. }
  2756. nav {
  2757. width: 100%;
  2758. height: 1.8rem;
  2759. line-height: 1.8rem;
  2760. display: -webkit-flex;
  2761. background: #eeeeee;
  2762. }
  2763. nav .atPrePigHome {
  2764. color: #2285e2;
  2765. font-size: 0.6rem;
  2766. margin-left: 1.5rem;
  2767. -webkit-box-flex: 1;
  2768. }
  2769. .val1 {
  2770. border-radius: 0.3rem;
  2771. color: #fff;
  2772. background: #2285e2;
  2773. font-size: 0.6rem;
  2774. padding: 0.3rem;
  2775. }
  2776. nav .atPrestaus {
  2777. font-size: 0.6rem;
  2778. color: #2285e2;
  2779. margin-left: 1.5rem;
  2780. -webkit-box-flex: 1;
  2781. }
  2782. .val2 {
  2783. padding: 0.3rem;
  2784. border-radius: 0.3rem;
  2785. color: #fff;
  2786. background: #2285e2;
  2787. font-size: 0.6rem;
  2788. }
  2789. nav .right {
  2790. position: fixed;
  2791. right: 0.5rem;
  2792. margin-top: 0.35rem;
  2793. -webkit-box-flex: 1;
  2794. font-size: 0.5rem !important;
  2795. float: right !important;
  2796. }
  2797. .dangan_iscroll {
  2798. width: 100%;
  2799. overflow: hidden;
  2800. background: #eeeeee;
  2801. position: absolute;
  2802. top: 3.6rem;
  2803. bottom: 2rem;
  2804. }
  2805. .rowll {
  2806. background: #fff;
  2807. padding-left: 1rem;
  2808. margin-top: 5px;
  2809. }
  2810. .rowll div {
  2811. height: 1.5rem;
  2812. line-height: 1.5rem;
  2813. margin-bottom: 0.3rem;
  2814. margin-top: 0.3rem;
  2815. text-align: center;
  2816. padding: 0;
  2817. }
  2818. .hiddenMsg>.row>div {
  2819. width: 3rem;
  2820. line-height: 1.2rem;
  2821. color: #000;
  2822. margin: 0.2rem 0;
  2823. font-size: 0.6rem;
  2824. text-align: left !important;
  2825. white-space: nowrap;
  2826. overflow: hidden;
  2827. text-overflow: ellipsis;
  2828. }
  2829. .hiddenMsg .row img {
  2830. width: 1.2rem;
  2831. height: 1.2rem;
  2832. }
  2833. .hiddenMsg>.row>.col-md-6 {
  2834. padding-left: 2.8rem !important;
  2835. }
  2836. .hiddenMsg>.row>.col-md-3{
  2837. padding-left: 2.8rem !important;
  2838. }
  2839. .footerBox {
  2840. width: 100%;
  2841. height: 2rem;
  2842. line-height: 2rem;
  2843. position: absolute;
  2844. bottom: 0;
  2845. border-top: 1px solid #ccc !important;
  2846. display: -webkit-box;
  2847. -webkit-box-pack: center;
  2848. background: #fff;
  2849. }
  2850. .footerBox>div {
  2851. text-align: center;
  2852. -webkit-box-flex: 1;
  2853. font-size: 1rem;
  2854. margin: 0 1.8rem;
  2855. }
  2856. .footerBox span {
  2857. height: 2rem;
  2858. border: 1px solid #ccc !important;
  2859. display: inline-block;
  2860. }
  2861. .title {
  2862. width: 100%;
  2863. height: 0.38rem;
  2864. line-height: 0.38rem;
  2865. background-color: #2285e2;
  2866. color: #fff;
  2867. font-weight: bold;
  2868. }
  2869. .title p {
  2870. position: absolute;
  2871. left: 50%;
  2872. top: 0;
  2873. margin-left: -13%;
  2874. height: 0.38rem;
  2875. line-height: 0.38rem;
  2876. font-size: 0.2rem;
  2877. display: inline-block;
  2878. color: #fff;
  2879. margin-bottom: 0;
  2880. }
  2881. .title .xinZengDuanNai_btn {
  2882. font-size: 0.2rem;
  2883. color: #fff;
  2884. border: none;
  2885. background: #2285e2;
  2886. outline: none;
  2887. margin-top: -0.1rem;
  2888. margin-left: 0.32rem !important;
  2889. }
  2890. .addFmWp_iscroll {
  2891. width: 100%;
  2892. overflow: hidden;
  2893. position: absolute;
  2894. background: #fff;
  2895. top: 0.38rem;
  2896. bottom: 0.6rem;
  2897. }
  2898. .inputtxt {
  2899. height: 0.5rem;
  2900. line-height: 0.5rem;
  2901. color: #262626;
  2902. border-bottom: 0.01rem solid #e2e2e2;
  2903. font-size: 0.2rem;
  2904. }
  2905. .addWeaning_input {
  2906. width: 3.4rem;
  2907. height: 0.48rem;
  2908. font-size: 0.2rem;
  2909. display: inline-block;
  2910. float: right;
  2911. color: #aaaaaa;
  2912. border: none;
  2913. outline: none;
  2914. background: #fff !important;
  2915. text-align: right;
  2916. margin-right: 0.18rem;
  2917. font-weight: normal;
  2918. }
  2919. #footer {
  2920. width: 100%;
  2921. height: 0.6rem;
  2922. padding: 0.1rem 0;
  2923. background: #fff;
  2924. position: fixed;
  2925. bottom: 0;
  2926. }
  2927. .sub, .subAdd {
  2928. float: left;
  2929. width: 2.4rem;
  2930. height: 0.4rem;
  2931. background-color: #29ce70;
  2932. color: #fff;
  2933. font-size: 0.2rem;
  2934. border-radius: 0.05rem;
  2935. border: none;
  2936. outline: none;
  2937. }
  2938. .fenmian_header {
  2939. width: 100%;
  2940. height: 0.38rem;
  2941. line-height: 0.35rem;
  2942. padding-left: 0.3rem;
  2943. font-weight: bold;
  2944. }
  2945. .topBg .btn-group .fenmian_btn {
  2946. font-size: 0.2rem;
  2947. color: #fff;
  2948. border: none;
  2949. background: #2285e2;
  2950. outline: none;
  2951. margin-top: -0.1rem;
  2952. margin-left: 0.02rem !important;
  2953. }
  2954. .fenmian_header p {
  2955. position: absolute;
  2956. left: 50%;
  2957. top: 0;
  2958. margin-left: -8%;
  2959. height: 0.38rem;
  2960. line-height: 0.38rem;
  2961. font-size: 0.2rem;
  2962. display: inline-block;
  2963. color: #fff;
  2964. margin-bottom: 0;
  2965. }
  2966. .fenmian_searchBox {
  2967. width: 100%;
  2968. height: 0.3rem;
  2969. position: relative;
  2970. margin-top: 0.1rem;
  2971. margin-bottom: 0.1rem;
  2972. background: #f4f2f3;
  2973. }
  2974. .fenmian_inputBox {
  2975. width: 5rem;
  2976. height: 0.3rem;
  2977. position: absolute;
  2978. left: 50%;
  2979. top: 0;
  2980. margin-left: -2.5rem;
  2981. }
  2982. .fenmian_search {
  2983. position: absolute;
  2984. left: 1.5rem;
  2985. top: 0.08rem;
  2986. z-index: 100;
  2987. }
  2988. .fenmian_inputBox .fenmian_input {
  2989. border-radius: 0.15rem !important;
  2990. height: 0.3rem;
  2991. background: #2285e2;
  2992. text-indent: 1.6rem;
  2993. color: #12528f;
  2994. }
  2995. .fenmian_dayNumBox {
  2996. height: 0.3rem;
  2997. margin-top: 0.1rem;
  2998. }
  2999. .fenmian_prevBtn {
  3000. height: 0.3rem;
  3001. line-height: 0.3rem;
  3002. }
  3003. .fenmian_dayNumBox .fenmian_prevBtn .btn-group button {
  3004. font-size: 0.2rem;
  3005. }
  3006. .fenmian_dayNumBox #date, .fenmian_dayNumBox .dateS, .fenmian_dayNumBox .dateE {
  3007. width: 2.2rem;
  3008. height: 0.3rem;
  3009. font-size: 0.2rem;
  3010. }
  3011. .fenmian_nextBtn {
  3012. height: 0.3rem;
  3013. line-height: 0.3rem;
  3014. }
  3015. .fenmian_dayNumBox .fenmian_nextBtn .btn-group button {
  3016. font-size: 0.2rem;
  3017. }
  3018. .fenmian_iscroll {
  3019. top: 1.3rem;
  3020. bottom: 0;
  3021. }
  3022. .fenmian_iscroll .container-fluid .row {
  3023. font-size: 0.15rem;
  3024. margin-top: 0rem;
  3025. }
  3026. .col-md-12 {
  3027. margin: 0.1rem 0;
  3028. }
  3029. .borderB {
  3030. padding-bottom: 0.1rem;
  3031. }
  3032. .borderB > div {
  3033. font-size: 0.15rem !important;
  3034. }
  3035. .btn-bg{
  3036. margin-top: 0 !important;
  3037. }
  3038. #fenmian_addBtn {
  3039. width: 0.6rem;
  3040. height: 0.8rem;
  3041. background: #c2a6fd;
  3042. position: fixed;
  3043. bottom: 0;
  3044. left: 50%;
  3045. margin-left: -0.3rem;
  3046. border-radius: 1.5rem 1.5rem 0 0;
  3047. }
  3048. #fenmian_addBtn span {
  3049. font-size: 0.4rem;
  3050. color: #fff;
  3051. margin-left: 0.1rem;
  3052. margin-top: 0.1rem;
  3053. }
  3054. #fenmian_addBtn p {
  3055. margin-left: 0.1rem;
  3056. color: #fff;
  3057. font-size: 0.2rem;
  3058. }
  3059. .slflag>div{
  3060. font-size: 0.15rem;
  3061. }
  3062. .header {
  3063. height: 0.38rem;
  3064. line-height: 0.38rem;
  3065. }
  3066. .danganshuju_leftbtn{
  3067. font-size: 0.2rem !important;
  3068. }
  3069. .searchBox {
  3070. height: 0.3rem;
  3071. }
  3072. .danganInput {
  3073. height: 0.3rem;
  3074. }
  3075. .glyphicon-search {
  3076. top: 0.1rem;
  3077. }
  3078. .input-group .form-control {
  3079. height: 0.3rem;
  3080. }
  3081. .table1>tbody>tr>td:nth-of-type(2) {
  3082. text-align: center;
  3083. }
  3084. .table1>tbody>tr>td:nth-of-type(3) {
  3085. text-align: center;
  3086. text-indent: -0.2rem;
  3087. }
  3088. .table1>tbody>tr:nth-of-type(1) {
  3089. height: 0.3rem;
  3090. line-height: 0.3rem;
  3091. font-size: 0.16rem;
  3092. }
  3093. .scrollr {
  3094. top: 1.3rem;
  3095. }
  3096. #proControl_header {
  3097. height: 0.38rem;
  3098. line-height: 0.38rem;
  3099. }
  3100. #proControl_header .proControl_btn_group {
  3101. height: 0.38rem;
  3102. }
  3103. #proControl_header .proControl_btn_group .proControl_btn {
  3104. margin-left: 0.4rem !important;
  3105. margin-top: -0.04rem;
  3106. font-size: 0.2rem;
  3107. }
  3108. #proControl_header p {
  3109. font-size: 0.2rem;
  3110. margin-left: -8%;
  3111. height: 0.38rem;
  3112. line-height: 0.38rem;
  3113. }
  3114. .productin_iscroll {
  3115. top: 0.38rem;
  3116. }
  3117. #proControl_content div {
  3118. height: 0.8rem;
  3119. }
  3120. #proControl_content div p {
  3121. height: 0.4rem;
  3122. line-height: 0.4rem;
  3123. padding: 0 0 0.05rem 0;
  3124. font-size: 0.2rem;
  3125. }
  3126. #proControl_content div span {
  3127. height: 0.3rem;
  3128. line-height: 0.3rem;
  3129. font-size: 0.2rem;
  3130. }
  3131. #proControl_content div span i {
  3132. width: 0.6rem;
  3133. height: 0.28rem;
  3134. }
  3135. .yellowPig {
  3136. background-position: -0.4rem -2.12rem !important;
  3137. background-size: 1000% !important;
  3138. }
  3139. .yellowFeiPig {
  3140. background-position: -2.35rem -2.12rem !important;
  3141. background-size: 1000% !important;
  3142. }
  3143. .bulePig {
  3144. background-position: -0.4rem -3.67rem !important;
  3145. background-size: 1000% !important;
  3146. }
  3147. .buleFeiPig {
  3148. background-position: -2.35rem -3.67rem !important;
  3149. background-size: 1000% !important;
  3150. }
  3151. .purplePig {
  3152. background-position: -0.4rem -5.23rem !important;
  3153. background-size: 1000% !important;
  3154. }
  3155. .purpleFeiPig {
  3156. background-position: -2.35rem -5.23rem !important;
  3157. background-size: 1000% !important;
  3158. }
  3159. .pinkPig {
  3160. background-position: -0.4rem -6.76rem !important;
  3161. background-size: 1000% !important;
  3162. }
  3163. .cyanPig {
  3164. background-position: -0.4rem -8.32rem !important;
  3165. background-size: 1000% !important;
  3166. }
  3167. .cyanFeiPig {
  3168. background-position: -2.35rem -8.36rem !important;
  3169. background-size: 1000% !important;
  3170. }
  3171. .cyanQuanPig {
  3172. background-position: -4.38rem -8.32rem !important;
  3173. background-size: 1000% !important;
  3174. }
  3175. .orangePuMian {
  3176. background-position: -0.4rem -9.88rem !important;
  3177. background-size: 1000% !important;
  3178. }
  3179. .orangePig {
  3180. background-position: -2.35rem -9.92rem !important;
  3181. background-size: 1000% !important;
  3182. }
  3183. .orangeFeiPig {
  3184. background-position: -4.38rem -9.88rem !important;
  3185. background-size: 1000% !important;
  3186. }
  3187. .record_header {
  3188. height: 0.38rem;
  3189. line-height: 0.38rem;
  3190. }
  3191. .record_header p {
  3192. margin-left: -10%;
  3193. height: 0.38rem;
  3194. line-height: 0.38rem;
  3195. font-size: 0.2rem;
  3196. }
  3197. .topBg .btn-group .record_btn {
  3198. font-size: 0.2rem;
  3199. }
  3200. .record_searchBox {
  3201. height: 0.3rem;
  3202. position: relative;
  3203. margin-top: 0.1rem;
  3204. margin-bottom: 0.1rem;
  3205. background: #f4f2f3;
  3206. }
  3207. .record_inputBox {
  3208. height: 0.3rem;
  3209. position: absolute;
  3210. left: 50%;
  3211. top: 0;
  3212. margin-left: -2.5rem;
  3213. }
  3214. .fenge {
  3215. line-height: 0.3rem;
  3216. }
  3217. .group_iscroll {
  3218. padding: 0 0.3rem;
  3219. top: 1.25rem;
  3220. bottom: 0;
  3221. }
  3222. .group_row {
  3223. height: 0.3rem;
  3224. line-height: 0.3rem;
  3225. font-size: 0.2rem;
  3226. margin-top: 0.1rem;
  3227. }
  3228. .group_row>.dropdown_btn>.btn-group>.btn{
  3229. font-size: 0.1rem;
  3230. margin-top: 0;
  3231. }
  3232. .group_hiddenMsg {
  3233. width: 91%;
  3234. padding: 0.1rem 0.1rem 0 0;
  3235. background: #fff;
  3236. margin-top: 0.1rem;
  3237. box-shadow: 5px 5px 5px #ccc;
  3238. }
  3239. .group_iscroll>.iscroll_content>.group_hiddenMsgBox:nth-last-child(1) {
  3240. margin-top: 0;
  3241. margin-bottom: 25px;
  3242. }
  3243. .group_hiddenMsgBox .group_hiddenMsg .group_row {
  3244. margin-top: 0.02rem;
  3245. }
  3246. .group_hiddenMsg .group_row div {
  3247. line-height: 0.3rem;
  3248. font-size: 0.15rem;
  3249. }
  3250. .shenhe {
  3251. height: 0.3rem;
  3252. line-height: 0.3rem;
  3253. font-size: 0.2rem;
  3254. margin-left: 0.8rem;
  3255. padding: 0 0.1rem;
  3256. }
  3257. .ysbt {
  3258. height: 0.3rem;
  3259. line-height: 0.3rem;
  3260. font-size: 0.2rem;
  3261. margin-left: 1rem;
  3262. margin-top: 0.1rem;
  3263. }
  3264. .xgmsgbox {
  3265. z-index: 999999;
  3266. left: 50%;
  3267. bottom: 1%;
  3268. margin-left: -2.2rem;
  3269. display: none;
  3270. animation: bottomTop .5s;
  3271. border-radius: 0.1rem;
  3272. }
  3273. .cententUl>li {
  3274. height: 0.3rem;
  3275. line-height: 0.3rem;
  3276. text-align: center;
  3277. font-size: 0.2rem;
  3278. margin: 0.1rem 1.8rem;
  3279. }
  3280. }