style~ip6+.css 50 KB

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