style~ip6.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. /*公众号会话单文章视图*/
  2. #reader_node_view {
  3. /*外面边框的宽度*/
  4. reader_view_width: 351;
  5. /* 内边框的宽度 */
  6. /* 单文章图片的高度 */
  7. cover_image_height: 196;
  8. reader_view_max_height: 570;
  9. }
  10. /* 支付和安全相关 */
  11. #attributed_reader_message_node_view {
  12. reader_view_width: 349;
  13. }
  14. /*公众号多文章视图子按钮*/
  15. #read_item_view {
  16. reader_top_new_height: 196;
  17. reader_view_width: 349;
  18. reader_cover_height: 55 "dynamic";
  19. }
  20. /*公众号会话文本消息卡片视图*/
  21. #reader_text_node_view {
  22. text_content_max_height: 196 "dynamic"; /* 单文本消息内容最大高度(除详情cell高度)*/
  23. }
  24. /*公众号会话语音消息卡片视图*/
  25. #reader_voice_node_view {
  26. voice_top_item_height: 145;
  27. title_left_padding: 20;
  28. play_btn_width: 45;
  29. play_normal_btn_width: 30;
  30. play_btn_right_padding: 20;
  31. title_btn_spacing: 20;
  32. }
  33. /*公众号会话视频消息卡片视图*/
  34. #reader_image_node_view {
  35. image_top_item_height: 196;
  36. }
  37. /*公众号会话图片消息卡片视图*/
  38. #reader_video_node_view {
  39. video_top_item_height: 196;
  40. title_left_padding: 20;
  41. play_btn_width: 40;
  42. play_normal_btn_width: 24;
  43. play_btn_right_padding: 20;
  44. title_btn_spacing: 20;
  45. }
  46. #hardward_message_node_view {
  47. node_view_width: 340;
  48. node_view_height: 171;
  49. notify_node_width: 340;
  50. notify_node_height: 73;
  51. }
  52. /* 朋友圈 */
  53. #WCTimelineCellView {
  54. /*正文长度*/
  55. text_line_width : 300;
  56. more_action_floatView_width : 350;
  57. }
  58. /* 个人相册 */
  59. #WCListViewRowContentView {
  60. /* 个人相册中 日期右侧的宽度 */
  61. content_view_width : 283;
  62. }
  63. /*朋友圈详情*/
  64. #WCComentDetailViewControllerFB {
  65. /* 朋友圈详情页中 评论 的宽度 */
  66. comment_view_width : 350;
  67. /* 详情页每行点赞头像个数 */
  68. comment_head_count_perline : 7;
  69. }
  70. /* 新晒一晒 */
  71. #WCContentItemViewTemplateNewSight {
  72. /*朋友圈中小视频的宽度 此处按比例缩放的 原来200 */
  73. cover_image_width : 234;
  74. /*朋友圈中小视频的高度 此处按比例缩放的 原来150 */
  75. cover_image_height : 175;
  76. moment_edit_player_width : 105;
  77. }
  78. #WCTimeLineCellMediaContentView {
  79. image_size_max_len : 180;
  80. image_size_superwide_max_len : 247;
  81. image_size_superheight_max_len : 82;
  82. image_size_superheight_min_len : 30;
  83. multi_image_len : 79;
  84. image_gird_step_len : 5;
  85. sight_size_max_len : 225;
  86. /* 朋友圈中 feed类型的宽度 template news*/
  87. link_area_width : 300;
  88. /* 朋友圈分享页面的media 320下是290 */
  89. forward_link_area_width : 340;
  90. }
  91. /* 朋友圈评论 */
  92. #WCTimeLineCommentCellView {
  93. padding_left_offset : 2;
  94. /*赞块的左右内间距*/
  95. like_content_left_margin: 10;
  96. /*评论宽度(包括了上面的评论左右内间距)*/
  97. comment_view_width : 301;
  98. }
  99. /* 聊天节点 */
  100. #message_node_view {
  101. /*message_node_bkg_width : 240;
  102. message_node_bkg_shorter_width: 220;*/
  103. message_node_bkg_width: 56% width;
  104. message_node_bkg_shorter_width: 56% width;
  105. /* mail节点单独计算 */
  106. mail_message_node_width : 305;
  107. /* 聊天界面图片最大宽度 原来是120 等比放大 */
  108. message_node_imageNode_maxSizeLimit : 140;
  109. title_label_font: 17 dynamic;
  110. message_node_voiceNode_max_width : 200;
  111. }
  112. /* 聊天界面背景图选择界面 */
  113. #ChatBackgroundView {
  114. /* 宽度 */
  115. cell_img_width : 118;
  116. /* 高度 */
  117. cell_img_height : 118;
  118. }
  119. #AppNoteNodeView {
  120. image_max_count: 4;
  121. }
  122. #RecordDetailView {
  123. image_width : 270;
  124. subtitle_max_height : 320;
  125. }
  126. #WCCommitViewController {
  127. gridimg_size:98 98;
  128. gridimg_stepWidth : 5;
  129. gridimg_single_sizeWidth:300;
  130. }
  131. #message_node_view {
  132. text_message_node_width : 64% width;
  133. }
  134. /* 输入框附件栏 */
  135. #input_tool_view_attachment {
  136. attachment_view_margin : 3A;
  137. }
  138. /*商店表情面板*/
  139. #EmoticonGridView {
  140. m_intervalX : 30;
  141. }
  142. #EmoticonCamera {
  143. emoticon_record_button_horizonal_margin: 56;
  144. emoticon_record_tips_bottom_margin: 32;
  145. emoticon_preview_vertical_margin: 4;
  146. emoticon_preview_tool_top_margin: 72;
  147. emoticon_colorBar_unselectedPadding: 28;
  148. emoticon_comfirmbutton_right_margin: 56;
  149. emoticon_comfirmbutton_bottom_margin: 64;
  150. emoticon_lens_top_margin: 16;
  151. }
  152. #MMTipsView {
  153. background_image_width : 320;
  154. }
  155. /*手势密码*/
  156. #pattern_lock_view {
  157. circle_radius : 30;
  158. circle_gap : 40;
  159. tipsView_y : 50;
  160. tipsView_bottom_offset : 32;
  161. }
  162. #login_common
  163. {
  164. textfield_leftview_width: 93;
  165. newHeaderViewTitle_topMargin: 73;
  166. agree_checkbox_topMargin: 48;
  167. nextbtn_margin_agree_checkbox: 16;
  168. nextbtn_topMargin: 30;
  169. title_bottomMargin: 40;
  170. users_title_logo_margin: 74;
  171. users_title_line_margin: 39;
  172. }
  173. #device_rank_view {
  174. tableheader_height : 342;
  175. }
  176. #device_profile_view {
  177. tableheader_height : 342;
  178. step_content_height : 285;
  179. step_values_height : 200;
  180. steps_time_font_size : 12;
  181. }
  182. /* 企业红包收取页面样式 */
  183. #EnterpriseLuckyMoneyBaseView
  184. {
  185. frame_width : 326;
  186. frame_height : 473;
  187. }
  188. #EnterpriseLuckyMoneyIconView
  189. {
  190. view_width : 61;
  191. view_height : 61;
  192. top_margin : 40;
  193. }
  194. #EnterpriseLuckyMoneyNickNameView
  195. {
  196. top_margin : 20;
  197. font_width : 21;
  198. }
  199. #EnterpriseLuckyMoneyStatusMessView
  200. {
  201. top_margin : 10;
  202. font_width : 16;
  203. }
  204. #EnterpriseLuckyMoneyWishView
  205. {
  206. top_margin : 30;
  207. left_margin : 45;
  208. font_width : 22;
  209. }
  210. #EnterpriseLuckyMoneyOpenView
  211. {
  212. top_margin : 278;
  213. view_width : 110;
  214. view_height : 115;
  215. font_width : 21;
  216. }
  217. #EnterpriseLuckyMoneyPacketView
  218. {
  219. top_margin : 275;
  220. }
  221. #EnterpriseLuckyMoneyMaskView
  222. {
  223. view_height : 275;
  224. }
  225. /* 企业红包收取完成页面样式 */
  226. #EnterpriseLuckyMoneyShareNickNameView
  227. {
  228. top_margin : 25;
  229. font_width : 17;
  230. }
  231. #EnterpriseLuckyMoneyShareFeeView
  232. {
  233. top_margin : 20;
  234. font_width : 80;
  235. }
  236. #EnterpriseLuckyMoneyShareHintView
  237. {
  238. top_margin : 340;
  239. font_width : 14;
  240. }
  241. #EnterpriseLuckyMoneyShareButtonView
  242. {
  243. top_margin : 10;
  244. left_margin : 40;
  245. view_height : 44;
  246. }
  247. #EnterpriseLuckyMoneyYenView
  248. {
  249. left_margin : 8;
  250. top_margin : 224;
  251. }
  252. #EnterpriseLuckyMoneyAppFollowView
  253. {
  254. bottom_margin : 20;
  255. checkbox_width : 18;
  256. font_width : 17;
  257. between_margin : 5;
  258. }
  259. /* 企业红包分享页面样式 */
  260. #EnterpriseLuckyMoneyShareIconView
  261. {
  262. top_margin : 85;
  263. view_width : 50;
  264. view_height : 60;
  265. }
  266. #EnterpriseLuckyMoneyShareNickNameView
  267. {
  268. bottom_margin : 25;
  269. font_width : 17;
  270. }
  271. #EnterpriseLuckyMoneyHintTextView
  272. {
  273. top_margin : 195;
  274. font_width : 27;
  275. top_margin_1 : 249;
  276. font_width_1 : 17;
  277. left_margin : 6;
  278. }
  279. #EnterpriseLuckyMoneyShareBtnView
  280. {
  281. top_margin : 325;
  282. left_margin : 41;
  283. view_height : 45;
  284. }
  285. #EnterpriseLuckyMoneyBalanceTextView
  286. {
  287. top_margin : 3;
  288. }
  289. /* 节日红包显示样式 */
  290. #FestivalLuckyMoneyRate
  291. {
  292. x_rate : 1;
  293. y_rate : 1;
  294. }
  295. #FestivalLuckyMoneyMoneyView
  296. {
  297. top_margin : 199;/*201*/;
  298. font_width : 67;
  299. top_margin_1 : 217;
  300. top_margin_noscroll : 213;
  301. top_margin_noscroll_1 : 211;
  302. width: 319;
  303. height : 528;
  304. emoticon_margin_top : 51;
  305. emoticon_width : 240;
  306. emoticon_height : 240;
  307. send_button_margin_bottom : 40;
  308. emoticon_image_view_margin_top : 40;
  309. emoticon_image_view_margin_top_sender_show : 40;
  310. greeting_label_margin_top : 304;
  311. greeting_label_margin_top_receive : 354;
  312. greeting_label_margin_top_hk : 226;
  313. greeting_label_margin_top_with_emoticon_hk : 226;
  314. num_scroll_label_margin_top_hk : 0;
  315. change_num_label_margin_top_hk : 9;
  316. num_scroll_label_margin_top : 8;
  317. num_scroll_label_font_size : 60;
  318. num_scroll_unit_label_y : 37;
  319. change_num_label_margin_top : 16;
  320. change_num_label_font_size : 12;
  321. send_btn_margin_left : 24;
  322. send_btn_margin_bottom : 54;
  323. over_time_status_font_size : 24;
  324. save_balance_margin_top : 8;
  325. status_message_margin_bottom : 117;
  326. status_message_margin_bottom_with_emoticon : 117;
  327. add_emoticon_btn_width : 250;
  328. add_emoticon_btn_height : 100;
  329. add_emoticon_btn_label_offsetY : 4;
  330. add_emoticon_btn_image_offsetY : 0;
  331. add_emoticon_btn_margin_top : 160;
  332. close_btn_margin_top : 40;
  333. adjust_offsetY : 20;
  334. send_btn_bottom_padding: 30;
  335. image_box_left_padding: 30;
  336. title_image_top_padding: 40;
  337. greeting_tip_padding: 30;
  338. send_btn_left_padding: 30;
  339. emoticon_layer_corner_radius : 14;
  340. bgimageview_top_margin : 0;
  341. bgimageview_height : 210;
  342. bgimageview_bottom_margin: 10.2;
  343. bgimageview_bottom_margin_over_time : 19.2;
  344. sender_view_bottom : 22.3;
  345. /* greeting_label_margin_top_with_emoticon : 35.9;*/
  346. greeting_label_margin_top_with_emoticon : 226;
  347. loading_gif_width : 42;
  348. loading_gif_height : 42;
  349. unit_lable_font_size : 15;
  350. topMaskViewHeight : 9;
  351. bottomMaskViewHeight : 9;
  352. snow_gif_height : 233;
  353. fail_retry_btn_width : 101;
  354. camera_btn_extra_width : 30;
  355. }
  356. #FestivalLuckyMoneyMoneyView_667 {
  357. width: 311;
  358. height : 515;
  359. bgimageview_height : 205;
  360. }
  361. #FestivalLuckyMoneyC2CNodeView
  362. {
  363. nian_top_margin : 72;
  364. word_top_margin : 159;
  365. left_margin_1 : 30;
  366. right_margin_1 : 22;
  367. left_margin_2 : 20;
  368. right_margin_2 : 27;
  369. bottom_line_width : 19;
  370. bottom_line_left_padding_1 : 4;
  371. bottom_line_left_padding_2 : -3;
  372. }
  373. /* Festival lucky money sender view. */
  374. /*#ShakeCardDetailView*/
  375. /*{*/
  376. /* background_view_width : 325;*/
  377. /* title_font : 24;*/
  378. /*}*/
  379. #WCRedEnvelopesReceiveHomeView_667 { /* #WCRedEnvelopesReceiveHomeView */
  380. no_skin_has_emotioncon_title_marign_y : 92.17;
  381. no_skin_no_emotioncon_title_marign_y : 100.7;
  382. bg_image_view_width : 272.2;
  383. bg_image_view_height : 450.6;
  384. bg_image_mask_height : 360.1;
  385. head_bottom_image_view_height : 45;
  386. head_image_view_y : 64;
  387. head_image_view_width : 41;
  388. head_image_view_height : 41;
  389. head_image_view_border_width : 1;
  390. head_image_view_border_color : "#FFE2B1";
  391. head_image_view_border_radius : 4;
  392. head_Image_radius : 4.1;
  393. nick_name_title_margin_left : 15;
  394. nick_name_title_y_margin : 71.69;
  395. nick_name_title_font : 14.5;
  396. nick_name_title_color : "#FFE2B1";
  397. desc_label_margin_top : 10.24;
  398. status_tips_title_y_margin : 5.12;
  399. status_tips_title_font : 11.9;
  400. status_tips_title_color : "#FFE2B1";
  401. wishing_tips_y_margin : 10.24;
  402. wishing_tips_title_font : 20.48;
  403. wishing_tips_bottom_margin : 25;
  404. wishing_tips_title_color : "#FFE2B1";
  405. bg_mask_image_height : 308.48;
  406. top_curve_image_height : 367.8;
  407. open_button_y_margin : 200;
  408. open_button_width : 110;
  409. open_button_height : 115;
  410. open_desc_title_font : 17;
  411. open_list_bottom_margin : 12.8;
  412. open_list_font : 14;
  413. money_icon_margin_bottom : 12;
  414. open_red_envelope_button_size : 85.3;
  415. open_red_envelope_button_font_size : 34.1;
  416. open_red_envelope_button_margin_bottom : 47.79;
  417. time_out_open_money_font_size : 50;
  418. time_out_open_money_text_color : "#FFE2B1";
  419. time_out_open_monty_unit_font_size : 15;
  420. time_out_open_monty_unit_text_color : "#FFE2B1";
  421. time_out_open_monty_unit_margin_left : 3;
  422. bottom_desc_text_color : "#FFE2B1";
  423. bottom_desc_text_font_size : 14;
  424. not_wish_laebl_left_margin : 20;
  425. not_wish_lable_font_size : 14.51;
  426. arrow_margin_left : 4;
  427. open_red_envelope_button_font : 21.3;
  428. close_button_margin_top : 16;
  429. adjust_offsetY : 0;
  430. desc_label_line_space : 2;
  431. headimage_small_size : 24;
  432. headimage_small_rightMargin : 5;
  433. nickname_font_hasEmoticon : 19;
  434. nickname_top_margin_hasEmoticon : 90;
  435. with_topMargin_hasEmoticon : 16;
  436. wish_topMargin_noEmoticon : 16;
  437. emoticon_view_len : 108;
  438. emoticon_view_topMargin : 16;
  439. emoticon_view_bottomMargin : 16;
  440. emoticon_view_centerY : 235;
  441. emoticon_view_loading_len : 42;
  442. emoticon_view_loading_font : 16;
  443. emoticon_view_loading_topMargin : 10;
  444. nickname_bkg_margin : 65;
  445. }
  446. #WCRedEnvelopesReceiveHomeView {
  447. bg_image_view_width : 311;
  448. bg_image_view_height : 515;
  449. bg_image_mask_height : 422;
  450. head_bottom_image_view_height : 62.91;
  451. head_image_view_x : 16;
  452. head_image_view_width : 48;
  453. head_image_view_height : 48;
  454. head_Image_radius : 4.8;
  455. nick_name_title_margin_left : 15;
  456. nick_name_title_font : 17;
  457. desc_label_margin_top : 12;
  458. status_tips_title_y_margin : 6;
  459. status_tips_title_font : 14;
  460. wishing_tips_y_margin : 12;
  461. wishing_tips_title_font : 24;
  462. wishing_tips_bottom_margin : 25;
  463. bg_mask_image_height : 352.60;
  464. top_curve_image_height : 420;
  465. open_button_y_margin : 286.8;
  466. open_button_width : 110;
  467. open_button_height : 115;
  468. open_desc_title_font : 20;
  469. open_list_bottom_margin : 14.63;
  470. open_list_font : 15;
  471. money_icon_margin_bottom : 13;
  472. open_red_envelope_button_size : 106;
  473. open_red_envelope_button_font_size : 39;
  474. open_red_envelope_button_margin_bottom : 52;
  475. close_button_size : 13.2;
  476. close_button_margin_top : 24;
  477. close_button_margin_right : 16.7;
  478. not_wish_laebl_left_margin : 30;
  479. not_wish_lable_font_size : 17;
  480. open_red_envelope_button_font : 25;
  481. adjust_offsetY : 13;
  482. emoticon_view_len : 108;
  483. }
  484. #WCRedEnvelopesWelcomePageViewController
  485. {
  486. randomButtonMarginTop2017_1 : 396;
  487. randomButtonMarginTop2017_2 : 396;
  488. normalButtonMarginTop2017_1 : 462;
  489. normalButtonMarginTop2017_2 : 462;
  490. middleSceneImageMarginBottom2017_1 : 285;
  491. middleSceneImageMarginBottom2017_2 : 285;
  492. topImageMarginTop2017_1 : 143;
  493. topImageMarginTop2017_2 : 143;
  494. middleSceneImageMarginBottom2017_1 : 285;
  495. middleSceneImageMarginBottom2017_2 : 285;
  496. bottomSceneImageMarginBottom2017_1 : 27;
  497. bottomSceneImageMarginBottom2017_2 : 27;
  498. }
  499. #WCRedEnvelopesMakeRedEnvelopesViewController
  500. {
  501. countSelectViewMoveOffset : 98;
  502. countSelectViewWithBannerMoveOffset : 63;
  503. textViewMoveOffset : 155;
  504. textViewMoveWithBannerOffset : 155;
  505. moneyInputTextFont : 17;
  506. wishLabelMarginTop: 10;
  507. moneyLabelMarginTop2017 : 8A;
  508. unitLabelMarginTop2017 : 14;
  509. makebuttonMarginBottom2017 : 204;
  510. makebuttonMarginMoney2017 : 20;
  511. bottomSceneImageMarginBottom2017 : 120;
  512. }
  513. #WCRedEnvelopesRedEnvelopesHistoryListViewController
  514. {
  515. tableViewHeaderHeight : 366;
  516. yearSelectorMarginTop : 25;
  517. headImageMarginTop : 60;
  518. descriptionTextMarginTop : 24;
  519. receiveCountCenterMarginTop : 115;
  520. statusTitleMarginTop : 100;
  521. }
  522. #ExtraDeviceLogin
  523. {
  524. button_inner_offset : 8;
  525. cancel_button_offset : 45;
  526. device_tips_font_size : 15;
  527. device_cancel_button_font_size : 15;
  528. }
  529. #fts_common {
  530. searchbar_tag_max_width : 160;
  531. }
  532. #search_guide {
  533. sg_barbutton_top_margin : 40;
  534. sg_verts_title_top_margin : 33.5;
  535. sg_verts_title_bottom_margin_for_single_row : 30;
  536. sg_verts_title_bottom_margin_for_multi_row : 25;
  537. sg_verts_button_width : 100;
  538. sg_verts_button_intv: 29;
  539. sg_verts_title_font_size : 14 dynamic;
  540. sg_verts_title_font_size_for_discovery : 13 dynamic;
  541. sg_verts_button_title_font_size : 16 dynamic;
  542. sg_verts_button_title_font_size_for_discovery : 16 dynamic;
  543. sg_verts_button_title_small_font_size : 14 dynamic;
  544. sg_verts_button_title_small_font_size_for_discovery : 14 dynamic;
  545. sg_msg_verts_button_width : 100;
  546. sg_verts_button_title_small_font_size_for_discovery : 12 dynamic;
  547. sg_weapp_content_width : 265;
  548. sg_weapp_title_bottom_margin : 30;
  549. sg_weapp_title_top_margin : 40;
  550. }
  551. #search_discovery {
  552. discovery_search_text_font_size : 17;
  553. }
  554. #CardItemView
  555. {
  556. card_left : 10.0;
  557. top_height : 10.0;
  558. normal_height : 136.0;
  559. tooth_height : 3.0;
  560. bottom_mask_height : 34.0;
  561. title_font : 13.0;
  562. title_2_sub : 8.0;
  563. sub_title_font : 22.0;
  564. bottom_font : 13.0;
  565. logo_width : 42.0;
  566. logo_left : 15.0;
  567. logo_top : 20.0;
  568. head_width: 55.0;
  569. head_left : 14.0;
  570. entry_title_font : 20.0;
  571. entry_sub_title_font : 16.0;
  572. invoice_title_left: 20;
  573. }
  574. #CardCodeView
  575. {
  576. begin_y : 60.0;
  577. bottom_margin : 150.0;
  578. dashline_margin : 35.0;
  579. checkbox_fit_y : 35.0;
  580. tips_fit_y : 90.0;
  581. qrcode_img_height : 168.0;
  582. }
  583. #CardConsumedView
  584. {
  585. doneLabel_bottom : 82;
  586. }
  587. #BizMainHeaderView
  588. {
  589. height : 135;
  590. padding-top :30;
  591. titleFontSize : 16;
  592. descFontSize : 13;
  593. }
  594. #WCMallActivityView
  595. {
  596. activityLabelFontSize:14;
  597. activityFunctionLabelFontSize:12;
  598. margin : 10;
  599. }
  600. #BizMainSectionHeaderView
  601. {
  602. height : 60;
  603. fontSize : 14;
  604. }
  605. #WCFacingReceivePayerView { /* #WCRedEnvelopesReceiveHomeView */
  606. total_money_height : 50;
  607. total_money_tips_font : 14;
  608. total_money_money_font : 15;
  609. header_nickname_rightmargin : 10;
  610. status_font : 17;
  611. money_font : 25;
  612. payer_name_font:14;
  613. actionbar_top_margin : 5;
  614. }
  615. #chargeMobileView
  616. {
  617. input_phone_view_height : 87;
  618. input_phone_view_select_address_top_margin : 19;
  619. footer_button_itern_margin : 10;
  620. function_button_mainTitle_font : 17;
  621. function_button_attrTitle_font : 11;
  622. }
  623. #WCOutView {
  624. /* dial pad */
  625. padBtnDiameter : 105;
  626. dialPadVerticalPadding : 1;
  627. dialPadHorizontalPadding : 1;
  628. callBtnMarginKeyPad: 30;
  629. skmBtnsMarginHangupBtn: 40;
  630. /* dial view */
  631. inputArea_marginTop: 39;
  632. inputArea_phoneNumber_marginBottom: 8;
  633. /*calling view*/
  634. headImageMarginTop: 75;
  635. userLabelMarginTopWhenNoHeadImage: 42;
  636. /*account view*/
  637. headerViewHeight: 136;
  638. balanceFontSize: 18;
  639. remainingTimeFontSize :40;
  640. balanceTopMargin : 6;
  641. remainingTimeTopMargin : 24;
  642. productBtnTitleSize:26;
  643. faqBtnTopMargin:90;
  644. }
  645. #WCOutActivityView {
  646. title_margin_bottom : 145;
  647. title_margin_Left_right : 60;
  648. title_line_hight : 40;
  649. desc_margin_top : 21;
  650. pic_margin_top : 55;
  651. img_height_width : 140;
  652. try_btn_margin_bottom : 75;
  653. title_font_size : 33;
  654. desc_font_size : 18;
  655. }
  656. #WCOutPackageView {
  657. price_font_size : 40;
  658. }
  659. #NewMultiSelectViewController
  660. {
  661. select_display_view_height : 120;
  662. select_display_item_topOffset1 : 33;
  663. select_display_item_topOffset2 : 10;
  664. select_display_item_leftOffset1 : 16;
  665. select_display_item_leftOffset2 : 25;
  666. select_display_item_interSpacing1 : 16;
  667. select_display_item_interSpacing2 : 25;
  668. select_display_item_lineSpacing1 : 100;
  669. select_display_item_lineSpacing2 : 10;
  670. select_viewController_rightBarButton_margin : -9;
  671. }
  672. #MultiTalkTalkingOperateView
  673. {
  674. title_margin_top : 30;
  675. title_margin_left : 30;
  676. title_height : 30;
  677. title_font_size : 24;
  678. title_text_color : "#ffffff";
  679. timer_margin_left : 30;
  680. timer_font_size : 15;
  681. timer_text_color : "#ffffff";
  682. minimize_button_center_margin_left : 60;
  683. minimize_button_center_margin_bottom : 125;
  684. hangup_button_center_margin_bottom : 68;
  685. hangup_button_height : 75;
  686. righttop_button_center_margin_center : 110;
  687. righttop_button_center_margin_bottom : 150;
  688. righttop_button_width : 60;
  689. righttop_button_height : 78;
  690. righttop_title_margin_top : -19;
  691. middletop_button_center_margin_left : 60;
  692. middletop_button_center_margin_bottom : 150;
  693. middletop_button_width : 60;
  694. middletop_button_height : 78;
  695. middletop_title_margin_top : -19;
  696. lefttop_button_center_margin_center : 110;
  697. lefttop_button_center_margin_bottom : 150;
  698. lefttop_button_width : 60;
  699. lefttop_button_height : 78;
  700. lefttop_title_margin_top : -19;
  701. }
  702. #MultiTalkBottomOperatePanel
  703. {
  704. description_button_width : 64;
  705. description_button_height : 83.2;
  706. description_button_title_offset : -19;
  707. description_button_left_right_margin : 64;
  708. description_button_top_margin : 40;
  709. hangup_button_size : 72;
  710. hangup_button_bottom_margin : 32;
  711. hangup_button_folded_size : 44;
  712. hangup_button_folded_bottom_margin : 24;
  713. arrow_button_size : 32;
  714. arrow_button_left_margin : 40;
  715. flip_camera_button_size : 64;
  716. flip_camera_button_right_margin : 64;
  717. flip_camera_button_bottom_margin : 36;
  718. panel_corner_radius : 16;
  719. panel_bottom_extra_height : 20;
  720. panel_height : 272;
  721. panel_folded_height : 92;
  722. mute_button_image_name : "multitalkMuteMode.png";
  723. mute_button_hl_image_name : "multitalkMuteModeHL.png";
  724. mute_button_selected_image_name : "multitalkMuteModeOn.png";
  725. speaker_button_image_name : "multitalkSpeakerMode.png";
  726. speaker_button_hl_image_name : "multitalkSpeakerModeHL.png";
  727. speaker_button_selected_image_name : "multitalkSpeakerModeOn.png";
  728. video_button_image_name : "multitalkVideo.png";
  729. video_button_hl_image_name : "multitalkVideoHL.png";
  730. video_button_selected_image_name : "multitalkVideoOn.png";
  731. }
  732. #MultiTalkBeforeTalkingOperateView
  733. {
  734. hangup_button_margin_center : 50;
  735. hangup_button_center_margin_bottom : 68;
  736. hangup_button_height : 75;
  737. }
  738. #MusicPlayerMainViewController
  739. {
  740. bottom_bg_height : 165;
  741. shade_Gradient_height : 180;
  742. first_page_cover_height : 450;
  743. second_page_cover_height : 180;
  744. /*cover_image_offset = (first_page_cover_height-second_page_cover_height)/2 */
  745. cover_image_offset : 135;
  746. table_view_height_to_top : 230;
  747. lyrics_table_view_height : 290;
  748. max_table_view_height : 295;
  749. }
  750. #brand_contact_profile {
  751. footer_button_margin : 10;
  752. }
  753. #NewYearSnsFeedView
  754. {
  755. imageview_width : 180;
  756. imageview_height : 135;
  757. }
  758. /*WCFestivalRedEnvReceiveHomeView*/
  759. #WCFestivalRedEnvReceiveHomeView
  760. {
  761. bg_frame_height : 400;
  762. bg_frame_width : 300;
  763. logo_width : 40;
  764. logo_height : 40;
  765. nickname_font : 14;
  766. nickname_top_margin : 8;
  767. descTitle_font : 20;
  768. descTitle_top_margin : 33;
  769. linkLabel_font_size : 17;
  770. hb_cover_remain_height : 50;
  771. }
  772. #WCNewYearEnterpriseHBDetailView
  773. {
  774. default_padding : 15;
  775. bgView_top_margin : 66;
  776. bgView_left_margin : 25;
  777. coverFrame_top_margin : 33;
  778. coverFrame_left_margin : 14;
  779. headImage_top_margin : 22;
  780. headImage_size : 41;
  781. nameLabel_font_size : 16;
  782. nameLabel_top_margin : 10;
  783. numView_font_size : 47;
  784. numView_top_margin : 43;
  785. moneyLabel_font_size : 11;
  786. tipsLabel_font_size : 15;
  787. tipsLabel_top_margin : 46;
  788. fixBar_width : 17;
  789. }
  790. #WCPaasdfyFetchView
  791. {
  792. top_padding_1: 20;
  793. top_padding_2: 20;
  794. top_padding_3: 15;
  795. top_padding_4: 9;
  796. cardInfo_leftMargin : 15;
  797. money_textfield_font : 56;
  798. }
  799. #WCPaasdfyPaidOrderVCActivityView
  800. {
  801. marginView_height : 15;
  802. activityView_height : 110;
  803. iconView_left_margin : 15;
  804. iconView_size : 47;
  805. solgnLabel_left_margin : 10;
  806. titleLabel_top_margin : 8;
  807. titleLabel_font_size : 21;
  808. activityBtn_title_margin : 15;
  809. firstFlower_x : 196;
  810. firstFlower_y : 9;
  811. secondFlower_x : 55;
  812. secondFlower_bottom_margin : 10;
  813. thirdFlower_activityBtn_left_margin : 24;
  814. thirdFlower_activityBtn_y : 43;
  815. }
  816. #ShareCardMemberCardView
  817. {
  818. img_left_margin : 32;
  819. img_top_margin_to_bar : 12;
  820. img_top_margin_to_title : 40;
  821. accept_top_margin_to_card : 130;
  822. }
  823. #WCPaasdfyOverseaTransferViewController
  824. {
  825. head_image_view_top_margin : 15;
  826. display_name_label_top_margin : 10;
  827. panel_view_left_margin : 15;
  828. panel_view_top_margin : 15;
  829. panel_view_bottom_margin : 15;
  830. input_title_label_top_margin : 20;
  831. input_title_label_left_margin : 20;
  832. currency_input_view_left_margin : 20;
  833. currency_input_view_top_margin : 15;
  834. currency_input_view_height : 55;
  835. line_view_left_margin : 20;
  836. line_view_top_margin : 5;
  837. line_view_height : 0.5;
  838. comment_text_view_left_margin : 20;
  839. comment_text_view_top_margin : 10;
  840. comment_text_view_height : 16;
  841. confirm_button_left_margin : 30;
  842. confirm_button_top_margin : 30;
  843. hkMoneyLabelFont : 40;
  844. }
  845. #WCPaasdfyCurrencyInputView
  846. {
  847. currency_label_font_size : 40;
  848. number_text_field_font_size : 55;
  849. number_text_field_height : 55;
  850. }
  851. #online_device_info {
  852. controlButtonsMargin : 18;
  853. controlButtonsYOffset : 78;
  854. tipsLabelYOffset : 20;
  855. deviceViewY : 232;
  856. logOutBtnMarginDeviceViewTop: 368;
  857. logOutBtnMarginBottom : 64;
  858. tips_label_font_size : 15;
  859. containerView_YOffset : 70;
  860. }
  861. #WCPaasdfyOverseaMainWalletCollectionView
  862. {
  863. banner_height : 150;
  864. }
  865. #WAHomeListView
  866. {
  867. row_num_perpage : 4;
  868. row_count : 4;
  869. cell_width : 170;
  870. cell_height : 140;
  871. section_hon_margin : 10;
  872. section_ver_margin : 10;
  873. }
  874. #WCBackupEntryView
  875. {
  876. icon_image_content_y : 180;
  877. icon_image_height : 100;
  878. icon_image_width : 160;
  879. icon_label_gap : 52;
  880. tip_max_content_x : 25;
  881. tip_tip_gap : 14;
  882. green_button_height : 35;
  883. grey_button_height : 17;
  884. button_button_gap : 66;
  885. grey_button_bottom : 33;
  886. left_corner_button_y : 20;
  887. left_corner_button_x : 16;
  888. }
  889. #FaceHB
  890. {
  891. get_AvatarWidth : 60;
  892. get_OpenedAvatarWidth : 70;
  893. get_OpenViewWidth : 325;
  894. get_OpenViewHeight : 430;
  895. get_mask_image_height : 245;
  896. get_OpenBtn_topMargin : 82;
  897. pay_QR_Width : 180;
  898. pay_QR_Top_Margin : 55;
  899. pay_HB_SmallWidth : 115;
  900. pay_HB_BigWidth : 275;
  901. pay_HB_Name_Font : 17;
  902. pay_HB_Yuan_Font : 17;
  903. pay_HB_Amount_Font : 43;
  904. pay_HB_SelectY : 35;
  905. pay_Receive_Top_Margin : 40;
  906. pay_Receive_HeadWidth : 50;
  907. }
  908. #MultitalkBannerView
  909. {
  910. banner_height : 44;
  911. fold_tips_label_height : 16;
  912. unfold_tips_label_height : 16;
  913. unfold_title_label_height : 38;
  914. unfold_button_height : 50;
  915. unfold_title_margin_top : 20;
  916. unfold_label_margin_left : 30;
  917. arrow_icon_margin_right : 15;
  918. fold_tips_label_font : 15.0;
  919. unfold_title_label_font : 17.0;
  920. unfold_tips_label_font : 14.0;
  921. banner_button_font : 17.0;
  922. headimg_size : 30;
  923. headimg_title_space : 10;
  924. headimg_button_space : 20;
  925. headimg_max_space : 10;
  926. unfold_button_headimg_space : 20;
  927. invite_nick_max_len : 14;
  928. }
  929. #WCPaasdfyTransferMoneyViewController
  930. {
  931. currencyLabelFont : 30;
  932. moneyLabelFont : 50;
  933. hkMoneyLabelFont : 42;
  934. moneyLabelHeight : 55;
  935. moneyLabelTopMargin : 5;
  936. transferBtnTopMargin : 30;
  937. }
  938. #WCPaasdfyTransferMoneyPaidSuccessViewV2
  939. {
  940. WeChatPayIcon_margin_top : 8.5A;
  941. WeChatPayIcon_height : 28;
  942. WeChatPayIcon_width : 32;
  943. successLabel_margin_top : 131;
  944. successLabel_font_size : 15;
  945. tipLabel_margin_top : 66;
  946. tipLabel_font_size : 15;
  947. tipLabel_font_color : "#353535";
  948. moneyLabel_margin_top : 44;
  949. moneyLabel_margin_top_on_transfer : 14;
  950. moneyLabel_font_size : 43.5;
  951. moneyLabel_font_color : "#353535";
  952. receiverLabel_margin_top : 84;
  953. dataLabel_margin_up : 13;
  954. dataLabel_margin_left : 3A;
  955. dataLabel_font_size : 14;
  956. dataLabel_font_color : "#888888";
  957. doneButton_margin_bottom : 96;
  958. doneButton_width : 163;
  959. head_image_size : 28;
  960. head_image_margin_right : 6;
  961. line_view_margin_top : 18;
  962. line_view_margin_top_on_transfer : 81;
  963. line_view_margin_left : 3A;
  964. line_view_height : 0.5;
  965. line_view_color : "#C7C7C7";
  966. chargefeeLabel_margin_up : 18;
  967. firstDataLabel_margin_up : 16;
  968. moneyLabel_margin_top_no_lineView : 56;
  969. receiverLabel_margin_up_no_lineView : 64;
  970. head_image_margin_up_no_lineView : 24;
  971. receiverLabel_margin_up_no_lineView : 80;
  972. head_image_margin_up_no_lineView : 28;
  973. }
  974. #OfflinePayView
  975. {
  976. actionbar_top_margin : 5;
  977. cardInfo_view_height : 68;
  978. actionbar_content_height : 64;
  979. bottom_button_content_height : 55;
  980. bottom_button_elem_title_font : 17;
  981. bottom_button_elem_subTitle_font : 17;
  982. codeview_noticecontent_margin : 30;
  983. codeview_qrcode_bottom_margin : 25;
  984. codeview_barcode_container_height : 136;
  985. codeview_barcode_height : 102;
  986. codeview_qrcode_width : 147;
  987. codeview_tips_font : 14;
  988. change_card_view_bankName_font : 16;
  989. change_card_view_bankDesc_font : 13;
  990. change_card_view_forbidDesc_font : 13;
  991. }
  992. #VoipView
  993. {
  994. warningTips_top_margin : 395;
  995. warningTips_left_margin : 35;
  996. warningTips_left_span : 17.5;
  997. warningTips_font_size : 15;
  998. warningTips_width : 305;
  999. warningTips_height : 35;
  1000. warningTips_fill_color : "#E64340";
  1001. warningTips_font_color : "#FFFFFF";
  1002. }
  1003. #VoiceInputViewController
  1004. {
  1005. fullScreenTextViewHeight: 251;
  1006. cancel_Button_Left_Margin: 45;
  1007. halfScreenPadHeight: 330;
  1008. textViewDefaultHeight: 180;
  1009. }
  1010. #PaidNewDetailView {
  1011. logo_top_margin : 20;
  1012. logo_top_margin_min : 2;
  1013. logo_image_width : 32;
  1014. logo_image_height : 28;
  1015. brandLabel_top_margin : 10;
  1016. sellerLabel_top_margin : 96;
  1017. sellerLabel_top_margin_min : 48;
  1018. moneyLabel_top_margin : 12;
  1019. moneyLabel_fee_margin : 6;
  1020. discount_content_top_margin : 6A;
  1021. tinyApp_content_top_margin : 48;
  1022. tinyApp_content_height : 80;
  1023. tinyApp_line_leftright_margin : 22;
  1024. tinyApp_bg_left_margin : 32;
  1025. tinyApp_logo_len : 46;
  1026. tinyApp_small_logo_y : 1;
  1027. tinyApp_small_logo_len : 15;
  1028. finish_button_width : 163;
  1029. finish_button_bottom_margin_normal : 90;
  1030. finish_button_bottom_margin_with_activity : 64;
  1031. finish_button_bottom_margin_with_activity_subscribe : 90;
  1032. finish_button_top_margin_min : 65;
  1033. subscribe_content_top_margin : 27;
  1034. activity_content_height : 78;
  1035. activity_content_leftright_margin : 13;
  1036. activity_content_bottom_margin : 14;
  1037. activity_logo_left_margin : 19;
  1038. activity_button_innerMargin : 26;
  1039. brandLabel_font : 17;
  1040. fee_type_font : 27;
  1041. money_font : 43;
  1042. discount_content_font : 12;
  1043. tinyApp_name_font : 12;
  1044. tinyApp_desc_font : 18;
  1045. }
  1046. #MobileChargeHistoryView {
  1047. history_cell_height : 60;
  1048. history_cell_phone_font : 15;
  1049. history_cell_username_font : 13;
  1050. history_cell_content_margin : 2;
  1051. history_cell_padding_margin : 34;
  1052. history_cell_maxrow : 3;
  1053. }
  1054. #UploadIDTipsViewController {
  1055. icon_top_margin : 48;
  1056. title_label_top_margin : 24;
  1057. content_view_width : 343;
  1058. content_view_height : 604;
  1059. separate_line_margin : 24;
  1060. title_font : 17;
  1061. content_leftRight_margin : 24;
  1062. }
  1063. #FaceRecoLight {
  1064. frame_top : 153;
  1065. title_frame_margin : 46;
  1066. loading_frame_margin : 30;
  1067. guide_top : 120;
  1068. }
  1069. #FaceReco {
  1070. icon_top : 104;
  1071. icon_tip_margin : 40;
  1072. info_footer_margin : 40;
  1073. info_leftview_width : 113;
  1074. title_top : 64;
  1075. title_frame_margin : 0;
  1076. frame_width : 300;
  1077. frame_height : 400;
  1078. big_tips_title_left_margin : 20;
  1079. err_tips_left_margin : 20;
  1080. num_font : 110;
  1081. confirm_icon_left_margin : 17;
  1082. confirm_icon_name_gap : 11;
  1083. confirm_slogan_font : 22;
  1084. rules_info_screen_bottom_gap : 26;
  1085. rules_tip_info_gap: 12;
  1086. prepare_readnumber_y : 220;
  1087. start_button_width : 144.3;
  1088. start_button_height : 40;
  1089. start_button_prepareLabel_gap : 200;
  1090. result_close_btn_screen_gap : 110;
  1091. guide_step_font : 20;
  1092. guide_step_title_y : 90;
  1093. guide_step_title_numbericon_gap : 60;
  1094. guide_numberIcon_left_margin : 75;
  1095. guide_numbericon_width : 24;
  1096. guide_step_content_numbericon_gap : 10;
  1097. guide_step_content_title_gap : 20;
  1098. guide_step_image_content_gap : 25;
  1099. guide_step_face_image_width : 80;
  1100. guide_step_number_image_width : 120;
  1101. guide_step_number_image_height : 35;
  1102. guide_numbericons_gap : 180;
  1103. guide_finish_btn_bottom_gap : 110;
  1104. guide_finish_btn_width : 144.3;
  1105. guide_finish_btn_height : 40;
  1106. guide_title_left_margin : 10;
  1107. }
  1108. #FaceRecoRamPose {
  1109. frame_width : 280;
  1110. icon_top : 146;
  1111. result_close_btn_screen_gap : 110;
  1112. }
  1113. #WCPaasdfyOfflineCheckTipsView
  1114. {
  1115. tipsContentTopMargin : 24;
  1116. confirmBtnBottomMargin : 64;
  1117. confirmBtnBottomMargin_hasContent : 105;
  1118. tipContentLabelFontSize : 17;
  1119. }
  1120. #WCPaasdfyOfflineAddNewCardTipsView
  1121. {
  1122. tipsContentFontSize : 17;
  1123. tipsTitleTopMargin : 30;
  1124. addNewCardBtnLeftMargin : 80;
  1125. addNewCardBtnTopMargin : 40;
  1126. viewPayCardBtnBottomMargin : 35;
  1127. iconImgViewTopMargin : 48;
  1128. }
  1129. #WCLabsSettingViewController {
  1130. header_blank_height : 40;
  1131. footer_tip_toppadding : 57;
  1132. header_icon_title_padding : 15;
  1133. }
  1134. #WCLabsSettingViewControllerNew {
  1135. header_right_icon_top: 76;
  1136. header_height: 246;
  1137. }
  1138. #OfflinePayPreConfirmView
  1139. {
  1140. confirmview_icon_topMargin : 84;
  1141. confirmview_content_fontsize : 18;
  1142. confirmview_content_topMargin : 30;
  1143. confirmView_content_leftRight_margin : 170;
  1144. confirmview_btn_topMargin : 30;
  1145. confirmview_btn_width : 190;
  1146. }
  1147. #MMTableViewIndex
  1148. {
  1149. indexViewItemHeight : 16;
  1150. indexRoundImageViewWidth : 14;
  1151. indexViewFontSize : 10;
  1152. }
  1153. #LQTDetailView {
  1154. header_logo_topMargin : 0;
  1155. header_bankName_topMargin : 8;
  1156. header_bankName_fontSize : 17;
  1157. footer_fontsize : 14;
  1158. header_view_bottomMargin : 18;
  1159. content_view_height : 468;
  1160. content_view_height_with_activity : 512;
  1161. activity_btn_height : 56;
  1162. activity_btn_bottom_margin : 32;
  1163. content_title_fontSize : 14;
  1164. content_title_topMargin : 40;
  1165. content_uint_fontSize : 25;
  1166. content_money_topMargin : 12;
  1167. content_money_bottomMargin : 40;
  1168. content_button_topMargin : 40;
  1169. content_sepBar_height : 1;
  1170. enterContent_view_height : 56;
  1171. enterContent_fontsize : 17;
  1172. tinyappContent_view_height : 70;
  1173. tinyappContent_title_font : 13;
  1174. tinyappContent_desc_font : 15;
  1175. tinyappContent_name_font : 10;
  1176. tinyappContent_topBottom_margin : 15;
  1177. footer_btn_margin : 20;
  1178. lct_ope_padding_top : 16;
  1179. }
  1180. #LQTMoneyView {
  1181. inputContent_cell_height : 290;
  1182. btn_cell_height : 106;
  1183. btn_with_ptotocol_cell_height : 160;
  1184. inputContent_topbar_topMargin : 29;
  1185. inputContent_cell_topMargin : 16;
  1186. inputContent_leftRight_margin : 32;
  1187. inputContent_title_fontSize : 14;
  1188. inputContent_title_topMargin : 34;
  1189. inputContent_uint_fontSize : 30;
  1190. inputContent_money_fontSize : 56;
  1191. inputContent_money_height : 60;
  1192. inputContent_cardInfo_leftMargin : 15;
  1193. btn_cell_checkbox_len : 15;
  1194. btn_cell_protocol_topMargin : 30;
  1195. btn_cell_btn_topMargin : 30;
  1196. btn_cell_btn_topMargin_withProtocol : 15;
  1197. btn_cell_btn_height : 47;
  1198. redeemMarginTop : 24;
  1199. redeemTypeHeight : 64;
  1200. }
  1201. #WCPaasdfyLQTRedeemTypeCell {
  1202. paddingLeft : 32;
  1203. titleMarginUp : 12;
  1204. }
  1205. #LQTTransView {
  1206. trans_succ_icon_topMargin : 50;
  1207. trans_tips_topMargin : 25;
  1208. trans_unit_fontSize : 30;
  1209. trans_money_topMargin : 16;
  1210. trans_button_topMargin : 100;
  1211. }
  1212. #WCWebSearchViewControllerNewH5{
  1213. TextField_Top_Margin : 24;
  1214. }
  1215. #WCPaasdfyBizF2FViewController {
  1216. leftRightMargin : 15;
  1217. contentLeftRightMargin : 30;
  1218. topBarMargin : 30;
  1219. topBarHeight : 90;
  1220. mch_image_len : 40;
  1221. mch_name_font : 15;
  1222. nick_name_font : 13;
  1223. amountTitleTopMargin : 20;
  1224. amountTitle_font : 14;
  1225. unitLabel_font : 30;
  1226. amountTextField_font : 56;
  1227. amountTextField_height : 55;
  1228. descLabelTopMargin : 24;
  1229. fixAmountContainerViewTopMargin : 18;
  1230. transferBtnTopMargin : 30;
  1231. commentTextViewTopMargin : 30;
  1232. contentViewBottomMargin : 23;
  1233. }
  1234. #WCPaasdfyRewardViewController {
  1235. headImage_len : 62;
  1236. headImage_topMargin : 50;
  1237. view_container_cornerRadius : 3;
  1238. view_leftRightMargin : 20;
  1239. payer_detail_desc_font : 24;
  1240. payer_detail_amount_leftrightMargin : 17;
  1241. payer_detail_amount_innerMargin : 10;
  1242. payer_detail_amount_font : 21;
  1243. editmoney_amount_container_topMargin : 23;
  1244. editmoney_desc_container_topMargin : 20;
  1245. editmoney_button_TopMargin : 140;
  1246. editmoney_amount_container_height : 60;
  1247. editmoney_amount_font : 17;
  1248. confirm_money_uint_font : 33;
  1249. confirm_money_font : 48;
  1250. confirm_money_margin : 7;
  1251. confirm_money_continer_topMargin : 10;
  1252. confirm_money_btn_topMargin : 140;
  1253. intro_view_icon_topMargin : 96;
  1254. intro_view_tips_leftrightMargin : 62;
  1255. intro_view_btn_width : 180;
  1256. intro_view_btn_topMargin : 40;
  1257. intro_view_height : 444;
  1258. setup_view_headImg_topMargin : 50;
  1259. setup_view_amount_font : 20;
  1260. setup_view_confirm_btn_topMargin : 36;
  1261. setup_view_desc_container_height : 70;
  1262. setup_view_tips_font : 17;
  1263. setup_view_amount_container_height : 64;
  1264. setup_view_bottom_tips_font : 13;
  1265. codeView_len : 220;
  1266. receiver_detail_codeview_topMargin : 60;
  1267. receiver_detail_desc_font : 21;
  1268. receiver_detail_saveBtn_topMargin : 80;
  1269. receiver_detail_btn_innerMargin : 70;
  1270. invalid_tipsView_height : 36;
  1271. }
  1272. #WCPaasdfyTrasnferToBankCardViewController
  1273. {
  1274. kBankIconViewTopMargin : 15;
  1275. kBankInfoLabelTopMargin : 12;
  1276. kCurrencyInputViewTopMargin : 15;
  1277. kCurrencyInputViewHeight : 55;
  1278. kLineViewTopMargin : 5;
  1279. kConfirmButtonTopMargin : 30;
  1280. kBottomDescLabelTopMargin : 20;
  1281. kConfirmBottonMarginTop : 30;
  1282. kConfirmBottonMarginBottom : 40;
  1283. }
  1284. #WCPaasdfyTransferToBankCardPaidSuccessViewController {
  1285. kIconMarginTop : 104;
  1286. kBriefViewHeight : 166;
  1287. kBriefViewTitleFontSize : 16;
  1288. kDetailLabelFontSize : 14;
  1289. kDetailLabelMarginGap : 14;
  1290. }
  1291. #WCPaasdfyNewPwdViewController {
  1292. kTitleTopMargin : 80;
  1293. kPasswordTextFieldGap : 80;
  1294. kPwdCrtlLabelFont : 13;
  1295. kPwdCrtlLabelGap : 21;
  1296. kBiotricBtnBottomGap : 135;
  1297. kBiotricIconScale : 0.9;
  1298. kOldPasswordTextFieldGap : 96;
  1299. }
  1300. #WCPaasdfyPaidSuccessStatusViewController {
  1301. kIconMarginTop : 104;
  1302. kBriefViewHeight : 166;
  1303. kBriefViewTitleFontSize : 17;
  1304. kDetailLabelFontSize : 14;
  1305. kDetailLabelMarginGap : 8;
  1306. kDetailLabelTipsFontSize : 14;
  1307. }
  1308. #WCPaasdfyBindCardSuccessViewController
  1309. {
  1310. icon_size : 72;
  1311. icon_margin_up : 42;
  1312. icon_not_button_margin_up : 75;
  1313. title_font_size : 20;
  1314. title_color : "#353535";
  1315. title_margin_up : 24;
  1316. desc_font_size : 14;
  1317. desc_color : "#888888";
  1318. desc_margin_up : 15;
  1319. topLine_color : "#E5E5E5";
  1320. topLine_margin_left : 35;
  1321. topLine_margin_up : 126;
  1322. topLine_height : 0.5;
  1323. bankIcon_size : 46;
  1324. bankIcon_margin_left : 35;
  1325. bankIcon_margin_up : 20;
  1326. bankTitle_font_size : 13;
  1327. bankTitle_color : "#B2B2B2";
  1328. bankTitle_margin_left : 14.5;
  1329. bankTitle_margin_up : 21;
  1330. bankDesc_font_size : 20;
  1331. bankDesc_color : "#353535";
  1332. bankDesc_margin_left : 14.5;
  1333. bankDesc_margin_up : 3;
  1334. bankButton_width : 60;
  1335. bankButton_margin_right : 35;
  1336. bankButton_margin_up : 30;
  1337. bottomLine_color : "#E5E5E5";
  1338. bottomLine_margin_left : 35;
  1339. bottomLine_margin_up : 21;
  1340. bottomLine_height : 0.5;
  1341. doneButton_width : 180;
  1342. doneButton_margin_up : 482;
  1343. doneButton_no_button_margin_up : 462;
  1344. }
  1345. #multi_select_tool_view {
  1346. btn_margin_border : 57;
  1347. }
  1348. #WCPaasdfyAutoDeductVC {
  1349. productNameFont : 17;
  1350. productNameTopMargin : 20;
  1351. sellerNameFont : 14;
  1352. feeFont : 42;
  1353. feeLabelTopMargin : 24;
  1354. leftRightMargin : 20;
  1355. switchContentTopMargin : 45;
  1356. switchContentInnerMargin : 15;
  1357. infoDescFont : 14;
  1358. footerButtonTopMargin : 30;
  1359. }
  1360. #WCPaasdfyBalanceDetailUI
  1361. {
  1362. mainLogoTopMargin : 48;
  1363. mainContentViewBottomWhiteMargin : 40;
  1364. footerButton_bottomMargin : 64;
  1365. }
  1366. #WebMinimizationView
  1367. {
  1368. webCircle_radius : 120;
  1369. webCircle_bottomMargin : 16;
  1370. webCircle_sideMargin : 24;
  1371. webCircle_iconSize : 40;
  1372. webCircle_corner_radius : 144;
  1373. webCircle_corner_bottomMargin : 48;
  1374. webCircle_corner_sideMargin : 32;
  1375. webCircle_corner_iconSize : 48;
  1376. }
  1377. #ResetPwdViewController
  1378. {
  1379. fillCredInfo_header_height : 71;
  1380. fillCredInfo_headerTitle_topMargin : 38;
  1381. fillCredInfo_headerTitle_font : 22;
  1382. fillCredInfo_font : 17;
  1383. fillCredInfo_itemLeftMargin : 30;
  1384. fillCredInfo_leftRightMargin : 30;
  1385. fillCredInfo_button_width : 180;
  1386. fillCredInfo_button_topMargin : 160;
  1387. verifyWay_leftRightMargin : 24;
  1388. verifyWay_arrowRightMargin : 15;
  1389. verifyWay_titleFont : 20;
  1390. verifyWay_descFont : 14;
  1391. }
  1392. #WCPaasdfyECardBankCardListViewController {
  1393. title_topMargin : 48;
  1394. bank_arrow_rightMargin : 48;
  1395. leftRight_margin : 32;
  1396. }
  1397. #WCPaasdfyLQTDepositEntryViewController
  1398. {
  1399. Confirm_Button_Bottom_Margin_hasSafeInset : 45;
  1400. }
  1401. #WCPaasdfyLQTDepositNewPlanViewController
  1402. {
  1403. kTableViewMarginLeft : 28;
  1404. kDepositAmountFontSize : 14;
  1405. kDepositAmountMarginTop : 40;
  1406. kTextFieldMoneyFontSize : 48;
  1407. kDepositErrorTipsFontSize : 14;
  1408. kDepositErrorTipsColor : "#FA5151";
  1409. kTextFieldAmountMargin : 16;
  1410. kTextFieldHeight : 55;
  1411. kTextFieldLineViewMargin : 8;
  1412. kTipsLabelMarginBottom : 24;
  1413. kCellSeparatorMargin : 20;
  1414. kCellHeight : 56;
  1415. kItemTitleRightMargin : 10;
  1416. kAgreeBtn_LinkText_Margin : 4;
  1417. kTableView_ScrollOffset : 33;
  1418. protocolView_scrollOffset : 70;
  1419. protocolView_scrollOffset_marign : 24;
  1420. productWordLabel_font : 24;
  1421. productWordLabel_mriginUp : 32;
  1422. marketingWordLabel_font : 17;
  1423. marketingWordLabel_marginUp : 16;
  1424. protocol_view_bottomMargin : 20;
  1425. keyboard_offset_margin : 0;
  1426. }
  1427. #WCRedEnvelopesSelectSkinCellView {
  1428. /* cell_left_margin : 1.5A;*/
  1429. /* cell_right_margin : 0.5A;*/
  1430. cell_top_margin : 1.5A;
  1431. cell_height : 424;
  1432. cell_width : 256;
  1433. /* collection_view_header : 3A;*/
  1434. /* collection_view_line_spacing : 1A;*/
  1435. corp_name_font_size : 17;
  1436. descript_label_font_size : 14;
  1437. corp_name_label_bottom_margin : 4;
  1438. over_time_label_bottom_magin : 14;
  1439. /* select_image_size : 3A;*/
  1440. /* select_image_right_margin : 1.5A;*/
  1441. /* select_image_top_margin : 1A;*/
  1442. /* corp_label_bottom_margin : 9;*/
  1443. selected_image_view_size : 20;
  1444. selected_image_right_margin : 24;
  1445. selected_image_bottom_margin : 24;
  1446. border_width : 2;
  1447. over_time_label_font_size : 12;
  1448. select_label_font_size : 14;
  1449. /* over_time_label_top_margin : 9;*/
  1450. select_label_left_margin : 4;
  1451. promotion_cell_top_margin : 12A;
  1452. promotion_cell_height : 238;
  1453. promotion_cell_width : 18A;
  1454. promotion_cell_corp_name_font_size : 17;
  1455. promotion_cell_wording_font_size : 14;
  1456. promotion_cell_wording_top_margin : 4A;
  1457. }
  1458. #WCRedEnvelopesSelectSkinFlowLayout {
  1459. cell_width : 280;
  1460. cell_height : 496;
  1461. cell_margin : -5;
  1462. cell_top_margin : 5A;
  1463. exipre_desc_margin_top : 16;
  1464. }
  1465. #WCRedEnvelopesRedEnvelopesDetailViewController {
  1466. nickname_label_margin_y_new : 24;
  1467. nickname_label_margin_y_new_hasEmoticon : 24;
  1468. topCoverImg_topMargin : 70;
  1469. topCoverImg_topMargin_receiver : 57;
  1470. money_label_margin_y : 16;
  1471. thx_emoticon_view_topMargin : 26;
  1472. thx_emoticon_view_noSelect_topMargin : 26;
  1473. emoticon_view_loading_topMargin : 50;
  1474. nickname_label_leftRight_maxMargin : 40;
  1475. }
  1476. #WCPaasdfyLQTPanelView {
  1477. content_leftRight_margin : 32;
  1478. title_topMargin : 24;
  1479. button_height : 48;
  1480. scroll_bottomMargin : 0;
  1481. scroll_item_img_leftMargin : 32;
  1482. scroll_item_img_rightMargin : 24;
  1483. scroll_item_img_len : 48;
  1484. scroll_item_font : 17;
  1485. }
  1486. #WCPaasdfyOrderPayConfirmView
  1487. {
  1488. touchIDButton_marginLeft : 68;
  1489. background_width : 320;
  1490. }
  1491. #WCStoryBubbleView {
  1492. bubble_view_max_width : 288;
  1493. }
  1494. #PayMoneyLogic
  1495. {
  1496. modal_background_width : 320;
  1497. }
  1498. #RecordView
  1499. {
  1500. operate_button_radius : 12A;
  1501. operate_button_center_margin_bottom : 259;
  1502. recordtip_bg_center_y : 40% height;
  1503. record_trans_tip_wording_margin_top : 22;
  1504. record_trans_offset : 12A;
  1505. }
  1506. #WCPaasdfySelectVerifyTypeViewV2
  1507. {
  1508. header_padding_leftRight : 32;
  1509. button_marginBottom : 64;
  1510. }
  1511. #WCPaasdfyRealnameInfoViewV2
  1512. {
  1513. button_marginBottom : 96;
  1514. }
  1515. #WCPaasdfyLQTChargeSetting {
  1516. cell_leftRight_margin : 32;
  1517. header_mainTitle_font : 22 dynamic;
  1518. header_subTitle_font : 17 dynamic;
  1519. header_mainTitle_topMargin : 80;
  1520. header_sepLine_topMargin : 48;
  1521. charge_time_font : 17 dynamic;
  1522. cell_height : 64 dynamic;
  1523. }
  1524. #WCPaasdfyBalanceSaveView
  1525. {
  1526. view_leftMargin : 32;
  1527. card_view_topMargin : 32;
  1528. card_view_title_font : 15;
  1529. card_view_logo_leftMargin : 24;
  1530. money_view_money_font : 56;
  1531. money_view_top_margin : 16;
  1532. money_view_textfield_height : 60;
  1533. chargeEntry_font : 17;
  1534. chargeEntry_subFont : 14;
  1535. chargeEntry_margin : 18;
  1536. chargeEntry_topMargin : 32;
  1537. }
  1538. #WCPaasdfyBalanceSaveView_812 {
  1539. chargeEntry_topMargin : 48;
  1540. }
  1541. #WCPaasdfyOverseaMainWalletGrayCell
  1542. {
  1543. description_font_size: 16;
  1544. extra_font_size: 13;
  1545. }
  1546. #WCPaasdfyCardDetailView
  1547. {
  1548. bank_no_font : 32;
  1549. }
  1550. #WCPaasdfyAddressItem
  1551. {
  1552. labelWidth : 220;
  1553. }
  1554. #verifyTouchLockView {
  1555. icon_topMargin : 128;
  1556. }
  1557. #room_live
  1558. {
  1559. unit_length: 8; /*_A*/
  1560. startLive_BottomGradientLayerHeight: 40.75;
  1561. startLive_ControlPanelViewLeftRightMargin: 1.5;
  1562. startLive_ControlPanelViewButtonWidth: 6.5;
  1563. startLive_ContentLeftRightMargin: 3;
  1564. finder_circle_button_size_portrait: 5;
  1565. finder_circle_button_size_landscape: 4;
  1566. finder_bottom_action_button_distance_portrait: 1.5;
  1567. finder_bottom_action_button_distance_landscape: 1.5;
  1568. finder_comment_button_width_portrait: 10;
  1569. finder_comment_button_width_landscape: 10;
  1570. finder_anchor_assistant_comment_button_width_portrait: 11;
  1571. finder_anchor_assistant_comment_button_width_landscape: 11;
  1572. finder_pause_view_content_center_y_ratio: 0.29;
  1573. }
  1574. #WCRedEnvelopesStoryViewController {
  1575. redskinitemview_width: 264;
  1576. redskinitemview_height: 437;
  1577. }
  1578. #WCPaasdfyQRCoverPageView
  1579. {
  1580. topbar_height : 57;
  1581. topLeftIcon_marginLeft : 20;
  1582. topLeftTitle_fontSize : 16;
  1583. }
  1584. #WCPaasdfyCoinView
  1585. {
  1586. width : 104;
  1587. coin_amount_text_size : 22;
  1588. }
  1589. #WCCoinMoneyInputView
  1590. {
  1591. inputContent_cell_height : 290;
  1592. btn_cell_height : 106;
  1593. btn_with_ptotocol_cell_height : 160;
  1594. inputContent_topbar_topMargin : 29;
  1595. inputContent_cell_topMargin : 29;
  1596. inputContent_leftRight_margin : 32;
  1597. inputContent_title_fontSize : 14;
  1598. inputContent_title_topMargin : 34;
  1599. inputContent_uint_fontSize : 30;
  1600. inputContent_money_fontSize : 56;
  1601. inputContent_money_height : 60;
  1602. inputContent_cardInfo_leftMargin : 15;
  1603. btn_cell_checkbox_len : 15;
  1604. btn_cell_protocol_topMargin : 30;
  1605. btn_cell_btn_topMargin : 30;
  1606. btn_cell_btn_topMargin_withProtocol : 15;
  1607. btn_cell_btn_height : 47;
  1608. redeemMarginTop : 24;
  1609. redeemTypeHeight : 64;
  1610. }
  1611. #WCPaasdfyBalanceSelectCardView
  1612. {
  1613. content_size : 300;
  1614. }
  1615. #WCRedEnvelopesSelectSkinViewController_812 {
  1616. Use_Cover_Button_Margin_Bottom : 5A;
  1617. }
  1618. #WCRedEnvelopesSelectSkinViewController_844 {
  1619. Use_Cover_Button_Margin_Bottom : 6A;
  1620. }
  1621. #RemarkPageSheet_812 {
  1622. bottomView_topMargin : 7A;
  1623. bottomView_bottomMargin : 8A;
  1624. }
  1625. #RemarkPageSheet_844 {
  1626. bottomView_topMargin : 7A;
  1627. bottomView_bottomMargin : 8A;
  1628. }