7bd8a23b7e28df87cf3d1c4c8a79be6a.php 93.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
<?php return function ($in, $debugopt = 1) {
    $cx = array(
        'flags' => array(
            'jstrue' => false,
            'jsobj' => false,
            'spvar' => true,
            'prop' => false,
            'method' => false,
            'mustlok' => true,
            'echo' => false,
            'debug' => $debugopt,
        ),
        'constants' => array(),
        'helpers' => array(),
        'blockhelpers' => array(),
        'hbhelpers' => array(),
        'partials' => array(),
        'scopes' => array(),
        'sp_vars' => array('root' => $in),
        'lcrun' => 'Plugin\LCRun3',

    );
    
    return ''.'<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Cache-Control" content="no-siteapp" /> 
    <meta name="renderer" content="webkit">
    <meta name="keywords" content="'.Plugin\LCRun3::debug('[keywords]', 'encq', $cx, Plugin\LCRun3::debug('[keywords]', 'v', $cx, $in, array('keywords'))).'">
    <meta name="description" content="'.Plugin\LCRun3::debug('[description]', 'encq', $cx, Plugin\LCRun3::debug('[description]', 'v', $cx, $in, array('description'))).'">
    <title>'.Plugin\LCRun3::debug('[title]', 'encq', $cx, Plugin\LCRun3::debug('[title]', 'v', $cx, $in, array('title'))).'</title>
    <link rel="dns-prefetch" href="//cdn.yoho.cn">
    <link rel="dns-prefetch" href="//static.yohobuy.com">
    <link rel="dns-prefetch" href="//img10.static.yhbimg.com">
    <link rel="dns-prefetch" href="//img11.static.yhbimg.com">
    <link rel="dns-prefetch" href="//img12.static.yhbimg.com">
    <link rel="dns-prefetch" href="//img13.static.yhbimg.com">
'.Plugin\LCRun3::debug('if [rlsEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[rlsEnv]', 'v', $cx, $in, array('rlsEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.css">
';}).''.Plugin\LCRun3::debug('if [preEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[preEnv]', 'v', $cx, $in, array('preEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.css">
';}).''.Plugin\LCRun3::debug('if [testEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[testEnv]', 'v', $cx, $in, array('testEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.css">
';}).''.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '    <link rel="stylesheet" href="http://webstatic.dev.yohobuy.com/css/index.css">
';}).'</head>
<body>
'.''.Plugin\LCRun3::debug('[headerdata]', 'sec', $cx, Plugin\LCRun3::debug('[headerdata]', 'v', $cx, $in, array('headerdata')), $in, false, function($cx, $in) {return '    <div class="yoho-header">
        <div class="header-topwrapper clearfix">
            <div class="header-top">
                <div class="leftpart float-left">
                    <span class="icon-hamburger"></span>
                    <a href="http://www.yohobuy.com" class="header-yoho" >YOHO!有货</a>
                    <ul class="yohoproducts-list">
                        <li class="yohoproducts-item">
                            <a href="http://www.yoho.cn" class="yohogroup" en="YOHO!" cn="集团官网">YOHO!</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohoboys.com" class="yohogroup" en="YOHO!BOYS" cn="男生潮流">YOHO!BOYS</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohogirls.com" class="yohogroup" en="YOHO!GIRLS" cn="女生潮流">YOHO!GIRLS</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohoshow.com" class="yohogroup" en="YOHO!SHOW" cn="物趣分享">YOHO!SHOW</a>
                        </li>
                        <li class="yohoproducts-item">
                            <a href="http://www.yohood.cn" class="yohogroup" en="YO\'HOOD" cn="潮流嘉年华">YO\'HOOD</a>
                        </li>
                    </ul>
                </div>
                <div class="rightpart">
                    <div id="loginBox" class="float-left">
                        <span class="hi">Hi~</span>
                        <a href="http://www.yohobuy.com/signin.html" class="loginbar">[请登录]</a>
                        <a href="http://www.yohobuy.com/reg.html" class="registbar">[免费注册]</a>
                    </div>
                    <div class="tag-list-wrapper">
                        <ul class="tag-list">
                            <li class="tag-item myyoho" id="myYohoBox">
                                <span class="tag-seprate"></span>
                                <a href="http://www.yohobuy.com/home?t=1453340799.4986">MY有货</a>
                                <span class="icon-bottomarrow"></span>
                                <div class="myyoho-info"></div>
                            </li>
                            <li class="tag-item myorder">
                                <span class="tag-seprate"></span>
                                <span class="icon-papers"></span>
                                <a href="http://www.yohobuy.com/home/orders?t=1453168898.0176">我的订单</a>
                            </li>
                            <li class="tag-item mycollect">
                                <span class="tag-seprate"></span>
                                <span class="icon-heart"></span>
                                <a href="http://www.yohobuy.com/home/favorite?t=1453168898.0176">我的收藏</a>
                            </li>
                            <li class="tag-item message">
                                <span class="tag-seprate"></span>
                                <span class="icon-mail"></span>
                                <a href="http://www.yohobuy.com/home/message?t=1453168898.0176">消息</a>
                            </li>
                            <li class="tag-item phone">
                                <span class="tag-seprate"></span>
                                <span class="icon-iphone"></span>
                                <a href="http://www.yohobuy.com/download/app">手机版</a>
                                <div class="qr">
                                    <div class="qr-img"></div>
                                    <h3 class="qr-words">扫描二维码</h3>
                                    <h3 class="qr-words">下载有货手机客户端</h3>
                                    <h3 class="qr-more">
                                        <a href="http://www.yohobuy.com/download/app">更多客户端下载</a>
                                    </h3>
                                </div>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        <div class="header-navwrapper clearfix">
            <div class="header-navcontent">
                <ul class="first-nav-list float-left">
'.Plugin\LCRun3::debug('[navbars]', 'sec', $cx, Plugin\LCRun3::debug('[navbars]', 'v', $cx, $in, array('navbars')), $in, false, function($cx, $in) {return '                    <li class="first-nav-item '.Plugin\LCRun3::debug('[classname]', 'encq', $cx, Plugin\LCRun3::debug('[classname]', 'v', $cx, $in, array('classname'))).'">
                        <h3 class="name-cn">
                            <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[name_cn]', 'encq', $cx, Plugin\LCRun3::debug('[name_cn]', 'v', $cx, $in, array('name_cn'))).'</a>
                        </h3>
                        <h3 class="name-en">
                            <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[name_en]', 'encq', $cx, Plugin\LCRun3::debug('[name_en]', 'v', $cx, $in, array('name_en'))).'</a>
                        </h3>
                        <div class=\'sub-nav-wrapper\'>
                            <ul class="sub-nav-list">
'.Plugin\LCRun3::debug('[subnav]', 'sec', $cx, Plugin\LCRun3::debug('[subnav]', 'v', $cx, $in, array('subnav')), $in, false, function($cx, $in) {return '                                <li class="sub-nav-item">
                                    <a  href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).' 
'.Plugin\LCRun3::debug('if [is_new]', 'ifv', $cx, Plugin\LCRun3::debug('[is_new]', 'v', $cx, $in, array('is_new')), $in, function($cx, $in) {return '                                        <span class="newlogo"></span>
';}).'                                    </a>
'.Plugin\LCRun3::debug('if [thirdnav]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdnav]', 'v', $cx, $in, array('thirdnav')), $in, function($cx, $in) {return '                                    <div class="third-nav-wrapper">
                                        <div class="third-nav">
                                            <div class="categorywrapper" id="category'.Plugin\LCRun3::debug('../[index_main]', 'encq', $cx, Plugin\LCRun3::debug('../[index_main]', 'v', $cx, $cx['scopes'][count($cx['scopes'])-1], array('index_main'))).''.Plugin\LCRun3::debug('[index_sub]', 'encq', $cx, Plugin\LCRun3::debug('[index_sub]', 'v', $cx, $in, array('index_sub'))).'">
                                                <div class="category">
'.Plugin\LCRun3::debug('[thirdnav]', 'sec', $cx, Plugin\LCRun3::debug('[thirdnav]', 'v', $cx, $in, array('thirdnav')), $in, false, function($cx, $in) {return '                                                    <div class="thirdnavlist">
                                                        <h1 class="category-title thirdnavbar"><a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'">'.Plugin\LCRun3::debug('[title]', 'encq', $cx, Plugin\LCRun3::debug('[title]', 'v', $cx, $in, array('title'))).'</a> </h1>
                                                        <ul class="category-list">
'.Plugin\LCRun3::debug('[branditems]', 'sec', $cx, Plugin\LCRun3::debug('[branditems]', 'v', $cx, $in, array('branditems')), $in, false, function($cx, $in) {return '                                                            <li class="category-
                                                            item thirdnavbar">
                                                                <a href="'.Plugin\LCRun3::debug('[link]', 'encq', $cx, Plugin\LCRun3::debug('[link]', 'v', $cx, $in, array('link'))).'" hot='.Plugin\LCRun3::debug('[hot]', 'encq', $cx, Plugin\LCRun3::debug('[hot]', 'v', $cx, $in, array('hot'))).' >'.Plugin\LCRun3::debug('[brandname]', 'encq', $cx, Plugin\LCRun3::debug('[brandname]', 'v', $cx, $in, array('brandname'))).'</a>
                                                            </li>
';}).'                                                        </ul>
                                                    </div>
';}).'                                                </div>
                                            </div>
                                            <div class="showdetail" data-code="'.Plugin\LCRun3::debug('[content_code]', 'encq', $cx, Plugin\LCRun3::debug('[content_code]', 'v', $cx, $in, array('content_code'))).'">
                                                <a href="http://list.yohobuy.com/?gender=1,3&amp;msort=8">
                                                    <img src="data:image/gif;base64,R0lGODlhAQABAJEAAAAAAP///93d3f///yH5BAEAAAMALAAAAAABAAEAAAICVAEAOw==" alt="" style=""></a>
                                                <a class="title" href="http://list.yohobuy.com/?gender=1,3&amp;msort=8">热门小物优选</a>
                                            </div>
                                        </div>
                                    </div>
';}).'                                </li>
';}).'                            </ul>
                        </div>
                    </li>
';}).'                </ul>
                <div class="icon-logo"><a href="http://www.yohobuy.com/" class="main-link"></a></div>
                <div class="header-tool float-right">
                    <div class="search float-left '.Plugin\LCRun3::debug('[searchcate]', 'encq', $cx, Plugin\LCRun3::debug('[searchcate]', 'v', $cx, $in, array('searchcate'))).'" >
                        <form action="http://search.yohobuy.com" method="get" id="searchForm">
                            <span class="searchspan">
                                <input type="hidden" id="defaultsearch">
                                <input class="searchinput" type="text" name="query" id="query_key" autocomplete="off" x-webkit-speech="" lang="zh-CN" x-webkit-grammar="builtin:translate" value="" onfocus="if(this.value==this.defaultValue){this.value=\'\';this.style.color=\'#333\'}" onblur="if(this.value==\'\'){this.value=this.defaultValue;this.style.color=\'#999\'}" maxlength="30"></span>
                            <a class="icon-search" href="javascript:submitSearch();"></a>
                            <ul class="search-list"></ul>
                        </form>
                    </div>
                    <div class="gobuy float-left '.Plugin\LCRun3::debug('[gobytype]', 'encq', $cx, Plugin\LCRun3::debug('[gobytype]', 'v', $cx, $in, array('gobytype'))).'" id="miniCartBox">
                       
                        <span class="ic-infomation">0</span>
                        <div class="gobuy-wrapper"></div>
                    
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div id="goodcartempwarpper">
        <script type="text/html" id="mini-cart-tpl">
        \\{\\{#carData\\}\\}
        <div class="gobuy-notempty">
          <div class="goods-list-wrapper">
            <ul class="goods-list">
                \\{\\{#main_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img" />
                            </a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/main_goods\\}\\}
                \\{\\{#advance_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/advance_goods\\}\\}
                \\{\\{# outlet_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/outlet_goods\\}\\}
                \\{\\{#gift_goods\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/gift_goods\\}\\}
                \\{\\{#need_pay_gifts\\}\\}
                    {{#notzero buy_number}}
                        <li class="goods-item">
                            <a href="\\{\\{product_url\\}\\}">
                                <img src="\\{\\{default_img\\}\\}" alt="" class="goods-img"></a>
                            <div class="goods-detail float-left">
                                <h3 class="content"><a href="\\{\\{product_url\\}\\}">\\{\\{product_name\\}\\}</a></h3>
                                <h3 class="style">
                                    颜色:
                                    <span class="color">\\{\\{color_name\\}\\}</span>
                                    尺码:
                                    <span class="size">\\{\\{size_name\\}\\}</span>
                                </h3>
                            </div>
                            <div class="goods-price float-left">
                                <h3 class="priceandnum">
                                    <span class="price">\\{\\{show_price\\}\\}</span>
                                    x
                                    <span class="num">\\{\\{buy_number\\}\\}</span>
                                </h3>
                                <a href="javascript:void(0)" class="delete goodscardelete" goodsid=\\{\\{goods_incart_id\\}\\} cheapest=\\{\\{is_cheapest_free\\}\\}>删除</a>
                            </div>
                        </li>
                    {{/notzero}}
                \\{\\{/need_pay_gifts\\}\\}
            </ul>
            <ul class="activity-list">
                {{#if has_promotion\\}\\}
                <li class="activity-item">
                    <span class="activity-name">活动</span>
                    <h3 class="activity-content">
                        \\{\\{#if fit_outlet_promotion \\}\\}购outlet商品,满¥1999再享9折
                        \\{\\{/if\\}\\}
                        \\{\\{#if has_other_promotion\\}\\}
                            <span class="mycart_i_down" title="更多" ></span>
                        \\{\\{/if\\}\\}
                        \\{\\{#if has_first_promotion\\}\\}
                            \\{\\{first_promotions.promotion_title\\}\\}
                        \\{\\{/if\\}\\}
                    </h3>
                </li>
                \\{\\{/if\\}\\}
                \\{\\{#if fit_free_shipping \\}\\}
                <li  class="activity-item">
                    <span class="activity-name">免运费</span>
                    <h3 class="activity-content">全场满 ¥\\{\\{fit_free_shipping\\}\\}免运费</h3>
                </li>
                \\{\\{/if\\}\\}
            </ul>
        </div>
        <div class="gobuy-notempty-footer">
            <h3>
                <a href="http://www.yohobuy.com/shopping/cart">去购物车结算</a>
            </h3>
        </div>
        \\{\\{/carData\\}\\}
        </script>
        <script type="text/html" id="tmpl-my-login-new">
          <div class="myyoho-info-header clearfix">
            <div class="myyoho-photo" ><img src="\\{\\{headerimg head_ico\\}\\}" alt="" data-url =""></div>
            <h3 class="user-email"><a href="http://www.yohobuy.com/home?t=\\{\\{random\\}\\}">\\{\\{profile_name\\}\\}</a></h3>
            <h3 class="user-level">
                VIP:
                <span class="leveldetail">\\{\\{vip.curVipInfo.title\\}\\}</span>
            </h3>
            \\{\\{#unless vip3 \\}\\}
            <div class="levelinfo">
                <div class="levelwrapper float-left">
                    <div class="levelspan">
                        \\{\\{vip.curYearCost\\}\\}/\\{\\{vip.nextVipInfo.needCost\\}\\}
                    </div>
                    <p class="\\{\\{#if vip.curYearCostPer\\}\\}integrate\\{\\{/if\\}\\}" style="width: \\{\\{vip.curYearCostPer\\}\\}%;"></p>
                </div>
                <span class="cardcate float-left">\\{\\{vip.nextVipInfo.title\\}\\}</span>
            </div>
            \\{\\{/unless\\}\\}
          </div>
          <ul class="myyoho-info-content">
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/orders?t=\\{\\{timestamp\\}\\}">待处理的订单</a>
                </span>
                <span class="itemnum float-right">\\{\\{orderCount\\}\\}</span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/favorite?t=\\{\\{timestamp\\}\\}">我的收藏</a>
                </span>
                <span class="itemnum float-right"></span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/coupons?t=\\{\\{timestamp\\}\\}">我的优惠券</a>
                </span>
                <span class="itemnum float-right">\\{\\{couponCount\\}\\}</span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/currency?t=\\{\\{timestamp\\}\\}">我的YOHO币</a>
                </span>
                <span class="itemnum float-right">\\{\\{YohocoinCount\\}\\}</span>
            </li>
            <li class="item">
                <span class="itemdetail float-left">
                    <a href="http://www.yohobuy.com/home/returns?t=\\{\\{timestamp\\}\\}">我的退货换货</a>
                </span>
                <span class="itemnum float-right">\\{\\{refundCount\\}\\}</span>
            </li>
          </ul>
          <div class="myyoho-info-footer">
            <a href="http://www.yohobuy.com/home/user?t=\\{\\{timestamp\\}\\}">完善资料</a>
          </div>
        </script>
    </div>
    <input id="api-domain" type="hidden" value="'.Plugin\LCRun3::debug('[apiDomain]', 'encq', $cx, Plugin\LCRun3::debug('[apiDomain]', 'v', $cx, $in, array('apiDomain'))).'">
';}).'    
'.'    '.''.Plugin\LCRun3::debug('[simpleHeader]', 'sec', $cx, Plugin\LCRun3::debug('[simpleHeader]', 'v', $cx, $in, array('simpleHeader')), $in, false, function($cx, $in) {return '<div class="simple-header">
    <div class="header-inner clearfix">
'.Plugin\LCRun3::debug('[logo]', 'sec', $cx, Plugin\LCRun3::debug('[logo]', 'v', $cx, $in, array('logo')), $in, false, function($cx, $in) {return '        <h1 class="logo">
            <a href="'.Plugin\LCRun3::debug('[url]', 'encq', $cx, Plugin\LCRun3::debug('[url]', 'v', $cx, $in, array('url'))).'">
                <img src="'.Plugin\LCRun3::debug('[img]', 'encq', $cx, Plugin\LCRun3::debug('[img]', 'v', $cx, $in, array('img'))).'" alt="">
            </a>
        </h1>
';}).'        <ul class="header-tool clearfix">
'.Plugin\LCRun3::debug('[tool]', 'sec', $cx, Plugin\LCRun3::debug('[tool]', 'v', $cx, $in, array('tool')), $in, false, function($cx, $in) {return '            <li>
                <span>Hi~</span>
'.Plugin\LCRun3::debug('[user]', 'sec', $cx, Plugin\LCRun3::debug('[user]', 'v', $cx, $in, array('user')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('[userCenter]', 'encq', $cx, Plugin\LCRun3::debug('[userCenter]', 'v', $cx, $in, array('userCenter'))).'">'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'</a>
';}).'
'.Plugin\LCRun3::debug('[loginHref]', 'sec', $cx, Plugin\LCRun3::debug('[loginHref]', 'v', $cx, $in, array('loginHref')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'">[请登录]</a>
';}).'
'.Plugin\LCRun3::debug('[logoutHref]', 'sec', $cx, Plugin\LCRun3::debug('[logoutHref]', 'v', $cx, $in, array('logoutHref')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'">[退出]</a>
';}).'
'.Plugin\LCRun3::debug('[registerHref]', 'sec', $cx, Plugin\LCRun3::debug('[registerHref]', 'v', $cx, $in, array('registerHref')), $in, false, function($cx, $in) {return '                <a href="'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'">[免费注册]</a>
';}).'            </li>
            <li class="tool-options">
                <span><a href="'.Plugin\LCRun3::debug('[userCenter]', 'encq', $cx, Plugin\LCRun3::debug('[userCenter]', 'v', $cx, $in, array('userCenter'))).'">MY有货</a></span>
                <i class="options-icon down iconfont">&#xe604;</i>
                <i class="options-icon up iconfont">&#xe603;</i>
                <div class="tool-select">
                    <a href="'.Plugin\LCRun3::debug('[favoriteHref]', 'encq', $cx, Plugin\LCRun3::debug('[favoriteHref]', 'v', $cx, $in, array('favoriteHref'))).'">我的收藏</a>
                    <a href="'.Plugin\LCRun3::debug('[couponHref]', 'encq', $cx, Plugin\LCRun3::debug('[couponHref]', 'v', $cx, $in, array('couponHref'))).'">优惠券</a>
                </div>
            </li>
            <li>         
                <a href="'.Plugin\LCRun3::debug('[orderHref]', 'encq', $cx, Plugin\LCRun3::debug('[orderHref]', 'v', $cx, $in, array('orderHref'))).'">订单中心</a>
            </li>
            <li>         
                <a href="'.Plugin\LCRun3::debug('[helpHref]', 'encq', $cx, Plugin\LCRun3::debug('[helpHref]', 'v', $cx, $in, array('helpHref'))).'">帮助中心</a>
            </li>
            <li>
                <i class="tell-icon iconfont">&#xe61c;</i>
                <span>400-9889-9646</span>
            </li>
';}).'        </ul>
    </div>
    <input id="api-domain" type="hidden" value="'.Plugin\LCRun3::debug('[apiDomain]', 'encq', $cx, Plugin\LCRun3::debug('[apiDomain]', 'v', $cx, $in, array('apiDomain'))).'">
</div>
';}).''.''.'<div class="user-me-page me-page yoho-page clearfix">
'.Plugin\LCRun3::debug('[user]', 'sec', $cx, Plugin\LCRun3::debug('[user]', 'v', $cx, $in, array('user')), $in, false, function($cx, $in) {return ''.'        <p class="home-path">
            <span class="path-icon"></span>
'.Plugin\LCRun3::debug('each [path]', 'sec', $cx, Plugin\LCRun3::debug('[path]', 'v', $cx, $in, array('path')), $in, true, function($cx, $in) {return ''.Plugin\LCRun3::debug('unless @[first]', 'unl', $cx, Plugin\LCRun3::debug('@[first]', 'v', $cx, $cx['sp_vars'], array('first')), $in, function($cx, $in) {return '                    &nbsp;&nbsp;>&nbsp;&nbsp;
';}).''.Plugin\LCRun3::debug('if [href]', 'ifv', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href')), $in, function($cx, $in) {return '                    <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
';}, function($cx, $in) {return '                    <span>'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</span>
';}).'';}).'        </p>'.''.'        <div class="home-navigation block">
            <p class="title ucenter"></p>
            <div class="user-thumb">
                <div class="thumb-bg">
                    <img id="user-thumb" src="'.Plugin\LCRun3::debug('[userThumb]', 'encq', $cx, Plugin\LCRun3::debug('[userThumb]', 'v', $cx, $in, array('userThumb'))).'">
                </div>
            </div>
'.Plugin\LCRun3::debug('[homeNav]', 'sec', $cx, Plugin\LCRun3::debug('[homeNav]', 'v', $cx, $in, array('homeNav')), $in, false, function($cx, $in) {return '                <div class="nav-group">
                    <h2 class="nav-title row">
                        <span class="title-icon"></span>
                        '.Plugin\LCRun3::debug('[title]', 'encq', $cx, Plugin\LCRun3::debug('[title]', 'v', $cx, $in, array('title'))).'
                    </h2>
                    <ul>
'.Plugin\LCRun3::debug('each [subNav]', 'sec', $cx, Plugin\LCRun3::debug('[subNav]', 'v', $cx, $in, array('subNav')), $in, true, function($cx, $in) {return '                            <li class="row'.Plugin\LCRun3::debug('if @[first]', 'ifv', $cx, Plugin\LCRun3::debug('@[first]', 'v', $cx, $cx['sp_vars'], array('first')), $in, function($cx, $in) {return ' first';}).''.Plugin\LCRun3::debug('if [active]', 'ifv', $cx, Plugin\LCRun3::debug('[active]', 'v', $cx, $in, array('active')), $in, function($cx, $in) {return ' active';}).'">
                                <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'" target="'.Plugin\LCRun3::debug('if [isBlank]', 'ifv', $cx, Plugin\LCRun3::debug('[isBlank]', 'v', $cx, $in, array('isBlank')), $in, function($cx, $in) {return '_blank';}).'" >'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
'.Plugin\LCRun3::debug('if [count]', 'ifv', $cx, Plugin\LCRun3::debug('[count]', 'v', $cx, $in, array('count')), $in, function($cx, $in) {return '                                    <span>('.Plugin\LCRun3::debug('[count]', 'encq', $cx, Plugin\LCRun3::debug('[count]', 'v', $cx, $in, array('count'))).')</span>
';}).'                            </li>
';}).'                    </ul>
                </div>
';}).'        </div>'.'        <div class="me-main">
            <div class="userinfo-edit block">
                <h2 class="title"></h2>
                <div class="edit-box">
'.''.Plugin\LCRun3::debug('[userPersonalInfo]', 'sec', $cx, Plugin\LCRun3::debug('[userPersonalInfo]', 'v', $cx, $in, array('userPersonalInfo')), $in, false, function($cx, $in) {return '                   <div class="user-personal-info">
                   <h2 class="sub-title">
                       <div class="more"><a class="btn-edit" title="修改"></a></div>
                       '.Plugin\LCRun3::debug('[subTitle]', 'encq', $cx, Plugin\LCRun3::debug('[subTitle]', 'v', $cx, $in, array('subTitle'))).'
                   </h2>
                   <form action=""  '.Plugin\LCRun3::debug('[firstBox]', 'sec', $cx, Plugin\LCRun3::debug('[firstBox]', 'v', $cx, $in, array('firstBox')), $in, false, function($cx, $in) {return 'class="first" ';}).'>
                       <div class="box">
                           <div class="user-info">
'.Plugin\LCRun3::debug('[email]', 'sec', $cx, Plugin\LCRun3::debug('[email]', 'v', $cx, $in, array('email')), $in, false, function($cx, $in) {return '                               <div class="form-group">
                                   <label>'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
                                   <span class="plain">'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'</span>
                               </div>
';}).'                   
'.Plugin\LCRun3::debug('each [name]', 'sec', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name')), $in, true, function($cx, $in) {return '                               <div class="form-group">
                                   <label for="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'">'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
                                   <input type="text" name=\''.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'\' id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" class="input-1" value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'">
                                   <span class="tips-p" id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'-tip">'.Plugin\LCRun3::debug('[tips]', 'encq', $cx, Plugin\LCRun3::debug('[tips]', 'v', $cx, $in, array('tips'))).'</span>
                               </div>
';}).'                   
'.Plugin\LCRun3::debug('[gender]', 'sec', $cx, Plugin\LCRun3::debug('[gender]', 'v', $cx, $in, array('gender')), $in, false, function($cx, $in) {return '                               <div class="form-group">
                                   <label for="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'">'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
'.Plugin\LCRun3::debug('each [data]', 'sec', $cx, Plugin\LCRun3::debug('[data]', 'v', $cx, $in, array('data')), $in, true, function($cx, $in) {return '                                   <input type="radio" name=\''.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'\' id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'" '.Plugin\LCRun3::debug('[isChecked]', 'sec', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, false, function($cx, $in) {return 'checked';}).'>'.Plugin\LCRun3::debug('[text]', 'encq', $cx, Plugin\LCRun3::debug('[text]', 'v', $cx, $in, array('text'))).'
';}).'                               </div>
';}).'                   
'.Plugin\LCRun3::debug('[birthday]', 'sec', $cx, Plugin\LCRun3::debug('[birthday]', 'v', $cx, $in, array('birthday')), $in, false, function($cx, $in) {return '                               <div class="form-group">
                                   <label>'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
'.Plugin\LCRun3::debug('each [selects]', 'sec', $cx, Plugin\LCRun3::debug('[selects]', 'v', $cx, $in, array('selects')), $in, true, function($cx, $in) {return '                                   <select name="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" >
'.Plugin\LCRun3::debug('each [options]', 'sec', $cx, Plugin\LCRun3::debug('[options]', 'v', $cx, $in, array('options')), $in, true, function($cx, $in) {return '                                       <option value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'" '.Plugin\LCRun3::debug('[isChecked]', 'sec', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, false, function($cx, $in) {return 'selected';}).'>'.Plugin\LCRun3::debug('[text]', 'encq', $cx, Plugin\LCRun3::debug('[text]', 'v', $cx, $in, array('text'))).'</option>
';}).'                                   </select>'.Plugin\LCRun3::debug('[unit]', 'encq', $cx, Plugin\LCRun3::debug('[unit]', 'v', $cx, $in, array('unit'))).'
';}).'                                   <span class="tips-p" id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'-tip">'.Plugin\LCRun3::debug('[tips]', 'encq', $cx, Plugin\LCRun3::debug('[tips]', 'v', $cx, $in, array('tips'))).'</span>
                               </div>
';}).'                   
'.Plugin\LCRun3::debug('[profession]', 'sec', $cx, Plugin\LCRun3::debug('[profession]', 'v', $cx, $in, array('profession')), $in, false, function($cx, $in) {return '                               <div class="form-group">
                                   <label for="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'">'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
'.Plugin\LCRun3::debug('each [data]', 'sec', $cx, Plugin\LCRun3::debug('[data]', 'v', $cx, $in, array('data')), $in, true, function($cx, $in) {return '                                   <input type="radio" name=\''.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'\' id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'" '.Plugin\LCRun3::debug('[isChecked]', 'sec', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, false, function($cx, $in) {return 'checked';}).'>'.Plugin\LCRun3::debug('[text]', 'encq', $cx, Plugin\LCRun3::debug('[text]', 'v', $cx, $in, array('text'))).'
';}).'                               </div>
';}).'                   
'.Plugin\LCRun3::debug('[income]', 'sec', $cx, Plugin\LCRun3::debug('[income]', 'v', $cx, $in, array('income')), $in, false, function($cx, $in) {return '                               <div class="form-group">
                                   <label>'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
                                   <select name="income" id="income" value="2">
'.Plugin\LCRun3::debug('each [data]', 'sec', $cx, Plugin\LCRun3::debug('[data]', 'v', $cx, $in, array('data')), $in, true, function($cx, $in) {return '                                       <option value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'" '.Plugin\LCRun3::debug('[isChecked]', 'sec', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, false, function($cx, $in) {return 'selected';}).'>'.Plugin\LCRun3::debug('[text]', 'encq', $cx, Plugin\LCRun3::debug('[text]', 'v', $cx, $in, array('text'))).'</option>
';}).'                                   </select>
                               </div>
';}).'                   
                               <input type="button" id="'.Plugin\LCRun3::debug('[submitId]', 'encq', $cx, Plugin\LCRun3::debug('[submitId]', 'v', $cx, $in, array('submitId'))).'" class="btn-b1" value="保存">
                           </div>
                   
                           <div class="user-profile">
                               <img src="'.Plugin\LCRun3::debug('[profileSrc]', 'encq', $cx, Plugin\LCRun3::debug('[profileSrc]', 'v', $cx, $in, array('profileSrc'))).'" alt="">
                               <br>
                           </div>
                       </div>
                   </form>
                   </div>
';}).''.''.''.Plugin\LCRun3::debug('[contactInfo]', 'sec', $cx, Plugin\LCRun3::debug('[contactInfo]', 'v', $cx, $in, array('contactInfo')), $in, false, function($cx, $in) {return '                   <div class="user-contact-info">
                   <h2 class="sub-title">
                       <div class="more"><a class="btn-edit" title="修改"></a></div>
                       '.Plugin\LCRun3::debug('[subTitle]', 'encq', $cx, Plugin\LCRun3::debug('[subTitle]', 'v', $cx, $in, array('subTitle'))).'
                   </h2>
                   <form action="">
                       <div class="box">
'.Plugin\LCRun3::debug('[region]', 'sec', $cx, Plugin\LCRun3::debug('[region]', 'v', $cx, $in, array('region')), $in, false, function($cx, $in) {return '                           <div class="form-group">
                               <label>'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
'.Plugin\LCRun3::debug('each [selects]', 'sec', $cx, Plugin\LCRun3::debug('[selects]', 'v', $cx, $in, array('selects')), $in, true, function($cx, $in) {return '                               <select name="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" >
'.Plugin\LCRun3::debug('each [options]', 'sec', $cx, Plugin\LCRun3::debug('[options]', 'v', $cx, $in, array('options')), $in, true, function($cx, $in) {return '                                   <option value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'" '.Plugin\LCRun3::debug('[isChecked]', 'sec', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, false, function($cx, $in) {return 'selected';}).'>'.Plugin\LCRun3::debug('[text]', 'encq', $cx, Plugin\LCRun3::debug('[text]', 'v', $cx, $in, array('text'))).'</option>
';}).'                               </select>
';}).'                           </div>
';}).''.Plugin\LCRun3::debug('[details]', 'sec', $cx, Plugin\LCRun3::debug('[details]', 'v', $cx, $in, array('details')), $in, false, function($cx, $in) {return '                           <div class="form-group">
                               <label for="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'">'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
                               <input type="text" name=\''.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'\' id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'" class="input-1 '.Plugin\LCRun3::debug('[longInput]', 'sec', $cx, Plugin\LCRun3::debug('[longInput]', 'v', $cx, $in, array('longInput')), $in, false, function($cx, $in) {return 'width-300';}).'" value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'">
                               <span class="tips-p" id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'-tip">'.Plugin\LCRun3::debug('[tips]', 'encq', $cx, Plugin\LCRun3::debug('[tips]', 'v', $cx, $in, array('tips'))).'</span>
                           </div>
';}).'                           <input type="button" id="'.Plugin\LCRun3::debug('[submitId]', 'encq', $cx, Plugin\LCRun3::debug('[submitId]', 'v', $cx, $in, array('submitId'))).'" class="btn-b1" value="保存">
                       </div>
                   </form>
                   </div>
';}).''.''.''.Plugin\LCRun3::debug('[habbit]', 'sec', $cx, Plugin\LCRun3::debug('[habbit]', 'v', $cx, $in, array('habbit')), $in, false, function($cx, $in) {return '                   <div class="user-habbit-info">
                       <h2 class="sub-title">
                           <div class="more"><a class="btn-edit" title="修改"></a></div>
                           '.Plugin\LCRun3::debug('[subTitle]', 'encq', $cx, Plugin\LCRun3::debug('[subTitle]', 'v', $cx, $in, array('subTitle'))).'
                       </h2>
                       <form action="">
                           <div class="box">
'.Plugin\LCRun3::debug('each [details]', 'sec', $cx, Plugin\LCRun3::debug('[details]', 'v', $cx, $in, array('details')), $in, true, function($cx, $in) {return '                               <div class="form-group">
                                   <label for="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'">'.Plugin\LCRun3::debug('[labelText]', 'encq', $cx, Plugin\LCRun3::debug('[labelText]', 'v', $cx, $in, array('labelText'))).'</label>
'.Plugin\LCRun3::debug('each [data]', 'sec', $cx, Plugin\LCRun3::debug('[data]', 'v', $cx, $in, array('data')), $in, true, function($cx, $in) {return '                                   <input type="'.Plugin\LCRun3::debug('[type]', 'encq', $cx, Plugin\LCRun3::debug('[type]', 'v', $cx, $in, array('type'))).'" name=\''.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'\' '.Plugin\LCRun3::debug('if [index]', 'ifv', $cx, Plugin\LCRun3::debug('[index]', 'v', $cx, $in, array('index')), $in, function($cx, $in) {return 'id="'.Plugin\LCRun3::debug('[index]', 'encq', $cx, Plugin\LCRun3::debug('[index]', 'v', $cx, $in, array('index'))).'"';}, function($cx, $in) {return 'id="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'"';}).' value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'" '.Plugin\LCRun3::debug('[isChecked]', 'sec', $cx, Plugin\LCRun3::debug('[isChecked]', 'v', $cx, $in, array('isChecked')), $in, false, function($cx, $in) {return 'checked';}).'>'.Plugin\LCRun3::debug('[text]', 'encq', $cx, Plugin\LCRun3::debug('[text]', 'v', $cx, $in, array('text'))).'
';}).'                               </div>
';}).'                               <input type="button" id="'.Plugin\LCRun3::debug('[submitId]', 'encq', $cx, Plugin\LCRun3::debug('[submitId]', 'v', $cx, $in, array('submitId'))).'" class="btn-b1" value="保存">
                           </div>
                       </form>
                   </div>
';}).''.''.''.Plugin\LCRun3::debug('[favorite]', 'sec', $cx, Plugin\LCRun3::debug('[favorite]', 'v', $cx, $in, array('favorite')), $in, false, function($cx, $in) {return '                   <div class="user-favorite-info">
                       <h2 class="sub-title">
                           <div class="more"><a class="btn-edit" title="修改"></a></div>
                           '.Plugin\LCRun3::debug('[subTitle]', 'encq', $cx, Plugin\LCRun3::debug('[subTitle]', 'v', $cx, $in, array('subTitle'))).'
                       </h2>
                       <form action="">
                           <div class="box">
                               <ul class="brand-box" id="brand-box">
'.Plugin\LCRun3::debug('each [favoriteBrands]', 'sec', $cx, Plugin\LCRun3::debug('[favoriteBrands]', 'v', $cx, $in, array('favoriteBrands')), $in, true, function($cx, $in) {return '                                   <li id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                       <a href="javascript:void(0);" class="btn-del"></a>
                                   </li>
';}).'                               </ul>
                               <div class="form-group">
                                   <input id="keywords" name="keywords" class="input-1 width-150" type="text">
                                   <input id="add-brand-btn" class="btn-submit-sm" type="button" value="添加">
                                   <span>填写你喜欢的品牌,或者从以下热门品牌里选择。</span>
                               </div>
                               <ul>
'.Plugin\LCRun3::debug('each [hotBrands]', 'sec', $cx, Plugin\LCRun3::debug('[hotBrands]', 'v', $cx, $in, array('hotBrands')), $in, true, function($cx, $in) {return '                                   <li>
                                       <input id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'" type="checkbox" name="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'" value="'.Plugin\LCRun3::debug('[value]', 'encq', $cx, Plugin\LCRun3::debug('[value]', 'v', $cx, $in, array('value'))).'">'.Plugin\LCRun3::debug('[text]', 'encq', $cx, Plugin\LCRun3::debug('[text]', 'v', $cx, $in, array('text'))).'
                                   </li>
';}).'                               </ul>
                               <input type="hidden" id="likebrand"  name="brand" value="'.Plugin\LCRun3::debug('[likebrand]', 'encq', $cx, Plugin\LCRun3::debug('[likebrand]', 'v', $cx, $in, array('likebrand'))).'">
                               <input type="button" id="'.Plugin\LCRun3::debug('[submitId]', 'encq', $cx, Plugin\LCRun3::debug('[submitId]', 'v', $cx, $in, array('submitId'))).'" class="btn-b1" value="保存">
                           </div>
                       </form>
                   </div>
';}).''.'                </div>
            </div>
        </div>
';}).'
'.'    <p class="help-us">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '            <img class="help-us-icon" src="http://webstatic.dev.yohobuy.com/img/home/help-us.svg">
';}, function($cx, $in) {return '            <img class="help-us-icon" src="http://cdn.yoho.cn/yohobuy/assets/img/home/help-us.svg">
';}).'        客服电话:400-889-9646 08:00-22:30(周一至周日)
    </p>'.'</div>
'.''.'    <div class="yoho-footer">
'.Plugin\LCRun3::debug('if [footerTop]', 'ifv', $cx, Plugin\LCRun3::debug('[footerTop]', 'v', $cx, $in, array('footerTop')), $in, function($cx, $in) {return '            <div class="footertop">
                <div class="index-foot">
                    <dl class="center-content clearfix">
                        <dd>
                            <div class="foot-panel">
                                <div class="title">
                                    <div class="title-line"></div>
                                    <div class="text">
                                        <span>有货SERVICES</span>
                                    </div>
                                </div>
                                <div id="foot-services">
                                    <ul class="two-dim clearfix">
                                        <li class="left">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/qr-app.png">
';}, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/qr-app.png">
';}).'                                            <p>YOHO!有货</p>
                                        </li>
                                        <li class="left">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/qr-weixin.png">
';}, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/qr-app.png">
';}).'                                            <p>微信</p>
                                        </li>
                                        <li class="left">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/qr-weibo.png">
';}, function($cx, $in) {return '                                                <img class="dim-img lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/qr-app.png">
';}).'                                            <p>微博</p>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                            <p class="item-nav center">
                                <span class="iconfont cur" key="0">&#xe619;</span>
                            </p>
                        </dd>
                        <dd>
                            <div id="feed-back-box-list" class="foot-panel">
                                <div class="title">
                                    <div class="title-line"></div>
                                    <div class="text">
                                        <span>意见反馈</span>
                                    </div>
                                </div>
                                <ul class="vote clearfix">
                                    <li key="0">
                                        <form class="feed-back-form" action="#">
                                            <div>您喜欢有货的新版吗?</div>
                                            <div class="vote-item clearfix">
                                                <p>
                                                    <input type="radio" name="solution" value="33">非常喜欢
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="34">喜欢
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="35">一般般
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="36">不喜欢
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="37">非常不喜欢
                                                </p>
                                            </div>
                                            <div>
                                                <span class="feed-back-btn button">提交</span>
                                            </div>
                                            <input class="question-id" type="hidden" name="question_id" value="38">
                                            <input class="feedback-id" type="hidden" name="feedback_id" value="5">
                                        </form>
                                    </li>
                                    <li class="hide" key="1">
                                        <form class="feed-back-form" action="#">
                                            <div>您可以方便的找到想查看的内容吗?</div>
                                            <div class="vote-item clearfix">
                                                <p>
                                                    <input type="radio" name="solution" value="38">非常方便
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="39">方便
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="40">一般般
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="41">不方便
                                                </p>
                                                <p>
                                                    <input type="radio" name="solution" value="42">非常不方便
                                                </p>
                                            </div>
                                            <div>
                                                <span class="feed-back-btn button">提交</span>
                                            </div>
                                            <input class="question-id" type="hidden" value="39">
                                            <input class="feedback-id" type="hidden" value="5">
                                        </form>
                                    </li>
                                    <li class="hide" key="2">
                                        <form class="feed-back-form" action="#">
                                            <div>您对新版还有哪些意见或建议?</div>
                                            <textarea name="answer" id="feedback-answer" class="feedback-answer"></textarea>
                                            <div>
                                                <span class="feed-back-btn button">提交</span>
                                            </div>
                                            <input class="question-id" type="hidden" value="37">
                                            <input class="feedback-id" type="hidden" value="5">
                                        </form>
                                    </li>
                                </ul>
                            </div>
                            <p id="feed-back-page" class="item-nav center">
                                <span class="iconfont cur">&#xe619;</span>
                                <span class="iconfont ">&#xe619;</span>
                                <span class="iconfont ">&#xe619;</span>
                            </p>
                        </dd>
                        <dd class="last">
                            <div class="foot-panel">
                                <div class="title">
                                    <div class="title-line"></div>
                                    <div class="text">
                                        <span>更多 YOHO!产品</span>
                                    </div>
                                </div>
                                <div id="foot-mobile">
                                    <ul class="mobile clearfix">
                                        <li>
                                            <a href="http://www.yohomars.com/" target="_blank">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/mars.png">
';}, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/mars.png">
';}).'                                            </a>
                                        </li>
                                        <li>
                                            <a href="http://app.yohoshow.com/" target="_blank">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/show.png">
';}, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/show.png">
';}).'                                            </a>
                                        </li>
                                        <li>
                                            <a href="http://www.yoho.cn/product#yoho" target="_blank">
'.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://webstatic.dev.yohobuy.com/img/index/yoho.png">
';}, function($cx, $in) {return '                                                    <img class="lazy" data-original="http://cdn.yoho.cn/yohobuy/assets/img/index/yoho.png">
';}).'                                            </a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                            <p class="item-nav center">
                                <span class="iconfont cur">&#xe619;</span>
                            </p>
                        </dd>
                    </dl>
                </div>
            </div>
';}).'        <div class="footerbottom">
            <div class="promise">
                <div class="center-content clearfix">
                    <div class="left">
                        <span class="iconfont rgbf">&#xe63d;</span>
                        <span class="red">100%</span>
                        <span class="rgbf">品牌正品</span>
                    </div>
                    <div class="left">
                        <span class="iconfont rgbf">&#xe63c;</span>
                        <span class="red">7天</span>
                        <span class="rgbf">无理由退换货</span>
                    </div>
                    <div class="left">
                        <span class="iconfont rgbf">&#xe63b;</span>
                        <span class="red">便捷</span>
                        <span class="rgbf">在线客服</span>
                    </div>
                    <div class="right subscribe footer-right">
                        <input id="subscriber-box"  class="rgb6 top" name="subscriberBox"value="订阅我们的邮件">
                        <a id="subscriber-btn"  href="javascript:void(0);" class="iconfont rgbf">&#xe61b;</a>
                    </div>
                </div>
            </div>
            <div class="footer-help">
                <div class="center-content clearfix">
                    <div class="left">
                        <ul class="clearfix">
                            <li class="left">
                                <p>
                                    <span>新手指南</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=81#help_b00reg" target="_blank">注册登录</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=83" target="_blank">选购商品</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=103" target="_blank">订单支付</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=85" target="_blank">收货退款</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>会员中心</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=87" target="_blank">YOHO币</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=91" target="_blank">会员制度</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=89" target="_blank">账户管理</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=93" target="_blank">密码管理</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>购物指南</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=95" target="_blank">全球购专区</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=97" target="_blank">尺码选择</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=99" target="_blank">发票</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=101" target="_blank">商品咨询</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>支付方式</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=105" target="_blank">在线支付</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=107" target="_blank">货到付款</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=109" target="_blank">优惠券</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=111" target="_blank">YOHO币支付</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>配送方式</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=113" target="_blank">配送时间</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=115" target="_blank">配送范围</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=119" target="_blank">顺丰速运</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=117" target="_blank">商品验收与签收</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>售后服务</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=121" target="_blank">退换货政策</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=123" target="_blank">退换货流程</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=125" target="_blank">退款方式与时效</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=127" target="_blank">投诉与建议</a>
                                </p>
                            </li>
                            <li class="left">
                                <p>
                                    <span>APP常见问题</span>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=133" target="_blank">IPhone版</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=135" target="_blank">Android版</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=137" target="_blank">wap版</a>
                                </p>
                                <p>
                                    <a href="http://www.yohobuy.com/help/?category_id=139" target="_blank">IPAD版</a>
                                </p>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
            <div class="footer-link">
                <div class="center-content clearfix">
                    <div class="left right-flag">
                        <a href="https://ss.knet.cn/verifyseal.dll?sn=e14021832010046477dka7000000&amp;ct=df&amp;a=1&amp;pa=0.5902942178957805" target="_blank" rel="nofollow">
                            <img src="http://static.yohobuy.com/images/v3/icon/credit-flag3.png">
                        </a>
                        <a href="http://www.isc.org.cn/" target="_blank" rel="nofollow">
                            <img src="http://static.yohobuy.com/images/v3/icon/isc2.png">
                        </a>
                    </div>
                    <div class="left about-us">
                        <p>
                            <a href="http://www.yohobuy.com">返回首页</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com">YOHO!有货</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/newpower.html">新力传媒</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/contact.html">联系我们</a>
                            <span>|</span>
                            <a href="http://shop.yohobuy.com/settled">商家入驻</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/privacy.html">隐私条款</a>
                            <span>|</span>
                            <a href="http://www.yohobuy.com/link.html">友情链接</a>
                        </p>
                        <p>
                            CopyRight © 2007-2016 南京新与力文化传播有限公司
                            <a class="rbg6" href="http://www.miibeian.gov.cn/" target="_blank">苏ICP备09011225号</a>
                            NewPower Co. 版权所有 经营许可证编号:苏B2-20120395
                        </p>
                    </div>
    
                </div>
            </div>
        </div>
        <div class="return-top hide">
            <span class="iconfont">&#xe610;</span>
        </div>
    </div>'.'    
'.Plugin\LCRun3::debug('if [rlsEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[rlsEnv]', 'v', $cx, $in, array('rlsEnv')), $in, function($cx, $in) {return '    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/lib.js"></script>
    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index.js"></script>
';}).''.Plugin\LCRun3::debug('if [preEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[preEnv]', 'v', $cx, $in, array('preEnv')), $in, function($cx, $in) {return '    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/lib.js"></script>
    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index-debug.js"></script>
';}).''.Plugin\LCRun3::debug('if [testEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[testEnv]', 'v', $cx, $in, array('testEnv')), $in, function($cx, $in) {return '    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/lib.js"></script>
    <script src="http://cdn.yoho.cn/yohobuy/'.Plugin\LCRun3::debug('[version]', 'encq', $cx, Plugin\LCRun3::debug('[version]', 'v', $cx, $in, array('version'))).'/index-debug.js"></script>
';}).''.Plugin\LCRun3::debug('if [devEnv]', 'ifv', $cx, Plugin\LCRun3::debug('[devEnv]', 'v', $cx, $in, array('devEnv')), $in, function($cx, $in) {return '    <script src="http://localhost:8001/static/js/sea.js?nowrap"></script>
    <script>
        seajs.config({
            base: \'http://localhost:8001/\'
        });
    </script>
';}).''.'    <script>
        seajs.use(\'js/common\');
    </script>
'.Plugin\LCRun3::debug('[headerdata]', 'sec', $cx, Plugin\LCRun3::debug('[headerdata]', 'v', $cx, $in, array('headerdata')), $in, false, function($cx, $in) {return '    <script>
        seajs.use(\'js/header\');
    </script>
';}).''.Plugin\LCRun3::debug('[simpleHeader]', 'sec', $cx, Plugin\LCRun3::debug('[simpleHeader]', 'v', $cx, $in, array('simpleHeader')), $in, false, function($cx, $in) {return '    <script>
        seajs.use(\'js/simple-header\');
    </script>
';}).''.Plugin\LCRun3::debug('if [boysHomePage]', 'ifv', $cx, Plugin\LCRun3::debug('[boysHomePage]', 'v', $cx, $in, array('boysHomePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/index/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [searchListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[searchListPage]', 'v', $cx, $in, array('searchListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/brand\');
        seajs.use([\'js/product/list\', \'js/product/product\'], function (list, product) {
            product.init(5);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(5);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [brandPage]', 'ifv', $cx, Plugin\LCRun3::debug('[brandPage]', 'v', $cx, $in, array('brandPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/brand\');
        seajs.use([\'js/product/list\', \'js/product/product\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [productListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[productListPage]', 'v', $cx, $in, array('productListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use([\'js/product/list\', \'js/product/product\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [productDetailPage]', 'ifv', $cx, Plugin\LCRun3::debug('[productDetailPage]', 'v', $cx, $in, array('productDetailPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/item\');
    </script>
';}).''.Plugin\LCRun3::debug('if [guangIndexPage]', 'ifv', $cx, Plugin\LCRun3::debug('[guangIndexPage]', 'v', $cx, $in, array('guangIndexPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/guang/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [guangDetailPage]', 'ifv', $cx, Plugin\LCRun3::debug('[guangDetailPage]', 'v', $cx, $in, array('guangDetailPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/guang/detail\');
    </script>
';}).''.Plugin\LCRun3::debug('if [guangListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[guangListPage]', 'v', $cx, $in, array('guangListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/guang/list\');
    </script>
';}).''.Plugin\LCRun3::debug('if [saleIndexPage]', 'ifv', $cx, Plugin\LCRun3::debug('[saleIndexPage]', 'v', $cx, $in, array('saleIndexPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/sale/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [saleListPage]', 'ifv', $cx, Plugin\LCRun3::debug('[saleListPage]', 'v', $cx, $in, array('saleListPage')), $in, function($cx, $in) {return '    <script>
        seajs.use([\'js/product/list\', \'js/product/product\', \'js/sale/banner\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [saleCatPage]', 'ifv', $cx, Plugin\LCRun3::debug('[saleCatPage]', 'v', $cx, $in, array('saleCatPage')), $in, function($cx, $in) {return '    <script>
        seajs.use([\'js/product/list\', \'js/product/product\', \'js/sale/banner\'], function (list, product) {
            product.init(4);
            window.onresize = function () {
                setTimeout(function () {
                    product.init(4);
                }, 300);
            };
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [loginPage]', 'ifv', $cx, Plugin\LCRun3::debug('[loginPage]', 'v', $cx, $in, array('loginPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/login\');
    </script>
';}).''.Plugin\LCRun3::debug('if [thirdLogin]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdLogin]', 'v', $cx, $in, array('thirdLogin')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/thirdlogin\');
    </script>
';}).''.Plugin\LCRun3::debug('if [enablePerfectInformation]', 'ifv', $cx, Plugin\LCRun3::debug('[enablePerfectInformation]', 'v', $cx, $in, array('enablePerfectInformation')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/third-pwd\');
    </script>
';}).''.Plugin\LCRun3::debug('if [thirdRelatePage]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdRelatePage]', 'v', $cx, $in, array('thirdRelatePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/relate\');
    </script>
';}).''.Plugin\LCRun3::debug('if [registerPage]', 'ifv', $cx, Plugin\LCRun3::debug('[registerPage]', 'v', $cx, $in, array('registerPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/reg\', function (reg) {
            reg.init(\'reg\');
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [thirdPage]', 'ifv', $cx, Plugin\LCRun3::debug('[thirdPage]', 'v', $cx, $in, array('thirdPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/reg\', function (reg) {
            reg.init(\'third\');
        });
    </script>
';}).''.Plugin\LCRun3::debug('if [backPage]', 'ifv', $cx, Plugin\LCRun3::debug('[backPage]', 'v', $cx, $in, array('backPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/back\');
    </script>
';}).''.Plugin\LCRun3::debug('if [resetPage]', 'ifv', $cx, Plugin\LCRun3::debug('[resetPage]', 'v', $cx, $in, array('resetPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/reset\');
    </script>
';}).''.Plugin\LCRun3::debug('if [vertificationPage]', 'ifv', $cx, Plugin\LCRun3::debug('[vertificationPage]', 'v', $cx, $in, array('vertificationPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/passport/vertification\');
    </script>
';}).''.Plugin\LCRun3::debug('if [hotrankPage]', 'ifv', $cx, Plugin\LCRun3::debug('[hotrankPage]', 'v', $cx, $in, array('hotrankPage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/product/hotrank\');
    </script>
';}).''.Plugin\LCRun3::debug('if [brandsHomePage]', 'ifv', $cx, Plugin\LCRun3::debug('[brandsHomePage]', 'v', $cx, $in, array('brandsHomePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/brand/index\');
    </script>
';}).''.Plugin\LCRun3::debug('if [orderEnsurePage]', 'ifv', $cx, Plugin\LCRun3::debug('[orderEnsurePage]', 'v', $cx, $in, array('orderEnsurePage')), $in, function($cx, $in) {return '    <script>
        seajs.use(\'js/order/ensure\');
    </script>
';}).''.Plugin\LCRun3::debug('if [meIndexPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meIndexPage]', 'v', $cx, $in, array('meIndexPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/index\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meOrdersPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meOrdersPage]', 'v', $cx, $in, array('meOrdersPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/orders\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meFavoritePage]', 'ifv', $cx, Plugin\LCRun3::debug('[meFavoritePage]', 'v', $cx, $in, array('meFavoritePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/favorite\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meCurrencyPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meCurrencyPage]', 'v', $cx, $in, array('meCurrencyPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/currency\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meReturnsPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meReturnsPage]', 'v', $cx, $in, array('meReturnsPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/returns\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meCommentPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meCommentPage]', 'v', $cx, $in, array('meCommentPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/comment\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meComplaintsPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meComplaintsPage]', 'v', $cx, $in, array('meComplaintsPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/complaints\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meMessagePage]', 'ifv', $cx, Plugin\LCRun3::debug('[meMessagePage]', 'v', $cx, $in, array('meMessagePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/message\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meEditPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meEditPage]', 'v', $cx, $in, array('meEditPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/edit\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meGiftPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meGiftPage]', 'v', $cx, $in, array('meGiftPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/gift\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meValidatePage]', 'ifv', $cx, Plugin\LCRun3::debug('[meValidatePage]', 'v', $cx, $in, array('meValidatePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/validate\');
            seajs.use(\'js/passport/mail-phone-regx\');
        </script>
';}).''.Plugin\LCRun3::debug('if [meAddressPage]', 'ifv', $cx, Plugin\LCRun3::debug('[meAddressPage]', 'v', $cx, $in, array('meAddressPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/home/address\');
            seajs.use(\'js/home/common-address\');
        </script>
';}).''.Plugin\LCRun3::debug('if [helpSearchPage]', 'ifv', $cx, Plugin\LCRun3::debug('[helpSearchPage]', 'v', $cx, $in, array('helpSearchPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/help/search\');
        </script>
';}).''.Plugin\LCRun3::debug('if [cartEnsurePage]', 'ifv', $cx, Plugin\LCRun3::debug('[cartEnsurePage]', 'v', $cx, $in, array('cartEnsurePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/cart/cart\');
        </script>
';}).'    
'.Plugin\LCRun3::debug('if [payPage]', 'ifv', $cx, Plugin\LCRun3::debug('[payPage]', 'v', $cx, $in, array('payPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/shopping/pay\');
        </script>
';}).'    
'.Plugin\LCRun3::debug('if [wechatqrcodePage]', 'ifv', $cx, Plugin\LCRun3::debug('[wechatqrcodePage]', 'v', $cx, $in, array('wechatqrcodePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/pay/wechatqrcode\');
        </script>
';}).'    
'.Plugin\LCRun3::debug('if [settledPage]', 'ifv', $cx, Plugin\LCRun3::debug('[settledPage]', 'v', $cx, $in, array('settledPage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/about/settled\');
        </script>
    ';}).''.''.'    <!-- Google Tag Manager -->
    <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-W958MG" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    <script>
    var _hmt = _hmt || [];
    var _gaq = _gaq || [];
    (function() {
        function async_load(){
            (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':
                new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],
                j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=
                \'//www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);
            })(window,document,\'script\',\'dataLayer\',\'GTM-W958MG\');
            (function() {
                _gaq.push([\'_setAccount\', \'UA-48997038-32\']);
                _gaq.push([\'_trackPageview\']);
                var ga = document.createElement(\'script\'); 
                ga.type = \'text/javascript\'; ga.async = true;
                ga.src = (\'https:\' == document.location.protocol ? \'https://ssl\' : \'http://www\') + \'.google-analytics.com/ga.js\';
                var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(ga, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "//hm.baidu.com/hm.js?c6ee7218b8321cb65fb2e98f284d8311";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "//hm.baidu.com/hm.js?65dd99e0435a55177ffda862198ce841";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "http://static.yohobuy.com/js/analytics/analysis.js";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
            })();
            (function() {
                var hm = document.createElement("script");
                hm.src = "http://static.criteo.net/js/ld/ld.js";
                hm.async = 1;
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(hm, s);
                var u = _ozuid || "";
                u = (u == 0) ? "" : u;
                window.criteo_q = window.criteo_q || [];
                window.criteo_q.push({event: "setAccount", account: 16184 },{event: "setCustomerId", id: u},{event: "setSiteType", type: "d" },{event: "viewHome" });
            })();
        }
        if (window.addEventListener) {
            window.addEventListener(\'load\', async_load, false);
        } else if (window.attachEvent) {
           window.attachEvent(\'onload\', async_load);
        }
    })();
    </script>
    <script>
        window._py = window._py||[];
        window._py.push([\'a\', \'MC..o8vMMWxEXDCiqYckD81lUX\']);
        window._py.push([\'domain\',\'stats.ipinyou.com\']);
        window._py.push([\'e\',\'\']);
        if(typeof _goodsData!=\'undefined\'){
            window._py.push([\'pi\',_goodsData]);
        }
        -function(d){
            var f = \'https:\' == d.location.protocol;var c = d.createElement(\'script\');c.type=\'text/javascript\';c.async=1;
            c.src=(f ? \'https\' : \'http\') + \'://\'+(f?\'fm.ipinyou.com\':\'fm.p0y.cn\')+\'/j/t/adv.js\';
            var h = d.getElementsByTagName("script")[0];h.parentNode.insertBefore(c, h);
        }(document);
    </script>
    <script src="http://static.yohobuy.com/js/v3/o_code.js?v=20150420" async="async"></script>
'.'    </body>
</html>
'.'';
}
?>