landscape.main.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544
  1. @media screen and (min-device-width: 375px) and (max-device-width: 1280px){
  2. @media (device-height:360px) and (-webkit-min-device-pixel-ratio:2){/*兼容Galaxy S5*/
  3. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  4. bottom: -4px !important;
  5. }
  6. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  7. text-align: left !important;
  8. }
  9. .col-xs-6,.col-sm-6,.col-lg-6{
  10. text-align: center !important;
  11. }
  12. }
  13. @media (device-height:412px) and (-webkit-min-device-pixel-ratio:2){/*兼容Nexus 6P*/
  14. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  15. bottom: -4px !important;
  16. }
  17. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  18. text-align: left !important;
  19. }
  20. .col-xs-6,.col-sm-6,.col-lg-6{
  21. text-align: center !important;
  22. }
  23. }
  24. @media (device-height:320px) and (-webkit-min-device-pixel-ratio:2){/*兼容iphone5*/
  25. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  26. text-align: left !important;
  27. }
  28. .col-xs-6,.col-sm-6,.col-lg-6{
  29. text-align: center !important;
  30. }
  31. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  32. bottom: -4px !important;
  33. }
  34. }
  35. @media (device-height:375px) and (-webkit-min-device-pixel-ratio:2){/*兼容iphone6 */
  36. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  37. text-align: left !important;
  38. }
  39. .col-xs-6,.col-sm-6,.col-lg-6{
  40. text-align: center !important;
  41. }
  42. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  43. bottom: -6px !important;
  44. }
  45. }
  46. @media (device-height:414px) and (-webkit-min-device-pixel-ratio:2){/*兼容iphone6 Plus*/
  47. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  48. text-align: left !important;
  49. }
  50. .col-xs-6,.col-sm-6,.col-lg-6{
  51. text-align: center !important;
  52. }
  53. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  54. bottom: -4px !important;
  55. }
  56. }
  57. @media (device-height:768px) and (-webkit-min-device-pixel-ratio:2){/*兼容ipad*/
  58. .iscroll>.dangan_scrollr>.table2>tbody>tr{
  59. font-size:0.16rem !important;
  60. }
  61. .group_iscroll>.iscroll_content>.group_rowll>.col-md-1{
  62. font-size:0.14rem !important;
  63. margin-right: 0rem;
  64. width: 1.2rem !important;
  65. }
  66. .col-xs-8,.col-sm-8,.col-md-8,.col-lg-8{
  67. text-align: left !important;
  68. }
  69. .col-xs-6,.col-sm-6,.col-lg-6{
  70. text-align: center !important;
  71. }
  72. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  73. bottom: -4px !important;
  74. }
  75. }
  76. *{
  77. padding: 0;
  78. margin: 0;
  79. }
  80. body,html{
  81. height:100%;
  82. width:100%;
  83. overflow:hidden;
  84. }
  85. html{
  86. font-size: 100px;
  87. }
  88. body{
  89. background: #f4f2f3;
  90. font-family: Helvetica,Arial,'华文细黑','微软雅黑';
  91. }
  92. p{
  93. margin-bottom: 0 !important;
  94. }
  95. ul{
  96. list-style: none;
  97. }
  98. a{
  99. text-decoration: none;
  100. }
  101. input{
  102. border: none;
  103. }
  104. input[type=radio], input[type=checkbox]{
  105. margin: 0;
  106. }
  107. #checkboxInput{
  108. visibility: hidden;
  109. }
  110. .checkbox {
  111. width: 0.68rem;
  112. height: 0.28rem;
  113. background: #fff;
  114. margin: -2px 0.32rem;
  115. position: relative;
  116. border-radius: 0.4rem;
  117. border: 2px solid #ddd;
  118. }
  119. .checkbox label {
  120. display: block;
  121. width: 0.25rem;
  122. height: 0.25rem;
  123. border-radius: 50%;
  124. box-shadow: 1px 2px 5px rgba(0,0,0,.4);
  125. -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.4);
  126. -webkit-transition: all .5s ease;
  127. -moz-transition: all .5s ease;
  128. -o-transition: all .5s ease;
  129. -ms-transition: all .5s ease;
  130. transition: all .5s ease;
  131. position: absolute;
  132. top: -1px;
  133. left: 0px;
  134. background: #fff;
  135. }
  136. .checkbox input[type=checkbox]:checked + label {
  137. left: 0.38rem;
  138. }
  139. .chooseDweb>.checkBox>input{
  140. visibility: hidden;
  141. }
  142. .checkBox {
  143. width: 0.2rem;
  144. height: 0.2rem;
  145. background: #ddd;
  146. display: inline-block;
  147. margin-right: 0.2rem;
  148. margin-left: 0.2rem;
  149. border-radius: 100%;
  150. position: relative;
  151. -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  152. -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  153. box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  154. }
  155. .checkBox>label {
  156. display: block;
  157. width: 0.15rem;
  158. height: 0.15rem;
  159. border-radius: 50%;
  160. -webkit-transition: all .5s ease;
  161. -moz-transition: all .5s ease;
  162. -o-transition: all .5s ease;
  163. -ms-transition: all .5s ease;
  164. transition: all .5s ease;
  165. position: absolute;
  166. top: 0.025rem;
  167. left: 0.025rem;
  168. z-index: 1;
  169. background: transparent;
  170. -webkit-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
  171. -moz-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
  172. box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
  173. }
  174. .checkBox>input[type=checkbox]:checked + label {
  175. background: #26ca28;
  176. }
  177. select{
  178. /*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/
  179. border:1px solid #000;
  180. /*很关键:将默认的select选择框样式清除*/
  181. appearance:none;
  182. -moz-appearance:none;
  183. -webkit-appearance:none;
  184. direction: rtl;
  185. }
  186. /*清除ie的默认选择框样式清除,隐藏下拉箭头*/
  187. select::-ms-expand {
  188. display: none;
  189. }
  190. option {
  191. direction: ltr;
  192. }
  193. .swiper-button-prev{
  194. background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%239393FF'%2F%3E%3C%2Fsvg%3E") !important;
  195. }
  196. .swiper-button-next{
  197. background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%239393FF'%2F%3E%3C%2Fsvg%3E") !important;
  198. }
  199. .swiper-button-next, .swiper-button-prev {
  200. margin-top: -32px !important;
  201. }
  202. .swiper-pagination-bullet-active {
  203. opacity: 1;
  204. background: #d3a4ff !important;
  205. }
  206. .swiper-button-next, .swiper-button-prev {
  207. width: 0.52rem !important;
  208. height: 0.26rem !important;
  209. }
  210. .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  211. right: 0.05rem !important;
  212. }
  213. .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  214. left: 0.05rem !important;
  215. }
  216. .swiper-pagination-bullet{
  217. width: 0.12rem !important;
  218. height: 0.12rem !important;
  219. }
  220. .hiddenBoxShuJu>.container{
  221. position: absolute;
  222. }
  223. .container{
  224. width: 100%;
  225. padding-left:0 ;
  226. padding-right:0 ;
  227. }
  228. .hiddenBoxShuJu>.container{
  229. height: 100%;
  230. }
  231. .header{
  232. width: 100%;
  233. height: 0.71rem;
  234. line-height: 0.71rem;
  235. padding-left:0.3rem ;
  236. }
  237. .topBg{
  238. position: relative;
  239. background: #2285e2 !important;
  240. border: none;
  241. }
  242. .searchBox{
  243. width: 100%;
  244. height: 0.58rem;
  245. position: absolute;
  246. background: #f4f2f3;
  247. top: 0.45rem;
  248. }
  249. .glyphicon-search {
  250. position: absolute !important;
  251. left: 1.5rem;
  252. top: 0.08rem !important;
  253. z-index: 100;
  254. font-size: 0.14rem;
  255. }
  256. .danganInput{
  257. width: 5rem;
  258. height: 0.58rem;
  259. position: absolute !important;
  260. left: 50%;
  261. top: 0;
  262. margin-left: -2.5rem;
  263. }
  264. .finishBtn{
  265. height: 0.38rem;
  266. line-height: 0.38rem;
  267. position: absolute;
  268. top: 0;
  269. right: 0.35rem;
  270. color: #fff;
  271. font-size: 0.18rem;
  272. font-weight: bold;
  273. background: #2285e2;
  274. border: none;
  275. outline: none;
  276. }
  277. .danganshuju_leftbtn{
  278. margin-top: -0.1rem !important;
  279. }
  280. .scrollr{
  281. width: 100%;
  282. z-index: 999;
  283. overflow: hidden;
  284. position: absolute;
  285. top: 1.2rem;
  286. bottom:0;
  287. font-size: 0.16rem;
  288. background: #fff;
  289. }
  290. .dangan_scrollr{
  291. width: 100%;
  292. position: absolute;
  293. }
  294. .table1{
  295. margin-bottom: 0;
  296. background: #fff;
  297. font-weight: bold;
  298. position: absolute;
  299. top: 0.82rem;
  300. }
  301. .table2>tbody>tr:nth-child(2n+1){
  302. background: #def;
  303. }
  304. .table2>tbody>tr:nth-child(2n){
  305. background: #ecf5ff;
  306. }
  307. .table2>tbody>tr>td:nth-of-type(1){
  308. width: 39%;
  309. }
  310. .table2>tbody>tr>td:nth-of-type(3){
  311. width: 1rem;
  312. }
  313. .table-striped>>tbody>tr>td{
  314. height: 1.4rem;
  315. line-height: 1.4rem;
  316. }
  317. .table>tbody>tr>td{
  318. border-top: none !important;
  319. }
  320. .swiper-slide>.table>tbody>tr>td{
  321. width: 50%;
  322. display: flex;
  323. -webkit-justify-content: center;
  324. justify-content: center;
  325. float: left;
  326. -webkit-align-items: center;
  327. align-items: center;
  328. }
  329. .table1>tbody>tr:nth-of-type(1){
  330. height: 0.4rem;
  331. line-height: 0.4rem;
  332. color: #9b9d9c;
  333. font-size: 0.25rem;
  334. }
  335. .table>tbody>tr:nth-of-type(2){
  336. line-height: 1.07rem;
  337. }
  338. .table>tbody>tr>.marginBottom:nth-of-type(3){
  339. width: 2rem;
  340. text-align: left;
  341. color:#2485e4;
  342. }
  343. .table1>tbody>tr>.marginBottom:nth-of-type(3){
  344. text-align: right;
  345. color:#2485e4;
  346. }
  347. .table>tbody>tr>.marginBottom:nth-of-type(4){
  348. width: 1rem;
  349. text-align: left;
  350. color:#2485e4;
  351. }
  352. .tr1_1{
  353. width: 6rem;
  354. color: #9b9d9c !important;
  355. }
  356. .tr1_2{
  357. width: 10rem;
  358. color: #9b9d9c !important;
  359. }
  360. .tr1_3{
  361. width: 9rem;
  362. text-align: right;
  363. color: #9b9d9c !important;
  364. }
  365. .tr1_4{
  366. width: 8rem;
  367. text-align: center;
  368. color: #9b9d9c !important;
  369. }
  370. .marginBottom{
  371. vertical-align: middle !important;
  372. }
  373. #overlay{
  374. background: #000;
  375. filter: alpha(opacity=50); /*IE的透明度*/
  376. opacity: 0.5; /*透明度*/
  377. position: absolute;
  378. top: 0px;
  379. left: 0px;
  380. width: 100%;
  381. height: 100%;
  382. z-index: 999; /*此处的图层要大于页面*/
  383. display:none;
  384. }
  385. .ar_seaech{
  386. position: absolute;
  387. z-index: 98;
  388. }
  389. .zhushe{
  390. display: none;
  391. }
  392. .footerBox>div.active{
  393. color: #2285e2;
  394. border-bottom:2px solid #2285e2 !important;
  395. }
  396. .btn-bg{
  397. background: #fff !important;
  398. color: #ccc !important;
  399. }
  400. .dangan_iscroll>.container>.row{
  401. display: -webkit-box;
  402. }
  403. .hiddenMsgBox .hiddenMsg .row{
  404. display: -webkit-box;
  405. }
  406. .row div{
  407. -webkit-box-flex: 1;
  408. }
  409. .iscroll>.container>.rowll:nth-last-child(2){
  410. margin-bottom: 10px !important;
  411. }
  412. .iscroll>.container>.hiddenMsgBox:nth-last-child(1){
  413. margin-bottom: 10px !important;
  414. margin-top: -10px;
  415. }
  416. .rowll>div:nth-last-child(1){
  417. margin-top: 0.1rem;
  418. }
  419. .rowll>.col-md-2>.btn-group{
  420. margin-left: -0.1rem;
  421. height: 0.15rem;
  422. }
  423. .rowll>.col-md-2>.btn-group>.btn-default{
  424. padding: 0;
  425. }
  426. .hiddenMsgBox{
  427. display: none;
  428. }
  429. .hiddenMsg{
  430. border-top: 1px solid #ccc;
  431. padding:0 0.2rem;
  432. background: #fff;
  433. }
  434. .dropup .caret{
  435. border-bottom:0.1rem solid !important;
  436. border-top: 0rem solid !important;
  437. }
  438. .caret{
  439. border-top: 0.1rem solid !important;
  440. border-right: 0.1rem solid transparent !important;
  441. border-left: 0.1rem solid transparent !important;
  442. }
  443. .hiddenMsg>div:nth-last-child(1){
  444. padding-bottom: 0.05rem;
  445. }
  446. .hiddenMsg>div>.dateleft{
  447. margin-left: 5.5rem;
  448. }
  449. .hiddenMsg .row img{
  450. width: 3rem;
  451. height: 3rem;
  452. }
  453. .hbgzsbg{
  454. border-radius: 1rem;
  455. background: #eeeeee;
  456. white-space: nowrap;
  457. overflow: hidden;
  458. text-overflow: ellipsis;
  459. width: 22% !important;
  460. text-align: center;
  461. }
  462. .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  463. bottom: -4px !important;
  464. }
  465. #hiddenBox{
  466. display: none;
  467. width: 6rem;
  468. position: absolute;
  469. left: 50%;
  470. top: 50%;
  471. margin-left: -3rem;
  472. background: #fff;
  473. border-radius: 0.1rem;
  474. margin-top: -1.25rem !important;
  475. z-index: 9999;
  476. }
  477. .checkboxBox{
  478. width: 100%;
  479. overflow: hidden;
  480. }
  481. .table{
  482. margin-bottom: 0 !important;
  483. }
  484. tr{
  485. border: 0px solid transparent !important;
  486. }
  487. .table tr td span{
  488. width:2rem;
  489. white-space: nowrap;
  490. overflow: hidden;
  491. text-overflow: ellipsis;
  492. display: inline-block;
  493. margin-left: 0.5rem;
  494. font-size: 0.16rem;
  495. }
  496. .swiper-container-horizontal>.swiper-pagination-bullets{
  497. z-index: 99999999;
  498. }
  499. .swiper-pagination-bullet-active{
  500. background: #c2a6fd;
  501. }
  502. #hiddenBox .hiddenBoxTop .active{
  503. background: #2285e2;
  504. color: #fff;
  505. }
  506. #hiddenBox .submit{
  507. width: 100%;
  508. height: 0.4rem;
  509. font-size: 0.2rem;
  510. border: none;
  511. border-top: 1px solid #ddcdfe !important;
  512. float: left;
  513. outline: none;
  514. border-radius:0 0 0.1rem 0.1rem;
  515. }
  516. .activeFooter{
  517. color: #2988e4;
  518. }
  519. #wrap{
  520. width: 100%;
  521. }
  522. #wrap section .sectionTop{
  523. width: 100%;
  524. height: 100%;
  525. background: -webkit-linear-gradient(right top, #c2a6fd 30%,#50a8ff 100%);
  526. overflow: hidden;
  527. position: absolute;
  528. }
  529. .col-xs-6,.col-sm-6,.col-md-6,.col-lg-6{
  530. width:50%;
  531. white-space: nowrap;
  532. overflow: hidden;
  533. text-overflow: ellipsis;
  534. }
  535. #wrap section .sectionBtm{
  536. padding: 10px 0 !important;
  537. }
  538. #wrap section .sectionBtm{
  539. width: 98%;
  540. /* width: 2rem; */
  541. background:#fff !important;
  542. /* background: -webkit-linear-gradient(0deg,rgba(255,255,255,1),rgba(255,255,255,0.5),rgba(255,255,255,1)); */
  543. /* height: 2rem; */
  544. height: 45%;
  545. bottom: 11px;
  546. /* bottom: 0.1rem;
  547. left: 0.5rem; */
  548. position: absolute;
  549. border-radius: 0.1rem 0.1rem 0 0 !important;
  550. /* border-radius: 50%; */
  551. margin-left: 1%;
  552. /* box-shadow: 0 0 2px 5px rgba(255, 255, 255, 0.6); */
  553. }
  554. #outerDiv1{
  555. width:2rem;
  556. height:2rem;
  557. border-radius:100%;
  558. position: absolute;
  559. bottom: 0;
  560. }
  561. #outerDiv2{
  562. width:2rem;
  563. height:2rem;
  564. border-radius:100%;
  565. position: absolute;
  566. bottom: 0;
  567. }
  568. #outerDiv3{
  569. width:2rem;
  570. height:2rem;
  571. border-radius:100%;
  572. position: absolute;
  573. bottom: 0;
  574. }
  575. #outerDiv4{
  576. width:2rem;
  577. height:2rem;
  578. border-radius:100%;
  579. position: absolute;
  580. bottom: 0;
  581. }
  582. #zjyuan{
  583. background: rgba(255,255,255,0.2);
  584. width: 0.5rem;
  585. height: 0.5rem;
  586. border-radius: 100%;
  587. position: absolute;
  588. left: 50%;
  589. top: 50%;
  590. z-index: 999;
  591. margin-left: -0.25rem;
  592. margin-top: -0.25rem;
  593. display: flex;
  594. align-items: center;
  595. justify-content: center;
  596. }
  597. #zjyuan>img{
  598. width: 0.4rem;
  599. height: 0.4rem;
  600. }
  601. .xian{
  602. display:block;
  603. width:0.02rem;
  604. height:2rem;
  605. position: absolute;
  606. left: 1rem;
  607. top: 0;
  608. background: -webkit-linear-gradient(right top, #c2a6fd 30%,#50a8ff 100%);
  609. }
  610. .rotate1{
  611. transform: rotate(-23deg);
  612. }
  613. .rotate2{
  614. transform: rotate(23deg);
  615. }
  616. .rotate3{
  617. transform: rotate(68deg);
  618. }
  619. .rotate4{
  620. transform: rotate(112deg);
  621. }
  622. #outerDiv1 div{
  623. position: absolute;
  624. width: 0.35rem;
  625. height: 0.35rem;
  626. }
  627. #outerDiv2 div{
  628. position: absolute;
  629. width: 0.35rem;
  630. height: 0.35rem;
  631. }
  632. #outerDiv3 div{
  633. position: absolute;
  634. width: 0.35rem;
  635. height: 0.35rem;
  636. }
  637. #outerDiv4 div{
  638. position: absolute;
  639. width: 0.35rem;
  640. height: 0.35rem;
  641. }
  642. #m1{
  643. left: 50%;
  644. top: 0.05rem;
  645. margin-left: -0.175rem;
  646. }
  647. #m2{
  648. left: 73%;
  649. top: 0.26rem;
  650. margin-left: -0.08rem;
  651. }
  652. #m3{
  653. left: 64%;
  654. top: 50%;
  655. margin-top: -0.175rem;
  656. margin-left: 0.315rem;
  657. }
  658. #m4{
  659. left: 72%;
  660. top: 1.36rem;
  661. margin-left: -0.055rem;
  662. }
  663. #m5{
  664. left: 50%;
  665. top: 1.55rem;
  666. margin-left: -0.175rem;
  667. }
  668. #m6{
  669. left: 27%;
  670. top: 1.36rem;
  671. margin-left: -0.275rem;
  672. }
  673. #m7{
  674. left: -0.02rem;
  675. top: 50%;
  676. margin-top: -0.175rem;
  677. margin-left: 0.07rem;
  678. }
  679. #m8{
  680. left: 27%;
  681. top: 0.25rem;
  682. margin-left: -0.25rem;
  683. }
  684. #wrap section .sectionTop .sectionData{
  685. width: 100%;
  686. }
  687. #wrap section .sectionTop .sectionData h2{
  688. width: 100%;
  689. height: 0.3rem;
  690. line-height: 0.3rem;
  691. color: #fff;
  692. margin: 0;
  693. margin-left: 0.25rem !important;
  694. }
  695. #wrap section .sectionTop .sectionData h2 em{
  696. font-size: 0.5rem;
  697. }
  698. #wrap section .sectionTop .sectionData h2 .sm{
  699. font-size: 0.3rem;
  700. }
  701. #wrap section .sectionTop .sectionData h2 .du{
  702. font-size: 0.3rem;
  703. }
  704. #wrap section .sectionTop .sectionData h2 .pigHome{
  705. font-size: 0.38rem;
  706. }
  707. #wrap section .sectionTop .sectionData h3{
  708. width: 100%;
  709. height: 0.3rem;
  710. line-height: 0.3rem;
  711. font-size: 0.16rem;
  712. color: #fff;
  713. margin: 0;
  714. margin-left: 0.25rem !important;
  715. }
  716. #wrap section .sectionTop .sectionData h4{
  717. width: 100%;
  718. height: 0.3rem;
  719. line-height: 0.3rem;
  720. font-size: 0.14rem;
  721. color: #fff;
  722. margin: 0;
  723. margin-left: 0.25rem !important;
  724. }
  725. #hiddenBoxPig{
  726. width: 100%;
  727. border-radius:0.12rem;;
  728. background: #fff;
  729. z-index: 99;
  730. }
  731. .hiddenBoxShuJu .hiddenBoxTopShuJu div{
  732. width: 25%;
  733. float: left;
  734. text-align: center;
  735. vertical-align: middle;
  736. }
  737. .hiddenBoxShuJu .hiddenBoxTopShuJu div p{
  738. width: 100%;
  739. /* height: 0.3rem;
  740. line-height: 0.3rem; */
  741. margin-bottom: 0;
  742. color: darkgrey;
  743. font-weight: bold;
  744. font-size: 0.14rem;
  745. }
  746. .hiddenBoxShuJu>.container>.row {
  747. margin-right: 0;
  748. margin-left: 0;
  749. }
  750. .hiddenBoxShuJu .hiddenBoxBtm{
  751. width: 100%;
  752. height: 1.5rem;
  753. }
  754. .hiddenBoxShuJu .hiddenBoxBtm div{
  755. width: 25%;
  756. float: left;
  757. text-align: center;
  758. vertical-align: middle;
  759. }
  760. .hiddenBoxShuJu .hiddenBoxBtm div img{
  761. width: 0.831rem;
  762. height: 0.831rem;
  763. }
  764. .hiddenBoxShuJu .hiddenBoxBtm div p{
  765. width: 100%;
  766. /* height: 0.3rem;
  767. line-height: 0.3rem; */
  768. margin-bottom: 0;
  769. color: #bfbfbf;
  770. font-weight: bold;
  771. font-size: 0.14rem;
  772. }
  773. #wrap footer .container .row{
  774. display: -webkit-box;
  775. margin-right: 0;
  776. margin-left: 0;
  777. }
  778. #wrap footer .container .row div{
  779. width: 25%;
  780. position: relative;
  781. text-align: center;
  782. }
  783. .pig{
  784. position: absolute;
  785. bottom: 0;
  786. left: 0;
  787. }
  788. .activetext{
  789. color:#2285e2 ;
  790. }
  791. #fmsg{
  792. display: none;
  793. width: 5.5rem;
  794. height: 3.22rem;
  795. background: #fff;
  796. position: fixed;
  797. left: 50%;
  798. top: 50%;
  799. margin-left: -2.75rem;
  800. margin-top: -1.66rem;
  801. z-index: 9999;
  802. border-radius: 0.1rem;
  803. }
  804. #fmsg .headerx{
  805. padding: 0.1rem 0.61rem;
  806. }
  807. #fmsg .headerx .val{
  808. height: 0.5rem;
  809. line-height: 0.5rem;
  810. font-size: 0.3rem;
  811. font-weight: bold;
  812. text-align: center;
  813. margin-top: 0.2rem;
  814. }
  815. #fmsg .headerx .text{
  816. height: 0.5rem;
  817. line-height: 0.5rem;
  818. font-size: 0.3rem;
  819. text-align: center;
  820. margin-top: 0.2rem;
  821. margin-left: 0.13rem;
  822. }
  823. #fmsg .footerboxx{
  824. width: 100%;
  825. height: 1rem;
  826. position: absolute;
  827. bottom: 0;
  828. border-top: 1px solid #ccc;
  829. }
  830. #fmsg .footerboxx .esc{
  831. width: 50%;
  832. height: 1rem;
  833. border:0;
  834. border-right: 1px solid #ccc;
  835. float: left;
  836. outline: none;
  837. }
  838. #fmsg .footerboxx .sbm{
  839. width: 50%;
  840. height: 1rem;
  841. border:0;
  842. float: left;
  843. outline: none;
  844. }
  845. .content_header{
  846. width: 100%;
  847. height: 0.71rem;
  848. line-height: 0.71rem;
  849. padding-left:0.3rem ;
  850. font-weight: bold;
  851. }
  852. .topBg .btn-group .btn_l{
  853. font-size: 0.41rem;
  854. color: #fff;
  855. border: none;
  856. background: #2285e2;
  857. outline: none;
  858. margin-top: -0.07rem;
  859. margin-left: 0.02rem !important;
  860. }
  861. .content_header p{
  862. position: absolute;
  863. left: 50%;
  864. top: 0;
  865. margin-left: -10%;
  866. height: 0.7rem;
  867. line-height: 0.7rem;
  868. font-size: 0.32rem;
  869. display: inline-block;
  870. color: #fff;
  871. margin-bottom: 0;
  872. }
  873. .searchBoxx{
  874. width: 100%;
  875. height: 0.58rem;
  876. position: relative;
  877. margin-top: 0.1rem;
  878. margin-bottom: 0.1rem;
  879. background: #f4f2f3;
  880. }
  881. .search{
  882. position: absolute;
  883. left: 1.5rem;
  884. top: 0.165rem;
  885. z-index: 100;
  886. }
  887. .inputBox{
  888. width: 5rem;
  889. height: 0.58rem;
  890. position: absolute;
  891. left: 50%;
  892. top:0;
  893. margin-left: -2.5rem;
  894. }
  895. .inputBox .inputx{
  896. border-radius: 0.15rem !important;
  897. height: 0.58rem;
  898. background: #2285e2;
  899. text-indent: 1.6rem;
  900. color: #12528f;
  901. }
  902. .dayNumBox{
  903. width: 100%;
  904. height: 0.54rem;
  905. background: #fff;
  906. margin-top: 0.2rem;
  907. position: relative;
  908. background: #f4f2f3;
  909. margin-bottom: 0.22rem;
  910. }
  911. .prevBtn{
  912. height: 0.54rem;
  913. line-height: 0.54rem;
  914. display: inline-block;
  915. margin-left: 0.15rem;
  916. color: #2285e2;
  917. }
  918. .nextBtn{
  919. height: 0.54rem;
  920. line-height: 0.54rem;
  921. display: inline-block;
  922. position: absolute;
  923. right: 0.15rem;
  924. color: #2285e2;
  925. text-align: right;
  926. }
  927. .dayNumBox .prevBtn .btn-group button{
  928. border: none;
  929. font-size: 0.3rem;
  930. background: #f4f2f3;
  931. color: #2285e2;
  932. margin-left: 0 !important;
  933. margin-top: -0.02rem;
  934. }
  935. .dayNumBox .nextBtn .btn-group button{
  936. font-size: 0.3rem;
  937. color: #2285e2;
  938. border: none;
  939. background: #f4f2f3;
  940. margin-top: -0.02rem;
  941. }
  942. .dayNumBox #date,
  943. .dayNumBox .dateS,
  944. .dayNumBox .dateE{
  945. width: 2.2rem;
  946. height: 0.54rem;
  947. text-align: center;
  948. position: absolute;
  949. left: 50%;
  950. margin-left: -1.1rem;
  951. border: none;
  952. outline: none;
  953. border-radius: 0.1rem;
  954. background: #fff;
  955. -moz-box-shadow:-0.05rem 0.05rem 0.05rem #cbd2dc;
  956. -webkit-box-shadow: -0.05rem 0.05rem 0.05rem #cbd2dc;
  957. box-shadow: -0.05rem 0.05rem 0.05rem #cbd2dc;
  958. color: #2386e3;
  959. display: inline-block;
  960. font-size: 0.27rem;
  961. }
  962. .iscroller{
  963. width: 100%;
  964. position: relative;
  965. background: #fff;
  966. overflow: hidden;
  967. height: 8.9rem;
  968. }
  969. .duannai_iscroll{
  970. width: 100%;
  971. position: absolute;
  972. }
  973. .iscroller .tabler{
  974. height: 9.1rem;
  975. }
  976. .nbsp{
  977. margin-top: 0.84rem;
  978. }
  979. .hbgzsbgg{
  980. padding-left: 0 !important;
  981. }
  982. .lisBtn{
  983. border-radius: 0.05rem;
  984. color: #fff;
  985. background: #2285E2;
  986. text-align: center;
  987. padding: 0.06rem 0.115rem;
  988. }
  989. .duannai_td{
  990. padding: 8px 4px;
  991. border-top: none;
  992. border-bottom: 1px solid #ddd;
  993. }
  994. .duannai_td div:nth-of-type(1){
  995. margin: 0.2rem 0;
  996. }
  997. #alert{
  998. display: none;
  999. width: 5.5rem;
  1000. height: 3.22rem;
  1001. background: #fff;
  1002. position: absolute;
  1003. left: 50%;
  1004. top: 50%;
  1005. margin-left: -2.75rem;
  1006. margin-top: -1.66rem;
  1007. z-index: 9999;
  1008. border-radius: 0.1rem;
  1009. }
  1010. #alert .headerx{
  1011. padding: 0.1rem 0.61rem;
  1012. }
  1013. #alert .headerx .val{
  1014. height: 0.5rem;
  1015. line-height: 0.5rem;
  1016. font-size: 0.3rem;
  1017. font-weight: bold;
  1018. text-align: center;
  1019. margin-top: 0.4rem;
  1020. }
  1021. #alert .headerx .text{
  1022. height: 0.5rem;
  1023. line-height: 0.5rem;
  1024. font-size: 0.3rem;
  1025. text-align: center;
  1026. margin-top: 0.2rem;
  1027. }
  1028. #alert .footerboxx{
  1029. width: 100%;
  1030. height: 1rem;
  1031. position: absolute;
  1032. bottom: 0;
  1033. border-top: 1px solid #ccc;
  1034. }
  1035. #alert .footerboxx .esc{
  1036. width: 50%;
  1037. height: 1rem;
  1038. border:0;
  1039. border-right: 1px solid #ccc;
  1040. float: left;
  1041. outline: none;
  1042. }
  1043. #alert .footerboxx .sbm{
  1044. width: 50%;
  1045. height: 1rem;
  1046. border:0;
  1047. float: left;
  1048. outline: none;
  1049. }
  1050. .fenmian_dayNumBox{
  1051. width: 100%;
  1052. height: 0.3rem;
  1053. background: #f4f2f3;
  1054. position: absolute;
  1055. top: 0.85rem;
  1056. }
  1057. .fenmian_prevBtn{
  1058. height: 0.3rem;
  1059. line-height: 0.3rem;
  1060. display: inline-block;
  1061. margin-left: 0.15rem;
  1062. color: #2285e2;
  1063. font-size: 0.14rem;
  1064. }
  1065. .fenmian_nextBtn{
  1066. height: 0.3rem;
  1067. line-height: 0.3rem;
  1068. display: inline-block;
  1069. position: absolute;
  1070. right: 0.15rem;
  1071. color: #2285e2;
  1072. text-align: right;
  1073. font-size: 0.14rem;
  1074. }
  1075. .fenmian_dayNumBox .fenmian_prevBtn .btn-group button{
  1076. border: none;
  1077. font-size: 0.3rem;
  1078. background: #f4f2f3;
  1079. color: #2285e2;
  1080. margin-left: 0 !important;
  1081. margin-top: 0;
  1082. line-height: 0.1rem;
  1083. }
  1084. .fenmian_dayNumBox .fenmian_nextBtn .btn-group button{
  1085. font-size: 0.3rem;
  1086. color: #2285e2;
  1087. border: none;
  1088. background: #f4f2f3;
  1089. margin-top: 0;
  1090. line-height: 0.1rem;
  1091. }
  1092. .fenmian_dayNumBox #date,
  1093. .fenmian_dayNumBox .dateS,
  1094. .fenmian_dayNumBox .dateE{
  1095. width: 2.2rem;
  1096. height: 0.3rem;
  1097. font-size: 0.2rem;
  1098. text-align: center;
  1099. position: absolute;
  1100. border: none;
  1101. outline: none;
  1102. border-radius: 0.1rem;
  1103. background: #fff !important;
  1104. -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
  1105. box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
  1106. color: #2386e3;
  1107. display: inline-block;
  1108. -webkit-appearance: none
  1109. }
  1110. .fenmian_dayNumBox #date {
  1111. left: 50%;
  1112. margin-left: -1.1rem;
  1113. }
  1114. .dateS{
  1115. left: 13%;
  1116. }
  1117. .dateE{
  1118. right: 13%;
  1119. top: 0.1%;
  1120. }
  1121. .fenge{
  1122. line-height: 0.3rem;
  1123. text-align: center;
  1124. display: block;
  1125. }
  1126. .datetimepicker {
  1127. font-size: 0.4rem;
  1128. }
  1129. .fenmian_iscroll{
  1130. width: 100%;
  1131. position: absolute;
  1132. overflow: hidden;
  1133. background: #f4f2f3;
  1134. top: 0.84rem;
  1135. bottom: 0;
  1136. }
  1137. .fenmian_iscroll .container-fluid{
  1138. width: 100%;
  1139. position: absolute;
  1140. }
  1141. .fenmian_iscroll .container-fluid .row {
  1142. display: -webkit-box;
  1143. font-size: 0.15rem;
  1144. margin-top: 0rem;
  1145. }
  1146. .chaochu{
  1147. width:0.6rem;
  1148. white-space: nowrap;
  1149. overflow: hidden;
  1150. text-overflow: ellipsis;
  1151. }
  1152. .col-md-1{
  1153. padding-right: 0 !important;
  1154. padding-left: 10px ;
  1155. font-size: 0.16rem !important;
  1156. }
  1157. .col-md-2,.col-lg-2,.col-xs-1,.col-sm-2{
  1158. padding-right: 0;
  1159. padding-left: 10px;
  1160. }
  1161. .col-xs-3,.col-sm-3,.col-lg-3{
  1162. padding-right: 0 !important;
  1163. padding-left: 0 !important;
  1164. }
  1165. .col-md-12{
  1166. padding-left: 16px;
  1167. margin: 0.1rem 0;
  1168. }
  1169. .borderB>.col-lg-2>span{
  1170. color: #2285e2;
  1171. }
  1172. .borderB>.col-sm-2>span{
  1173. color: #2285e2;
  1174. }
  1175. .borderB>.col-xs-1>span{
  1176. color: #2285e2;
  1177. }
  1178. .borderB>.col-md-2>span{
  1179. color: #2285e2;
  1180. }
  1181. .borderB{
  1182. padding-bottom: 0.1rem;
  1183. border-bottom: 1px solid #ccc;
  1184. }
  1185. .fenmian_lisBtn{
  1186. color: #fff;
  1187. border-radius: 0.1rem;
  1188. background: #2285e2;
  1189. position: absolute;
  1190. right: 0.25rem;
  1191. padding: 0 0.1rem;
  1192. font-size: 0.25rem;
  1193. margin-top: 0.2rem;
  1194. }
  1195. .title>.btn-group{
  1196. position: absolute;
  1197. left: 0;
  1198. }
  1199. .content{
  1200. width: 100%;
  1201. position: absolute;
  1202. }
  1203. .addWeanPartion_p{
  1204. margin-left: 0.4rem;
  1205. font-weight: bold;
  1206. }
  1207. .mui-btn-block{
  1208. margin-bottom: 0;
  1209. padding: 0;
  1210. }
  1211. .textIndent1{
  1212. text-indent: 0.5rem;
  1213. }
  1214. .textIndent2{
  1215. text-indent: 0.3rem;
  1216. }
  1217. .textIndent5{
  1218. width: 3rem !important;
  1219. }
  1220. .textIndent6{
  1221. text-indent: 0.3rem;
  1222. }
  1223. .textIndent7{
  1224. text-indent: 0.3rem;
  1225. }
  1226. .textIndent8{
  1227. width: 3rem !important;
  1228. text-indent: 0.3rem;
  1229. }
  1230. .sub{
  1231. margin-left: 0.52rem;
  1232. }
  1233. .subAdd{
  1234. margin-left: 0.6rem;
  1235. }
  1236. .record_header{
  1237. width: 100%;
  1238. height: 0.38rem;
  1239. line-height: 0.38rem;
  1240. font-weight: bold;
  1241. position: absolute;
  1242. top: 0;
  1243. display: flex;
  1244. -webkit-justify-content: center;
  1245. justify-content: center;
  1246. -webkit-align-items: center;
  1247. align-items: center;
  1248. }
  1249. .record_header>.btn-group{
  1250. position: absolute;
  1251. left: 0.3rem;
  1252. }
  1253. .record_header p{
  1254. margin-left: -10%;
  1255. height: 0.38rem;
  1256. line-height: 0.38rem;
  1257. font-size: 0.2rem;
  1258. position: absolute;
  1259. left: 50%;
  1260. top: 0;
  1261. display: inline-block;
  1262. color: #fff;
  1263. margin-bottom: 0;
  1264. }
  1265. .topBg .btn-group .record_btn{
  1266. font-size: 0.35rem;
  1267. height: 0.38rem;
  1268. line-height: 0.32rem;
  1269. color: #fff;
  1270. border: none;
  1271. background: #2285e2;
  1272. outline: none;
  1273. margin-top: -0.06rem;
  1274. margin-left: -0.1rem !important;
  1275. }
  1276. .record_searchBox{
  1277. width: 100%;
  1278. height: 0.3rem;
  1279. background: #f4f2f3;
  1280. display: -webkit-box;
  1281. -webkit-box-pack: center;
  1282. position: absolute;
  1283. top: 0.44rem;
  1284. }
  1285. .record_search{
  1286. position: absolute;
  1287. left: 1.5rem;
  1288. top: 0.08rem;
  1289. z-index: 100;
  1290. }
  1291. .record_inputBox{
  1292. width: 5rem;
  1293. height: 0.3rem;
  1294. }
  1295. .record_inputBox .record_input{
  1296. border-radius: 0.15rem !important;
  1297. height: 0.58rem;
  1298. background: #2285e2;
  1299. text-indent: 1.6rem;
  1300. color: #12528f;
  1301. }
  1302. .group_iscroll{
  1303. width: 100%;
  1304. overflow: hidden;
  1305. background: #f4f2f3;;
  1306. position: absolute;
  1307. padding: 0 0.2rem;
  1308. top: 1.2rem;
  1309. bottom: 0;
  1310. }
  1311. .group_iscroll .iscroll_content{
  1312. width: 94%;
  1313. position: absolute;
  1314. }
  1315. .group_btn{
  1316. background: #fff !important;
  1317. color: #ccc !important;
  1318. border: none;
  1319. }
  1320. .group_row{
  1321. display: -webkit-box;
  1322. height: 0.3rem;
  1323. line-height: 0.3rem;
  1324. font-size: 0.2rem;
  1325. margin-top: 0.1rem;
  1326. }
  1327. .hiddenMsgBox_bom{
  1328. width: 91%;
  1329. display: block;
  1330. border: 0.05rem solid #fff;
  1331. }
  1332. .group_row div{
  1333. -webkit-box-flex: 1;
  1334. color: #454545;
  1335. }
  1336. .group_row div:nth-of-type(1){
  1337. margin-left: 0.1rem;
  1338. }
  1339. .group_row div:nth-of-type(2){
  1340. margin-right: 0.2rem;
  1341. color: #d1d1d1;
  1342. }
  1343. .group_row div:nth-of-type(6){
  1344. margin-right: 0.6rem;
  1345. }
  1346. .btn-group .group_btn{
  1347. font-size: 0;
  1348. }
  1349. .group_rowll>div:nth-last-child(1){
  1350. margin-top: 0;
  1351. }
  1352. .yjt{
  1353. border: none !important;
  1354. outline: none;
  1355. color: #ccc !important;
  1356. font-size: 0.24rem !important;
  1357. height: 0.45rem;
  1358. line-height: 0.4rem !important;
  1359. }
  1360. .group_hiddenMsg{
  1361. width: 100%;
  1362. padding: 0.05rem 0.05rem 0 0;
  1363. background: #fff;
  1364. -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
  1365. box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
  1366. border-radius: 0.1rem;
  1367. margin-top: 10px;
  1368. }
  1369. .fenmian_iscroll>.container-fluid>.group_rowll>.dropdown_btn>.btn-group>.btn-bg{
  1370. margin-top:-0.01rem !important;
  1371. }
  1372. .group_hiddenMsg .group_row div{
  1373. color: #646464;
  1374. line-height: 0.3rem;
  1375. font-size: 0.15rem;
  1376. }
  1377. .stausBox{
  1378. padding-bottom: 0.1rem;
  1379. margin-bottom: 0.1rem;
  1380. }
  1381. .xgmsgbox{
  1382. position: absolute;
  1383. z-index: 999999;
  1384. background: #fff;
  1385. border-radius: 0.15rem;
  1386. left: 50%;
  1387. bottom: 1%;
  1388. margin-left: -2.5rem;
  1389. display: none;
  1390. animation: bottomTop .5s;
  1391. }
  1392. .cententUl>li{
  1393. height: 0.66rem;
  1394. line-height: 0.6rem;
  1395. text-align: center;
  1396. font-size: 0.32rem;
  1397. margin: 0.2rem 1.8rem;
  1398. color: #2285e2;;
  1399. }
  1400. .btmspan{
  1401. height: 0.02rem;
  1402. line-height: 0.02rem;
  1403. background: #ccc;
  1404. display: block;
  1405. }
  1406. @keyframes bottomTop{
  1407. 0%{bottom: -5%;}
  1408. 100%{bottom: 1%;}
  1409. }
  1410. .group_hiddenMsg .group_row .col-md-6{
  1411. padding-right: 0;
  1412. display: flex;
  1413. padding-left: 15px;
  1414. width:50%;
  1415. }
  1416. .group_hiddenMsg>.group_row>.col-md-6>span{
  1417. width:1.5rem;
  1418. white-space: nowrap;
  1419. overflow: hidden;
  1420. text-overflow: ellipsis;
  1421. display: inline-block;
  1422. }
  1423. .liuc{
  1424. margin-left: 0.6rem;
  1425. }
  1426. .zhuanr{
  1427. margin-left: -0.58rem;
  1428. }
  1429. .shenhe{
  1430. height: 0.5rem;
  1431. line-height: 0.5rem;
  1432. text-align: center;
  1433. background: #2386e3;
  1434. font-size: 0.3rem;
  1435. color: #fff;
  1436. border-radius: 0.15rem;
  1437. margin-left: 0.8rem;
  1438. float: left;
  1439. padding: 0 0.1rem;
  1440. }
  1441. .ysbt{
  1442. height: 0.5rem;
  1443. line-height: 0.5rem;
  1444. text-align: center;
  1445. font-size: 0.3rem;
  1446. color: #575757;
  1447. border-radius: 0.15rem;
  1448. margin-left: 1rem;
  1449. margin-top: 0.1rem;
  1450. }
  1451. .productin_iscroll{
  1452. width: 100%;
  1453. overflow: hidden;
  1454. position: absolute;
  1455. top: 0.38rem;
  1456. bottom:0;
  1457. }
  1458. .productin_iscroll_content{
  1459. width: 100%;
  1460. position: absolute;
  1461. }
  1462. #proControl_header{
  1463. width: 100%;
  1464. height: 0.38rem;
  1465. line-height: 0.38rem;
  1466. background: #2285e2;
  1467. font-weight: bold;
  1468. display: flex;
  1469. -webkit-align-items: center;
  1470. align-items: center;
  1471. -webkit-justify-content: center;
  1472. justify-content: center;
  1473. }
  1474. #proControl_header .proControl_btn_group{
  1475. float: left;
  1476. height: 0.38rem;
  1477. position: absolute;
  1478. left: 0;
  1479. }
  1480. #proControl_header .proControl_btn_group .proControl_btn{
  1481. margin-left: 0.2rem !important;
  1482. margin-top: -0.03rem;
  1483. font-size: 0.35rem;
  1484. height: 0.38rem;
  1485. line-height: 0.26rem;
  1486. background: #2285e2;
  1487. border: none;
  1488. color: #fff;
  1489. }
  1490. #proControl_header p{
  1491. font-size: 0.2rem;
  1492. margin-left: -8%;
  1493. height: 0.38rem;
  1494. line-height: 0.38rem;
  1495. float: left;
  1496. color: #fff;
  1497. position: absolute;
  1498. left: 50%;
  1499. display: inline-block;
  1500. }
  1501. #proControl_content{
  1502. width: 100%;
  1503. height: 100%;
  1504. background: #fff;
  1505. overflow: hidden;
  1506. }
  1507. #proControl_content div{
  1508. height: 0.8rem;
  1509. border-bottom: 1px solid #b1b1b1;
  1510. padding-left: 0.4rem;
  1511. padding-right: 0.4rem;
  1512. }
  1513. #proControl_content div p{
  1514. height: 0.4rem;
  1515. line-height: 0.4rem;
  1516. font-size: 0.15rem;
  1517. color: #8c8c8c;
  1518. font-weight: bold;
  1519. display: flex;
  1520. align-items: center;
  1521. }
  1522. #proControl_content div span{
  1523. font-size: 0.15rem;
  1524. color: #171717;
  1525. font-weight: 600;
  1526. display: flex;
  1527. float: left;
  1528. align-items: center;
  1529. justify-content: center;
  1530. }
  1531. #proControl_content div span i{
  1532. width: 0.6rem;
  1533. height: 0.28rem;
  1534. display: inline-block;
  1535. vertical-align: middle;
  1536. }
  1537. .swiper-slide>table>tbody>tr>td{
  1538. padding: 6px !important;
  1539. }
  1540. .yellowPig{
  1541. background-position: -0.4rem -2.12rem;
  1542. background-size: 1000%;
  1543. background-repeat: no-repeat;
  1544. background-image: url(../img/zhuanqunpig.png);
  1545. }
  1546. .yellowFeiPig{
  1547. background-position: -2.35rem -2.12rem ;
  1548. background-size: 1000%;
  1549. background-repeat: no-repeat;
  1550. background-image: url(../img/zhuanqunpig.png);
  1551. }
  1552. .bulePig{
  1553. background-position: -0.4rem -3.67rem;
  1554. background-size: 1000% ;
  1555. background-repeat: no-repeat;
  1556. background-image: url(../img/zhuanqunpig.png);
  1557. }
  1558. .buleFeiPig{
  1559. background-position: -2.35rem -3.67rem;
  1560. background-size: 1000%;
  1561. background-repeat: no-repeat;
  1562. background-image: url(../img/zhuanqunpig.png);
  1563. }
  1564. .purplePig{
  1565. background-position: -0.4rem -5.23rem;
  1566. background-size: 1000%;
  1567. background-repeat: no-repeat;
  1568. background-image: url(../img/zhuanqunpig.png);
  1569. }
  1570. .purpleFeiPig{
  1571. background-position: -2.35rem -5.23rem ;
  1572. background-size: 1000% ;
  1573. background-repeat: no-repeat;
  1574. background-image: url(../img/zhuanqunpig.png);
  1575. }
  1576. .pinkPig{
  1577. background-position: -0.4rem -6.76rem;
  1578. background-size: 1000% ;
  1579. background-repeat: no-repeat;
  1580. background-image: url(../img/zhuanqunpig.png);
  1581. }
  1582. .cyanPig{
  1583. background-position: -0.4rem -8.32rem;
  1584. background-size: 1000%;
  1585. background-repeat: no-repeat;
  1586. background-image: url(../img/zhuanqunpig.png);
  1587. }
  1588. .cyanFeiPig{
  1589. background-position: -2.35rem -8.38rem;
  1590. background-size: 1000%;
  1591. background-repeat: no-repeat;
  1592. background-image: url(../img/zhuanqunpig.png);
  1593. }
  1594. .cyanQuanPig{
  1595. background-position: -4.38rem -8.32rem;
  1596. background-size: 1000%;
  1597. background-repeat: no-repeat;
  1598. background-image: url(../img/zhuanqunpig.png);
  1599. }
  1600. .orangePuMian{
  1601. background-position: -0.4rem -9.88rem ;
  1602. background-size: 1000% ;
  1603. background-repeat: no-repeat;
  1604. background-image: url(../img/zhuanqunpig.png);
  1605. }
  1606. .orangePig{
  1607. background-position: -2.35rem -9.92rem ;
  1608. background-size: 1000% ;
  1609. background-repeat: no-repeat;
  1610. background-image: url(../img/zhuanqunpig.png);
  1611. }
  1612. .orangeFeiPig{
  1613. background-position: -4.38rem -9.88rem ;
  1614. background-size: 1000% ;
  1615. background-repeat: no-repeat;
  1616. background-image: url(../img/zhuanqunpig.png);
  1617. }
  1618. #proControl_content>div>span:nth-of-type(2){
  1619. position:absolute;
  1620. left: 40%;
  1621. }
  1622. #proControl_content>div>span:nth-of-type(3){
  1623. position:absolute;
  1624. left: 68%;
  1625. }
  1626. .span2{
  1627. margin-left: 0.1rem;
  1628. }
  1629. .span4{
  1630. margin-left: 0;
  1631. }
  1632. .ios .dw .dwbc{
  1633. height: 40px;
  1634. }
  1635. #wrap header {
  1636. width: 100%;
  1637. height: 0.38rem;
  1638. line-height: 0.38rem;
  1639. background: #2285e2;
  1640. }
  1641. #wrap header p {
  1642. margin-bottom: 0;
  1643. text-align: center;
  1644. font-size: 0.2rem;
  1645. color: #fff;
  1646. font-weight: bold;
  1647. }
  1648. #wrap section {
  1649. width: 100%;
  1650. overflow: hidden;
  1651. position: absolute;
  1652. bottom: 65px;
  1653. top: 0.377rem;
  1654. }
  1655. #wrap footer {
  1656. width: 100%;
  1657. height: 0.5rem;
  1658. line-height: 0.5rem;
  1659. border-top: 2px solid #e5e5e5;
  1660. background: #f6f6f6;
  1661. position: absolute;
  1662. bottom: 0;
  1663. }
  1664. #wrap footer .container .row div p {
  1665. width: 100%;
  1666. height: 0.4rem;
  1667. line-height: 0.5rem;
  1668. text-align: center;
  1669. margin-bottom: 0;
  1670. font-size: 0.14rem;
  1671. }
  1672. .imgPig {
  1673. width: 0.28rem;
  1674. height: 0.28rem;
  1675. background: url(../img/btnbg.png) no-repeat 0rem 0rem;
  1676. background-size: 430%;
  1677. display: inline-block;
  1678. margin-top: 0.02rem;
  1679. }
  1680. .imgdata {
  1681. width: 0.28rem;
  1682. height: 0.28rem;
  1683. background: url(../img/btnbg.png) no-repeat -0.26rem 0.03rem;
  1684. background-size: 372%;
  1685. display: inline-block;
  1686. margin-top: 0.02rem;
  1687. }
  1688. .imgbiao {
  1689. width: 0.28rem;
  1690. height: 0.28rem;
  1691. background: url(../img/btnbg.png) no-repeat -0.63rem 0.01rem;
  1692. background-size: 426%;
  1693. display: inline-block;
  1694. margin-top: 0.02rem;
  1695. }
  1696. .imgxun {
  1697. width: 0.28rem;
  1698. height: 0.28rem;
  1699. background: url(../img/btnbg.png) no-repeat -0.94rem 0rem;
  1700. background-size: 430%;
  1701. display: inline-block;
  1702. margin-top: 0.02rem;
  1703. }
  1704. #wrap section .sectionTop .sectionData h2 .pigHome {
  1705. font-size: 0.2rem;
  1706. }
  1707. #wrap section .sectionTop .sectionData h2 em {
  1708. font-size: 0.25rem;
  1709. }
  1710. #wrap section .sectionTop .sectionData h2 .sm {
  1711. font-size: 0.2rem;
  1712. }
  1713. #wrap section .sectionTop .sectionData h2 .du {
  1714. font-size: 0.2rem;
  1715. }
  1716. #wrap section .indexContent{
  1717. position: absolute;
  1718. width: 100%;
  1719. height: 100%;
  1720. }
  1721. .hiddenBoxShuJu .hiddenBoxTopShuJu {
  1722. width: 100%;
  1723. height: 50%;
  1724. display: -webkit-flex;
  1725. display: flex;
  1726. -webkit-align-items: center;
  1727. align-items: center;
  1728. -webkit-justify-content: center;
  1729. justify-content: center;
  1730. }
  1731. .hiddenBoxShuJu .hiddenBoxTopShuJu div img {
  1732. width: 0.35rem;
  1733. height: 0.35rem;
  1734. }
  1735. .hiddenBoxShuJu .hiddenBoxBtm {
  1736. width: 100%;
  1737. height: 50%;
  1738. display: -webkit-flex;
  1739. display: flex;
  1740. -webkit-align-items: center;
  1741. align-items: center;
  1742. }
  1743. .hiddenBoxShuJu .hiddenBoxBtm div img {
  1744. width: 0.35rem;
  1745. height: 0.35rem;
  1746. }
  1747. #hiddenBox .hiddenBoxTop {
  1748. height: 0.4rem !important;
  1749. line-height: 0.4rem !important;
  1750. }
  1751. .ar_header>.black {
  1752. position: absolute;
  1753. left: 0;
  1754. }
  1755. .ar_header {
  1756. width: 100%;
  1757. height: 0.38rem;
  1758. line-height: 0.38rem;
  1759. position: absolute;
  1760. top: 0;
  1761. display: flex;
  1762. -webkit-align-items: center;
  1763. align-items: center;
  1764. -webkit-justify-content: center;
  1765. justify-content: center;
  1766. }
  1767. .ar_header>.btn-group>.zuo{
  1768. margin-left: 0.18rem !important;
  1769. font-size: 0.35rem !important;
  1770. margin-top: -0.03rem !important;
  1771. height: 0.38rem;
  1772. line-height: 0.26rem;
  1773. outline: none;
  1774. }
  1775. .btn-group .btn {
  1776. border: none;
  1777. background: #2285e2;
  1778. color: #fff;
  1779. margin-top: -0.15rem;
  1780. }
  1781. .col-md-6{
  1782. text-align: left;
  1783. }
  1784. .topBg .p {
  1785. font-size:0.2rem;
  1786. color: #fff;
  1787. font-weight: bold;
  1788. }
  1789. header .right {
  1790. margin-top: 0.16rem;
  1791. font-size: 0.18rem !important;
  1792. margin-right: 0.08rem;
  1793. position: absolute;
  1794. right: 0;
  1795. top: 0;
  1796. }
  1797. #hiddenBox .hiddenBoxTop {
  1798. width: 100%;
  1799. text-align: center;
  1800. border-bottom: 1.5px solid #2285e2 !important;
  1801. display: -webkit-box;
  1802. -webkit-box-pack: center;
  1803. }
  1804. #hiddenBox .hiddenBoxTop div {
  1805. width: 50%;
  1806. -webkit-box-flex: 1;
  1807. font-size: 0.2rem !important;
  1808. color: #2285e2;
  1809. }
  1810. .hIscroll{
  1811. overflow: hidden;
  1812. background: #c4e1ff;
  1813. border-radius: 0 0 0.1rem 0.1rem;
  1814. }
  1815. .hIscroll>.group_rowll{
  1816. height: 0.2rem;
  1817. line-height: 0.2rem;
  1818. }
  1819. .fenmian_iscroll>.container-fluid>.group_rowll{
  1820. margin-left: 0rem;
  1821. width: 100%;
  1822. background: #c4e1ff;
  1823. }
  1824. .fenmian_iscroll>.container-fluid>.group_rowll>.col-md-1{
  1825. margin-right: 0;
  1826. color: #2285e2;
  1827. font-size: 0.15rem;
  1828. }
  1829. .fenmian_iscroll>.container-fluid>.group_rowll>.col-md-1>span{
  1830. color: #646464;
  1831. }
  1832. .fenmian_iscroll>.container-fluid>.group_rowll>.col-md-5{
  1833. padding-left: 0;
  1834. padding-right: 0;
  1835. }
  1836. .group_iscroll>.iscroll_content>.group_rowll{
  1837. margin-left: 0rem;
  1838. width: 100%;
  1839. background: #c4e1ff;
  1840. border-radius: 0.1rem;
  1841. }
  1842. .group_iscroll>.iscroll_content>.group_rowll>.col-md-5{
  1843. padding-left: 0;
  1844. font-size: 0.15rem;
  1845. }
  1846. .group_iscroll>.iscroll_content>.group_rowll>.col-md-1{
  1847. margin-right: 0;
  1848. color: #2285e2;
  1849. font-size: 0.15rem;
  1850. }
  1851. .group_iscroll>.iscroll_content>.group_rowll>.col-md-1>span{
  1852. color: #646464;
  1853. }
  1854. .group_iscroll>.iscroll_content>.group_rowll>.dropdown_btn{
  1855. margin-right: 0;
  1856. }
  1857. .hIscroll>.group_rowll{
  1858. font-size: 0.15rem !important;
  1859. margin-top: 0px !important;
  1860. }
  1861. .hIscroll>.group_rowll>.col-xs-1>span{
  1862. color: #646464;
  1863. }
  1864. .swiper-container {
  1865. padding-bottom: 0.1rem;
  1866. }
  1867. nav {
  1868. width: 100%;
  1869. height: 0.4rem;
  1870. line-height: 0.4rem;
  1871. display: -webkit-flex;
  1872. background: #eeeeee;
  1873. position: absolute;
  1874. top: 0.38rem;
  1875. }
  1876. nav .atPrePigHome {
  1877. color: #2285e2;
  1878. font-size: 0.16rem;
  1879. margin-left: 0.2rem;
  1880. -webkit-box-flex: 1;
  1881. }
  1882. .val1 {
  1883. border-radius: 0.1rem;
  1884. color: #fff;
  1885. background: #2285e2;
  1886. font-size: 0.16rem;
  1887. padding: 0.05rem;
  1888. }
  1889. nav .atPrestaus {
  1890. font-size: 0.16rem;
  1891. color: #2285e2;
  1892. margin-left:0.2rem;
  1893. -webkit-box-flex: 1;
  1894. }
  1895. .val2 {
  1896. padding: 0.05rem;
  1897. border-radius: 0.1rem;
  1898. color: #fff;
  1899. background: #2285e2;
  1900. font-size: 0.16rem;
  1901. }
  1902. nav .right {
  1903. position: absolute;
  1904. right: 0.085rem;
  1905. margin-top: 0.21rem;
  1906. -webkit-box-flex: 1;
  1907. font-size: 0.1rem !important;
  1908. float: right !important;
  1909. }
  1910. .dangan_iscroll {
  1911. width: 100%;
  1912. overflow: hidden;
  1913. background: #eeeeee;
  1914. position: absolute;
  1915. top: 0.78rem;
  1916. bottom: 0.5rem;
  1917. }
  1918. .rowll {
  1919. background: #fff;
  1920. padding-left: 0.1rem;
  1921. margin-top: 5px;
  1922. }
  1923. .rowll div {
  1924. height: 0.25rem;
  1925. line-height: 0.25rem;
  1926. margin-bottom: 0.1rem;
  1927. margin-top: 0.1rem;
  1928. text-align: center;
  1929. padding: 0;
  1930. font-size: 0.2rem;
  1931. }
  1932. .hiddenMsg>.row>div {
  1933. width: 0rem;
  1934. line-height: 0.2rem;
  1935. color: #000;
  1936. margin: 0.1rem 0;
  1937. font-size: 0.2rem;
  1938. white-space: nowrap;
  1939. overflow: hidden;
  1940. text-overflow: ellipsis;
  1941. }
  1942. .hiddenMsg>.row>.col-md-3 {
  1943. line-height: 0.4rem;
  1944. }
  1945. .hiddenMsg .row img {
  1946. width: 0.4rem;
  1947. height: 0.4rem;
  1948. }
  1949. .container>.rowll>.dropdownBtn{
  1950. height:0.45rem !important;
  1951. margin: 0 !important;
  1952. }
  1953. .footerBox {
  1954. width: 100%;
  1955. height: 0.5rem;
  1956. line-height: 0.5rem;
  1957. position: absolute;
  1958. bottom: 0;
  1959. border-top: 1px solid #ccc !important;
  1960. display: -webkit-box;
  1961. -webkit-box-pack: center;
  1962. background: #fff;
  1963. }
  1964. .footerBox>div {
  1965. text-align: center;
  1966. -webkit-box-flex: 1;
  1967. font-size: 0.25rem;
  1968. margin: 0 0.4rem;
  1969. }
  1970. .footerBox span {
  1971. height: 2rem;
  1972. border: 1px solid #ccc !important;
  1973. display: inline-block;
  1974. }
  1975. .title {
  1976. width: 100%;
  1977. height: 0.38rem;
  1978. line-height: 0.38rem;
  1979. background-color: #2285e2;
  1980. color: #fff;
  1981. font-weight: bold;
  1982. font-size: 0.2rem;
  1983. display: flex;
  1984. -webkit-justify-content: center;
  1985. justify-content: center;
  1986. -webkit-align-items: center;
  1987. align-items: center;
  1988. }
  1989. .title p {
  1990. font-size: 0.2rem;
  1991. color: #fff;
  1992. }
  1993. .title .xinZengDuanNai_btn {
  1994. font-size: 0.35rem;
  1995. height: 0.38rem;
  1996. line-height: 0.26rem;
  1997. color: #fff;
  1998. border: none;
  1999. background: #2285e2;
  2000. outline: none;
  2001. margin-top: -0.03rem;
  2002. margin-left: 0.18rem !important;
  2003. }
  2004. .addFmWp_iscroll {
  2005. width: 100%;
  2006. overflow: hidden;
  2007. position: absolute;
  2008. background: #fff;
  2009. top: 0.38rem;
  2010. bottom: 0.6rem;
  2011. }
  2012. .inputtxt {
  2013. height: 0.5rem;
  2014. line-height: 0.5rem;
  2015. color: #262626;
  2016. border-bottom: 0.01rem solid #e2e2e2;
  2017. font-size: 0.15rem;
  2018. }
  2019. .addWeaning_input {
  2020. width: 3.4rem !important;
  2021. height: 0.48rem !important;
  2022. font-size: 0.15rem !important;
  2023. display: inline-block !important;
  2024. float: right;
  2025. color: #aaaaaa !important;
  2026. border: none !important;
  2027. outline: none;
  2028. background: #fff !important;
  2029. text-align: right;
  2030. margin-right: 0.18rem;
  2031. font-weight: normal;
  2032. }
  2033. #footer {
  2034. width: 100%;
  2035. height: 0.6rem;
  2036. padding: 0.1rem 0;
  2037. background: #fff;
  2038. position: absolute;
  2039. bottom: 0;
  2040. }
  2041. .sub, .subAdd {
  2042. float: left;
  2043. width: 2.4rem;
  2044. height: 0.4rem;
  2045. background-color: #29ce70;
  2046. color: #fff;
  2047. font-size: 0.2rem;
  2048. border-radius: 0.05rem;
  2049. border: none;
  2050. outline: none;
  2051. }
  2052. .fenmian_header {
  2053. width: 100%;
  2054. height: 0.38rem;
  2055. line-height: 0.38rem;
  2056. font-weight: bold;
  2057. display: flex;
  2058. -webkit-align-items: center;
  2059. align-items: center;
  2060. -webkit-justify-content: center;
  2061. justify-content: center;
  2062. }
  2063. .fenmian_header>.btn-group{
  2064. position: absolute;
  2065. left: 0;
  2066. }
  2067. .topBg .btn-group .fenmian_btn {
  2068. font-size: 0.35rem;
  2069. height: 0.38rem;
  2070. line-height: 0.26rem;
  2071. color: #fff;
  2072. border: none;
  2073. background: #2285e2;
  2074. outline: none;
  2075. margin-top: -0.03rem;
  2076. margin-left: 0.18rem !important;
  2077. }
  2078. .fenmian_header p {
  2079. font-size: 0.2rem;
  2080. color: #fff;
  2081. }
  2082. .header>.btn-group {
  2083. position: absolute;
  2084. left: 0;
  2085. }
  2086. .fenmian_searchBox {
  2087. width: 100%;
  2088. height: 0.3rem;
  2089. background: #f4f2f3 !important;
  2090. display: -webkit-box;
  2091. -webkit-box-pack: center;
  2092. margin: 0.08rem 0;
  2093. position: relative;
  2094. }
  2095. .fenmian_dayNumBox1{
  2096. left: 100%;
  2097. top: 0;
  2098. }
  2099. .searchBtn{
  2100. width: 0.3rem;
  2101. height: 0.3rem;
  2102. line-height: 0.3rem !important;
  2103. text-align: center;
  2104. top: 0 !important;
  2105. font-size: 0.2rem;
  2106. background: #c7e1f0;
  2107. color: #214579;
  2108. border-radius: 0.05rem;
  2109. position: absolute !important;
  2110. left: 5.7rem;
  2111. z-index: 100;
  2112. }
  2113. .mymoveSou{
  2114. animation:mymoveSou .5s ease forwards;
  2115. -moz-animation:mymoveSou .5s ease forwards; /* Firefox */
  2116. -webkit-animation:mymoveSou .5s ease forwards; /* Safari and Chrome */
  2117. -o-animation:mymoveSou .5s ease forwards; /* Opera */
  2118. }
  2119. @keyframes mymoveSou{
  2120. from {left:50%;}
  2121. to {left:-39%;}
  2122. }
  2123. .mymoveSJ{
  2124. animation:mymoveSJ .5s ease forwards;
  2125. -moz-animation:mymoveSJ .5s ease forwards; /* Firefox */
  2126. -webkit-animation:mymoveSJ .5s ease forwards; /* Safari and Chrome */
  2127. -o-animation:mymoveSJ .5s ease forwards; /* Opera */
  2128. }
  2129. @keyframes mymoveSJ{
  2130. from {left:100%;}
  2131. to {left:0;}
  2132. }
  2133. .mymoveSou1{
  2134. animation:mymoveSou1 .5s ease forwards;
  2135. -moz-animation:mymoveSou1 .5s ease forwards; /* Firefox */
  2136. -webkit-animation:mymoveSou1 .5s ease forwards; /* Safari and Chrome */
  2137. -o-animation:mymoveSou1 .5s ease forwards; /* Opera */
  2138. }
  2139. @keyframes mymoveSou1{
  2140. from {left:-39%;}
  2141. to {left:50%;}
  2142. }
  2143. .mymoveSJ1{
  2144. animation:mymoveSJ1 .5s ease forwards;
  2145. -moz-animation:mymoveSJ1 .5s ease forwards; /* Firefox */
  2146. -webkit-animation:mymoveSJ1 .5s ease forwards; /* Safari and Chrome */
  2147. -o-animation:mymoveSJ1 .5s ease forwards; /* Opera */
  2148. }
  2149. @keyframes mymoveSJ1{
  2150. from {left:0;}
  2151. to {left:100%;}
  2152. }
  2153. .fenmian_inputBox {
  2154. width: 5rem;
  2155. height: 0.3rem;
  2156. position:absolute !important;
  2157. left: 50%;
  2158. margin-left: -2.5rem;
  2159. }
  2160. .fenmian_search {
  2161. position: absolute !important;
  2162. left: 1.5rem;
  2163. top: 0.08rem !important;
  2164. z-index: 100;
  2165. font-size: 0.14rem;
  2166. }
  2167. .fenmian_inputBox .fenmian_input {
  2168. border-radius: 0.15rem !important;
  2169. height: 0.3rem;
  2170. background: #2285e2;
  2171. text-indent: 1.6rem;
  2172. color: #12528f;
  2173. }
  2174. .fenmian_dayNumBox .fenmian_prevBtn .btn-group button {
  2175. font-size: 0.2rem;
  2176. margin-top: -0.06rem;
  2177. }
  2178. .fenmian_dayNumBox .fenmian_nextBtn .btn-group button {
  2179. font-size: 0.2rem;
  2180. margin-top: -0.06rem;
  2181. }
  2182. .borderB > div {
  2183. padding: 3px;
  2184. font-size: 0.15rem;
  2185. }
  2186. .btn-bg{
  2187. margin-top: -0.05rem !important;
  2188. }
  2189. #fenmian_addBtn {
  2190. width: 0.6rem;
  2191. height: 0.8rem;
  2192. background: #c2a6fd;
  2193. position: absolute;
  2194. bottom: 0;
  2195. left: 50%;
  2196. margin-left: -0.3rem;
  2197. border-radius: 1.5rem 1.5rem 0 0;
  2198. }
  2199. #fenmian_addBtn span {
  2200. font-size: 0.4rem;
  2201. color: #fff;
  2202. margin-left: 0.1rem;
  2203. margin-top: 0.1rem;
  2204. }
  2205. #fenmian_addBtn p {
  2206. margin-left: 0.1rem;
  2207. color: #fff;
  2208. font-size: 0.2rem;
  2209. }
  2210. .slflag>div{
  2211. font-size: 0.15rem;
  2212. }
  2213. .header {
  2214. height: 0.38rem;
  2215. line-height: 0.38rem;
  2216. }
  2217. .danganshuju_leftbtn{
  2218. font-size: 0.35rem !important;
  2219. height: 0.38rem;
  2220. line-height: 0.3rem !important;
  2221. margin-left: 0.18rem !important;
  2222. margin-top: -0.03rem !important;
  2223. }
  2224. .searchBox {
  2225. height: 0.3rem;
  2226. }
  2227. .danganInput {
  2228. height: 0.3rem;
  2229. }
  2230. .input-group .form-control {
  2231. border-radius: 0.15rem !important;
  2232. height: 0.3rem !important;
  2233. background: #2285e2;
  2234. text-indent: 1.6rem;
  2235. color: #12528f;
  2236. font-size: 0.2rem !important;
  2237. }
  2238. .table1>tbody>tr>td:nth-of-type(2) {
  2239. text-align: center;
  2240. }
  2241. .table1>tbody>tr>td:nth-of-type(3) {
  2242. text-align: center;
  2243. }
  2244. .table1>tbody>tr:nth-of-type(1) {
  2245. height: 0.3rem;
  2246. line-height: 0.3rem;
  2247. font-size: 0.16rem;
  2248. }
  2249. .fenmian_nextBtn>span{
  2250. margin-right: 0.05rem;
  2251. }
  2252. .group_row>.dropdown_btn>.btn-group>.btn{
  2253. font-size: 0;
  2254. margin-top: 0;
  2255. }
  2256. .group_iscroll>.iscroll_content>.group_hiddenMsgBox:nth-last-child(1) {
  2257. margin-top: 0;
  2258. }
  2259. .group_hiddenMsgBox .group_hiddenMsg .group_row {
  2260. margin-top: 0.02rem;
  2261. }
  2262. .shenhe {
  2263. height: 0.3rem;
  2264. line-height: 0.3rem;
  2265. font-size: 0.2rem;
  2266. margin-left: 0.8rem;
  2267. padding: 0 0.1rem;
  2268. }
  2269. .ysbt {
  2270. height: 0.3rem;
  2271. line-height: 0.3rem;
  2272. font-size: 0.2rem;
  2273. margin-left: 1rem;
  2274. margin-top: 0.1rem;
  2275. }
  2276. .xgmsgbox {
  2277. z-index: 999999;
  2278. left: 50%;
  2279. bottom: 1%;
  2280. margin-left: -2.2rem;
  2281. display: none;
  2282. border-radius: 0.1rem;
  2283. animation: bottomTop .5s;
  2284. -moz-animation: bottomTop .5s; /*Firefox*/
  2285. -webkit-animation: bottomTop .5s; /*Safari 和 Chrome*/
  2286. -o-animation: bottomTop .5s;
  2287. }
  2288. .cententUl>li {
  2289. width: 4.15rem;
  2290. height: 0.3rem;
  2291. line-height: 0.3rem;
  2292. text-align: center;
  2293. font-size: 0.2rem;
  2294. margin: 0.1rem 0.1rem;
  2295. }
  2296. .borderB>div {
  2297. font-size: 0.14rem !important;
  2298. }
  2299. /*公猪母猪信息*/
  2300. .gZXXBox {
  2301. padding: 0 0.5rem;
  2302. background: #f1f1f1;
  2303. border-bottom: 1px solid #ccc;
  2304. }
  2305. .gZXXBox>.row {
  2306. display: -webkit-box;
  2307. }
  2308. .gZXXBox>.row>div {
  2309. padding-left: 0.1rem !important;
  2310. width: 0.7rem;
  2311. line-height: 0.25rem;
  2312. color: #000;
  2313. margin: 0.05rem 0;
  2314. font-size: 0.18rem;
  2315. text-align: left !important;
  2316. white-space: nowrap;
  2317. overflow: hidden;
  2318. text-overflow: ellipsis;
  2319. }
  2320. .gZdangan_iscroll {
  2321. width: 100%;
  2322. overflow: hidden;
  2323. background: #eeeeee;
  2324. position: absolute;
  2325. top: 1.58rem;
  2326. bottom: 0;
  2327. }
  2328. .gZ{
  2329. top: 2.12rem;
  2330. }
  2331. section>.gZcontainer {
  2332. width: 100%;
  2333. position: absolute;
  2334. padding-left: 0;
  2335. padding-right: 0;
  2336. }
  2337. .gZdangan_iscroll>.gZcontainer>.row {
  2338. display: -webkit-box;
  2339. }
  2340. .gZdangan_iscroll>.gZcontainer>.rowll>.col-md-2>.btn-group{
  2341. height: 0.15rem;
  2342. }
  2343. .gZdangan_iscroll>.gZcontainer>.rowll {
  2344. background: #fff;
  2345. padding-left: 0.4rem;
  2346. border-bottom: 1px solid #ccc;
  2347. background: #97cbff;
  2348. }
  2349. .gZdangan_iscroll>.gZcontainer>.rowll div {
  2350. height: 0.25rem;
  2351. line-height: 0.25rem;
  2352. margin-bottom: 0.1rem;
  2353. margin-top: 0.1rem;
  2354. text-align: left;
  2355. padding: 0;
  2356. font-size: 0.2rem;
  2357. background: #97cbff;
  2358. font-weight: bold;
  2359. }
  2360. .gZdangan_iscroll>.gZcontainer>.rowll>.col-md-2>.btn-group>.dropdown-toggle{
  2361. background: #F0F8FF !important;
  2362. }
  2363. .gZdangan_iscroll>.gZcontainer>.rowll>.col-md-2>.btn-group>.dropdown-toggle>.caret{
  2364. margin-bottom: 0.03rem;
  2365. }
  2366. .gZdangan_iscroll>.gZcontainer>.rowll>div:nth-last-child(1) {
  2367. margin-top: 0.1rem;
  2368. }
  2369. .gZXXhiddenMsg {
  2370. padding: 0 0.2rem;
  2371. background: #ecf5ff;
  2372. border-bottom: 1px solid #ccc;
  2373. }
  2374. .gZXXhiddenMsg>.row {
  2375. display: -webkit-box;
  2376. }
  2377. .gZXXhiddenMsg>.row>.col-md-6 {
  2378. width:50%;
  2379. }
  2380. .gZXXhiddenMsg>.row>div {
  2381. line-height: 0.2rem;
  2382. color: #000;
  2383. margin: 0.05rem 0;
  2384. font-size: 0.18rem;
  2385. text-align: left !important;
  2386. white-space: nowrap;
  2387. overflow: hidden;
  2388. text-overflow: ellipsis;
  2389. padding-left: 0.2rem !important;
  2390. }
  2391. .gZXXhiddenMsgBox>.rowll {
  2392. display: -webkit-box;
  2393. }
  2394. .gZXXhiddenMsgBox>.rowll{
  2395. border-bottom: 1px solid #ccc;
  2396. margin-top: 0;
  2397. background: #97cbff;
  2398. }
  2399. .gZXXhiddenMsgBox>.rowll div {
  2400. height: 0.3rem;
  2401. line-height: 0.3rem;
  2402. text-align: center;
  2403. padding: 0;
  2404. font-size: 0.28rem;
  2405. background: #97cbff;
  2406. }
  2407. .gZXXhiddenMsgBox>.rowll>.col-md-2>.btn-group>.dropdown-toggle{
  2408. background: #fdffff !important;
  2409. }
  2410. .gZXXhiddenMsg>.row>.col-md-3>img {
  2411. width: 0.3rem;
  2412. height: 0.3rem;
  2413. }
  2414. .gZXXhiddenMsg>.row>.col-md-3 {
  2415. line-height: 0.3rem;
  2416. }
  2417. .gZcontainer>.rowll>.dropdownBtn{
  2418. height:0.45rem !important;
  2419. margin: 0 !important;
  2420. }
  2421. .sys{
  2422. background: #c4e1ff !important;
  2423. }
  2424. .mzCentent{
  2425. background: #ecf5ff;
  2426. position: relative;
  2427. }
  2428. .mzCentent>.group_rowll{
  2429. margin-top: 0;
  2430. }
  2431. .mzCentent>.group_rowll>.col-md-1{
  2432. margin-right: 0;
  2433. }
  2434. .mzCentent>.group_rowll>.col-md-1>.span1{
  2435. display: block;
  2436. position: absolute;
  2437. left: 0.5rem;
  2438. margin-right: 0;
  2439. height: 0.3rem;
  2440. width: 0.05rem;
  2441. background: #e8e8e8;
  2442. }
  2443. .mzCentent>.group_rowll>.col-md-1>.span2{
  2444. margin-left: 0;
  2445. display: block;
  2446. position: absolute;
  2447. top: 0.02rem;
  2448. left: -0.035rem;
  2449. height: 0.25rem;
  2450. width: 0.25rem;
  2451. border-radius: 50%;
  2452. }
  2453. .mzCentent>.group_rowll>.col-md-1>.span3{
  2454. display: block;
  2455. position: absolute;
  2456. left: -0.01rem;
  2457. top: 0.048rem;
  2458. margin-right: 0;
  2459. height: 0.2rem;
  2460. width: 0.2rem;
  2461. border-radius: 50%;
  2462. }
  2463. .mzCentent>.group_rowll>.col-md-1>.span4{
  2464. display: block;
  2465. position: absolute;
  2466. top: 0.05rem;
  2467. left: -0.05rem;
  2468. height: 0.35rem;
  2469. line-height: 0.35rem;
  2470. width: 1.2rem;
  2471. border-radius: 0.15rem;
  2472. }
  2473. .mzCentent>.group_rowll>.col-md-1>.span5{
  2474. display: block;
  2475. position: absolute;
  2476. top: 0.05rem;
  2477. left: -0.05rem;
  2478. height: 0.35rem;
  2479. line-height: 0.35rem;
  2480. width: 2rem;
  2481. border-radius: 0.15rem;
  2482. }
  2483. .mzCentent>.group_rowll>div{
  2484. font-size: 0.2rem;
  2485. }
  2486. .kongbai{
  2487. background: #fff;
  2488. height: 0.05rem;
  2489. }
  2490. .kongbai>span{
  2491. display: block;
  2492. position: absolute;
  2493. left: 0.465rem;
  2494. margin-right: 0;
  2495. height: 0.05rem;
  2496. width: 0.05rem;
  2497. background: #e8e8e8;
  2498. }
  2499. }