c786c9077b5d2036c1c29ae8372fb979.php 126 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 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
<?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="product-list-page'.Plugin\LCRun3::debug('if [list].[searchPage]', 'ifv', $cx, Plugin\LCRun3::debug('[list].[searchPage]', 'v', $cx, $in, array('list','searchPage')), $in, function($cx, $in) {return ' search-page';}).' product-page yoho-page">
'.Plugin\LCRun3::debug('[list]', 'sec', $cx, Plugin\LCRun3::debug('[list]', 'v', $cx, $in, array('list')), $in, false, function($cx, $in) {return ''.Plugin\LCRun3::debug('[brandBanner]', 'sec', $cx, Plugin\LCRun3::debug('[brandBanner]', 'v', $cx, $in, array('brandBanner')), $in, false, function($cx, $in) {return '            <div class="brand-banner">
                <div class="banner-img" style="height: '.Plugin\LCRun3::debug('[bannerHeight]', 'encq', $cx, Plugin\LCRun3::debug('[bannerHeight]', 'v', $cx, $in, array('bannerHeight'))).'px;background: url('.Plugin\LCRun3::debug('[banner]', 'encq', $cx, Plugin\LCRun3::debug('[banner]', 'v', $cx, $in, array('banner'))).')"></div>
                <div class="opt-wrap">
                    <p class="opt center-content">
                        <a href="'.Plugin\LCRun3::debug('[brandHome]', 'encq', $cx, Plugin\LCRun3::debug('[brandHome]', 'v', $cx, $in, array('brandHome'))).'">
                            <i class="iconfont">&#xe617;</i>
                            品牌首页
                        </a>
                        <a href="'.Plugin\LCRun3::debug('[brandIntro]', 'encq', $cx, Plugin\LCRun3::debug('[brandIntro]', 'v', $cx, $in, array('brandIntro'))).'">
                            <i class="iconfont">&#xe631;</i>
                            品牌介绍
                        </a>
                        <span id="brand-favor" class="brand-favor" data-id="'.Plugin\LCRun3::debug('[dataId]', 'encq', $cx, Plugin\LCRun3::debug('[dataId]', 'v', $cx, $in, array('dataId'))).'">
                            <i class="iconfont'.Plugin\LCRun3::debug('if [coled]', 'ifv', $cx, Plugin\LCRun3::debug('[coled]', 'v', $cx, $in, array('coled')), $in, function($cx, $in) {return ' coled';}).'">&#xe616;</i>
                        </span>
                    </p>
                </div>
            </div>
';}).'        <div class="center-content clearfix">
'.''.Plugin\LCRun3::debug('if [pathNav]', 'ifv', $cx, Plugin\LCRun3::debug('[pathNav]', 'v', $cx, $in, array('pathNav')), $in, function($cx, $in) {return '                <p class="path-nav">
'.Plugin\LCRun3::debug('each [pathNav]', 'sec', $cx, Plugin\LCRun3::debug('[pathNav]', 'v', $cx, $in, array('pathNav')), $in, true, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [href]', 'ifv', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href')), $in, function($cx, $in) {return '                            <a '.Plugin\LCRun3::debug('if @[last]', 'ifv', $cx, Plugin\LCRun3::debug('@[last]', 'v', $cx, $cx['sp_vars'], array('last')), $in, function($cx, $in) {return 'class="last"';}).' href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'" title="'.Plugin\LCRun3::debug('[pathTitle]', 'encq', $cx, Plugin\LCRun3::debug('[pathTitle]', 'v', $cx, $in, array('pathTitle'))).'">'.Plugin\LCRun3::debug('[name]', 'raw', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
';}, function($cx, $in) {return '                            <span '.Plugin\LCRun3::debug('if @[last]', 'ifv', $cx, Plugin\LCRun3::debug('@[last]', 'v', $cx, $cx['sp_vars'], array('last')), $in, function($cx, $in) {return 'class="last"';}).' title="'.Plugin\LCRun3::debug('[pathTitle]', 'encq', $cx, Plugin\LCRun3::debug('[pathTitle]', 'v', $cx, $in, array('pathTitle'))).'">'.Plugin\LCRun3::debug('[name]', 'raw', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</span>
';}).'            
'.Plugin\LCRun3::debug('unless @[last]', 'unl', $cx, Plugin\LCRun3::debug('@[last]', 'v', $cx, $cx['sp_vars'], array('last')), $in, function($cx, $in) {return '                            <span class="iconfont">&#xe601;</span>
';}).'';}).'                </p>
';}).''.''.Plugin\LCRun3::debug('if [brandAbout]', 'ifv', $cx, Plugin\LCRun3::debug('[brandAbout]', 'v', $cx, $in, array('brandAbout')), $in, function($cx, $in) {return '                <div class="brand-about">
                    '.Plugin\LCRun3::debug('[brandAbout]', 'raw', $cx, Plugin\LCRun3::debug('[brandAbout]', 'v', $cx, $in, array('brandAbout'))).'
                </div>
';}, function($cx, $in) {return '                <div class="list-left pull-left">
'.''.Plugin\LCRun3::debug('[leftContent]', 'sec', $cx, Plugin\LCRun3::debug('[leftContent]', 'v', $cx, $in, array('leftContent')), $in, false, function($cx, $in) {return '                    
'.Plugin\LCRun3::debug('[allDiscount]', 'sec', $cx, Plugin\LCRun3::debug('[allDiscount]', 'v', $cx, $in, array('allDiscount')), $in, false, function($cx, $in) {return '                            <div class="sort-container">
                                <ul class="sort-child-list new-sale">
'.Plugin\LCRun3::debug('each [list]', 'sec', $cx, Plugin\LCRun3::debug('[list]', 'v', $cx, $in, array('list')), $in, true, function($cx, $in) {return '                                        <li '.Plugin\LCRun3::debug('if [active]', 'ifv', $cx, Plugin\LCRun3::debug('[active]', 'v', $cx, $in, array('active')), $in, function($cx, $in) {return 'class="active"';}).'>
                                            <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'" title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">
                                                '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                                <span>'.Plugin\LCRun3::debug('[num]', 'encq', $cx, Plugin\LCRun3::debug('[num]', 'v', $cx, $in, array('num'))).'</span>
                                            </a>
                                        </li>
';}).'                                </ul>
                            </div>
';}).'                    
'.Plugin\LCRun3::debug('[newSales]', 'sec', $cx, Plugin\LCRun3::debug('[newSales]', 'v', $cx, $in, array('newSales')), $in, false, function($cx, $in) {return '                            <div class="sort-container">
                                <h2 title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">
                                    一周新品上架
                                    <span>'.Plugin\LCRun3::debug('[updateNum]', 'encq', $cx, Plugin\LCRun3::debug('[updateNum]', 'v', $cx, $in, array('updateNum'))).'</span>
                                </h2>
                                <ul class="sort-child-list new-sale">
'.Plugin\LCRun3::debug('each [list]', 'sec', $cx, Plugin\LCRun3::debug('[list]', 'v', $cx, $in, array('list')), $in, true, function($cx, $in) {return '                                        <li '.Plugin\LCRun3::debug('if [active]', 'ifv', $cx, Plugin\LCRun3::debug('[active]', 'v', $cx, $in, array('active')), $in, function($cx, $in) {return 'class="active"';}).'>
                                            <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'"  title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">
                                                '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                                <span>'.Plugin\LCRun3::debug('[num]', 'encq', $cx, Plugin\LCRun3::debug('[num]', 'v', $cx, $in, array('num'))).'</span>
                                            </a>
                                        </li>
';}).'                                </ul>
                            </div>
';}).'                    
'.Plugin\LCRun3::debug('[allSort]', 'sec', $cx, Plugin\LCRun3::debug('[allSort]', 'v', $cx, $in, array('allSort')), $in, false, function($cx, $in) {return '                            <div class="sort-container">
                                <ul>
'.Plugin\LCRun3::debug('[all]', 'sec', $cx, Plugin\LCRun3::debug('[all]', 'v', $cx, $in, array('all')), $in, false, function($cx, $in) {return '                                    <li>
                                        <h2>
                                            <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'" title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">
                                                '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                                <span>'.Plugin\LCRun3::debug('[updateNum]', 'encq', $cx, Plugin\LCRun3::debug('[updateNum]', 'v', $cx, $in, array('updateNum'))).'</span>
                                            </a>
                                        </h2>
                                    </li>
';}).''.Plugin\LCRun3::debug('each [list]', 'sec', $cx, Plugin\LCRun3::debug('[list]', 'v', $cx, $in, array('list')), $in, true, function($cx, $in) {return '                                        <li class="product-list-nav '.Plugin\LCRun3::debug('if [active]', 'ifv', $cx, Plugin\LCRun3::debug('[active]', 'v', $cx, $in, array('active')), $in, function($cx, $in) {return 'active';}).'">
                                            <h3 title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">
                                                <span class="icon-triangle"></span>
                                                '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                                <span>'.Plugin\LCRun3::debug('[num]', 'encq', $cx, Plugin\LCRun3::debug('[num]', 'v', $cx, $in, array('num'))).'</span>
                                            </h3>
                                            <ul class="sort-child-list">
'.Plugin\LCRun3::debug('each [childList]', 'sec', $cx, Plugin\LCRun3::debug('[childList]', 'v', $cx, $in, array('childList')), $in, true, function($cx, $in) {return '                                                    <li class="'.Plugin\LCRun3::debug('if [childActive]', 'ifv', $cx, Plugin\LCRun3::debug('[childActive]', 'v', $cx, $in, array('childActive')), $in, function($cx, $in) {return 'active';}).'">
                                                        <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'" title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">
                                                            '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                                            <span>'.Plugin\LCRun3::debug('[num]', 'encq', $cx, Plugin\LCRun3::debug('[num]', 'v', $cx, $in, array('num'))).'</span>
                                                        </a>
                                                    </li>
';}).'                                            </ul>
                                        </li>
';}).'                                </ul>
                            </div>
';}).'                    
'.Plugin\LCRun3::debug('[picLink]', 'sec', $cx, Plugin\LCRun3::debug('[picLink]', 'v', $cx, $in, array('picLink')), $in, false, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [picTitle]', 'ifv', $cx, Plugin\LCRun3::debug('[picTitle]', 'v', $cx, $in, array('picTitle')), $in, function($cx, $in) {return '                                <h2 class="nav-pic-title">'.Plugin\LCRun3::debug('[picTitle]', 'encq', $cx, Plugin\LCRun3::debug('[picTitle]', 'v', $cx, $in, array('picTitle'))).'</h2>
';}).'                            <ul class="pic-nav">
'.Plugin\LCRun3::debug('each [list]', 'sec', $cx, Plugin\LCRun3::debug('[list]', 'v', $cx, $in, array('list')), $in, true, function($cx, $in) {return '                                    <li>
                                        <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">
                                            <img src="'.Plugin\LCRun3::debug('[src]', 'encq', $cx, Plugin\LCRun3::debug('[src]', 'v', $cx, $in, array('src'))).'">
                                        </a>
                                    </li>
';}).'                            </ul>
';}).'';}).'                    
'.Plugin\LCRun3::debug('if [brandBanner].[dataId]', 'ifv', $cx, Plugin\LCRun3::debug('[brandBanner].[dataId]', 'v', $cx, $in, array('brandBanner','dataId')), $in, function($cx, $in) {return '                        <script id="pic-link-tpl" type="text/html">
                            {{# picLink}}
                                {{#if picTitle}}
                                    <h2 class="nav-pic-title">{{picTitle}}</h2>
                                {{/if}}
                                <ul class="pic-nav">
                                    {{#each list}}
                                        <li>
                                            <a href="{{href}}">
                                                <img src="{{src}}">
                                            </a>
                                        </li>
                                    {{/each}}
                                </ul>
                            {{/ picLink}}
                        </script>
                        <div id="brand-ad" class="brand-ad"></div>
';}).'                    
'.Plugin\LCRun3::debug('if [node]', 'ifv', $cx, Plugin\LCRun3::debug('[node]', 'v', $cx, $in, array('node')), $in, function($cx, $in) {return '                        <div id="brand-card" class="brand-card" data-node="'.Plugin\LCRun3::debug('[node]', 'encq', $cx, Plugin\LCRun3::debug('[node]', 'v', $cx, $in, array('node'))).'"></div>
';}).''.'                </div>
                <div class="list-right pull-right">
'.Plugin\LCRun3::debug('[sortIntro]', 'sec', $cx, Plugin\LCRun3::debug('[sortIntro]', 'v', $cx, $in, array('sortIntro')), $in, false, function($cx, $in) {return '                        <div class="sort-intro clearfix">
                            <div class="texts pull-left">
                                <p class="name">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</p>
                                <p class="en-name">'.Plugin\LCRun3::debug('[enName]', 'encq', $cx, Plugin\LCRun3::debug('[enName]', 'v', $cx, $in, array('enName'))).'</p>
                                <p class="desc">'.Plugin\LCRun3::debug('[description]', 'raw', $cx, Plugin\LCRun3::debug('[description]', 'v', $cx, $in, array('description'))).'</p>
                                <div class="key-entry">
'.Plugin\LCRun3::debug('each [keyEntry]', 'sec', $cx, Plugin\LCRun3::debug('[keyEntry]', 'v', $cx, $in, array('keyEntry')), $in, true, function($cx, $in) {return '                                        <a href="'.Plugin\LCRun3::debug('[url]', 'encq', $cx, Plugin\LCRun3::debug('[url]', 'v', $cx, $in, array('url'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
';}).'                                </div>
                            </div>
                            <img class="pull-right img" src="'.Plugin\LCRun3::debug('[img]', 'encq', $cx, Plugin\LCRun3::debug('[img]', 'v', $cx, $in, array('img'))).'">
                        </div>
';}).''.''.Plugin\LCRun3::debug('[shopEntry]', 'sec', $cx, Plugin\LCRun3::debug('[shopEntry]', 'v', $cx, $in, array('shopEntry')), $in, false, function($cx, $in) {return '                        <div class="shop-entry clearfix">
                            <a class="pull-left" href="'.Plugin\LCRun3::debug('[home]', 'encq', $cx, Plugin\LCRun3::debug('[home]', 'v', $cx, $in, array('home'))).'">
                                <img class="logo" src="'.Plugin\LCRun3::debug('[logo]', 'encq', $cx, Plugin\LCRun3::debug('[logo]', 'v', $cx, $in, array('logo'))).'">
                            </a>
                    
                            <div class="name pull-left">
                                <a class="shop-name" href="'.Plugin\LCRun3::debug('[home]', 'encq', $cx, Plugin\LCRun3::debug('[home]', 'v', $cx, $in, array('home'))).'">'.Plugin\LCRun3::debug('[shopName]', 'encq', $cx, Plugin\LCRun3::debug('[shopName]', 'v', $cx, $in, array('shopName'))).'</a>
                                <p class="sorts">
'.Plugin\LCRun3::debug('each [sort]', 'sec', $cx, Plugin\LCRun3::debug('[sort]', 'v', $cx, $in, array('sort')), $in, true, 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>
                    
'.Plugin\LCRun3::debug('unless @[last]', 'unl', $cx, Plugin\LCRun3::debug('@[last]', 'v', $cx, $cx['sp_vars'], array('last')), $in, function($cx, $in) {return '                                            /
';}).'';}).'                                </p>
                            </div>
                    
                            <a class="entry-btn pull-right" href="'.Plugin\LCRun3::debug('[home]', 'encq', $cx, Plugin\LCRun3::debug('[home]', 'v', $cx, $in, array('home'))).'">
                                进入品牌店铺
                                <span class="iconfont">&#xe601;</span>
                            </a>
                        </div>
';}).''.''.''.Plugin\LCRun3::debug('[filters]', 'sec', $cx, Plugin\LCRun3::debug('[filters]', 'v', $cx, $in, array('filters')), $in, false, function($cx, $in) {return ''.'                        <div class="filter-box">
'.Plugin\LCRun3::debug('[checkedConditions]', 'sec', $cx, Plugin\LCRun3::debug('[checkedConditions]', 'v', $cx, $in, array('checkedConditions')), $in, false, function($cx, $in) {return '                                <div class="checked-conditions section">
                                    <span class="title">已选条件:</span>
                        
                                    <div class="attr-content clearfix">
'.Plugin\LCRun3::debug('each [conditions]', 'sec', $cx, Plugin\LCRun3::debug('[conditions]', 'v', $cx, $in, array('conditions')), $in, true, function($cx, $in) {return '                                            <a class="tag" href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">
'.Plugin\LCRun3::debug('if [name]', 'ifv', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name')), $in, function($cx, $in) {return '                                                    '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
';}, function($cx, $in) {return '                                                    <i class="color-block" style="background: '.Plugin\LCRun3::debug('[color]', 'encq', $cx, Plugin\LCRun3::debug('[color]', 'v', $cx, $in, array('color'))).'"></i>
';}).'                                                <i class="close iconfont">&#xe602;</i>
                                            </a>
';}).'                        
                                        <a class="clear-checked" href="'.Plugin\LCRun3::debug('[clearUrl]', 'encq', $cx, Plugin\LCRun3::debug('[clearUrl]', 'v', $cx, $in, array('clearUrl'))).'">清空筛选条件</a>
                                    </div>
                                </div>
';}).'                        
'.Plugin\LCRun3::debug('if [channel]', 'ifv', $cx, Plugin\LCRun3::debug('[channel]', 'v', $cx, $in, array('channel')), $in, function($cx, $in) {return '                                <div class="channel section">
                                    <span class="title">频道:</span>
                        
                                    <div class="attr-content clearfix">
'.Plugin\LCRun3::debug('each [channel]', 'sec', $cx, Plugin\LCRun3::debug('[channel]', 'v', $cx, $in, array('channel')), $in, true, function($cx, $in) {return '                                            <a class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'" 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>
';}).'                                    </div>
                                </div>
';}).'                        
'.Plugin\LCRun3::debug('if [gender]', 'ifv', $cx, Plugin\LCRun3::debug('[gender]', 'v', $cx, $in, array('gender')), $in, function($cx, $in) {return '                                <div class="channel section">
                                    <span class="title">性别:</span>
                        
                                    <div class="attr-content clearfix">
'.Plugin\LCRun3::debug('each [gender]', 'sec', $cx, Plugin\LCRun3::debug('[gender]', 'v', $cx, $in, array('gender')), $in, true, function($cx, $in) {return '                                            <a class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'" 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>
';}).'                                    </div>
                                </div>
';}).'                        
'.Plugin\LCRun3::debug('if [sort]', 'ifv', $cx, Plugin\LCRun3::debug('[sort]', 'v', $cx, $in, array('sort')), $in, function($cx, $in) {return '                                <div class="sort section">
                                    <span class="title">分类:</span>
                        
                                    <div class="attr-content">
                                        <ul class="sort-pre clearfix">
'.Plugin\LCRun3::debug('each [sort]', 'sec', $cx, Plugin\LCRun3::debug('[sort]', 'v', $cx, $in, array('sort')), $in, true, function($cx, $in) {return '                                                <li data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'">
                                                    <span class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'">
                                                        '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                                        <div class="sort-up-icon"></div>
                                                    </span>
                                                </li>
';}).'                                        </ul>
                        
                                        <div class="sort-sub-wrap">
'.Plugin\LCRun3::debug('each [sort]', 'sec', $cx, Plugin\LCRun3::debug('[sort]', 'v', $cx, $in, array('sort')), $in, true, function($cx, $in) {return '                                                <ul class="sort-sub clearfix hide">
'.Plugin\LCRun3::debug('each [sub]', 'sec', $cx, Plugin\LCRun3::debug('[sub]', 'v', $cx, $in, array('sub')), $in, true, function($cx, $in) {return '                                                        <li class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'">
                                                            <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>
                                                        </li>
';}).'                                                </ul>
';}).'                                        </div>
                                    </div>
                                </div>
';}).'                        
'.Plugin\LCRun3::debug('if [misort]', 'ifv', $cx, Plugin\LCRun3::debug('[misort]', 'v', $cx, $in, array('misort')), $in, function($cx, $in) {return '                                <div class="misort section">
                                    <span class="title">品类:</span>
                        
                                    <div class="attr-content clearfix">
'.Plugin\LCRun3::debug('each [misort]', 'sec', $cx, Plugin\LCRun3::debug('[misort]', 'v', $cx, $in, array('misort')), $in, true, function($cx, $in) {return '                                            <a class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'" 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>
';}).'                                    </div>
                                </div>
';}).'                        
'.Plugin\LCRun3::debug('[brand]', 'sec', $cx, Plugin\LCRun3::debug('[brand]', 'v', $cx, $in, array('brand')), $in, false, function($cx, $in) {return '                                <div class="brand section">
                                    <span class="title">品牌:</span>
                        
                                    <div class="attr-content">
                                        <ul class="default clearfix">
'.Plugin\LCRun3::debug('[default]', 'sec', $cx, Plugin\LCRun3::debug('[default]', 'v', $cx, $in, array('default')), $in, false, function($cx, $in) {return '                                                <li class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'">
                                                    <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'" title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
                                                </li>
';}).'                                        </ul>
                        
                                        <div class="brand-opt">
'.Plugin\LCRun3::debug('if [showMore]', 'ifv', $cx, Plugin\LCRun3::debug('[showMore]', 'v', $cx, $in, array('showMore')), $in, function($cx, $in) {return '                                                <span id="brand-more" class="brand-more">
                                                    <em>更多</em>
                                                    <i class="iconfont">&#xe600;</i>
                                                </span>
';}).'                        
'.Plugin\LCRun3::debug('if [showMulti]', 'ifv', $cx, Plugin\LCRun3::debug('[showMulti]', 'v', $cx, $in, array('showMulti')), $in, function($cx, $in) {return '                                                <span id="brand-multi" class="multi-select">多选 +</span>
';}).'                                        </div>
                        
                                        <div class="brand-panel hide">
                                            <div class="panel-head clearfix">
                                                <p class="brands-index">
'.Plugin\LCRun3::debug('each [brandIndex]', 'sec', $cx, Plugin\LCRun3::debug('[brandIndex]', 'v', $cx, $in, array('brandIndex')), $in, true, function($cx, $in) {return '                                                        <span data-index="'.Plugin\LCRun3::debug('[index]', 'encq', $cx, Plugin\LCRun3::debug('[index]', 'v', $cx, $in, array('index'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</span>
';}).'                                                </p>
                        
                                                <div class="brand-search">
                                                    <input id="brand-search-input" type="text">
                                                    <span class="btn">
                                                        <i class="iconfont">&#xe611;</i>
                                                    </span>
                                                </div>
                                            </div>
                        
                                            <div class="panel-body">
                                                <div class="ul-scroll">
                                                    <ul class="check-container clearfix">
'.Plugin\LCRun3::debug('[brandsShow]', 'sec', $cx, Plugin\LCRun3::debug('[brandsShow]', 'v', $cx, $in, array('brandsShow')), $in, false, function($cx, $in) {return '                                                            <li class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'" data-index="'.Plugin\LCRun3::debug('[index]', 'encq', $cx, Plugin\LCRun3::debug('[index]', 'v', $cx, $in, array('index'))).'" data-key="'.Plugin\LCRun3::debug('[key]', 'encq', $cx, Plugin\LCRun3::debug('[key]', 'v', $cx, $in, array('key'))).'">
                                                                <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">
                                                                    <span class="iconfont checkbox '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'" data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'">
'.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return '                                                                            &#xe636;
';}, function($cx, $in) {return '                                                                            &#xe635;
';}).'                                                                    </span>
                                                                    <span title="'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</span>
                                                                </a>
                                                            </li>
';}).'                                                    </ul>
                                                </div>
                                            </div>
                        
                                            <div class="btns">
                                                <button id="brand-multi-ok" class="multi-select-ok dis">确定</button>
                                                <button class="multi-select-cancel">取消</button>
                                            </div>
                                        </div>
                                    </div>
                                </div>
';}).'                        
'.Plugin\LCRun3::debug('if [price]', 'ifv', $cx, Plugin\LCRun3::debug('[price]', 'v', $cx, $in, array('price')), $in, function($cx, $in) {return '                                <div class="price section">
                                    <span class="title">价格:</span>
                        
                                    <div class="attr-content clearfix">
'.Plugin\LCRun3::debug('[price]', 'sec', $cx, Plugin\LCRun3::debug('[price]', 'v', $cx, $in, array('price')), $in, false, function($cx, $in) {return '                                            <a class="attr'.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return ' checked';}).'" 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>
';}).'                        
                                        <div class="ud-price-range">
                                            ¥
                                            <input type="text" class="min limit" value="'.Plugin\LCRun3::debug('[customPrice].[min]', 'encq', $cx, Plugin\LCRun3::debug('[customPrice].[min]', 'v', $cx, $in, array('customPrice','min'))).'">
                                            <span class="price-sep">-</span>
                                            <input type="text" class="max limit" value="'.Plugin\LCRun3::debug('[customPrice].[max]', 'encq', $cx, Plugin\LCRun3::debug('[customPrice].[max]', 'v', $cx, $in, array('customPrice','max'))).'">
                        
                                            <button class="price-sure hide">确定</button>
                                        </div>
                                    </div>
                                </div>
';}).'                        
'.Plugin\LCRun3::debug('if [color]', 'ifv', $cx, Plugin\LCRun3::debug('[color]', 'v', $cx, $in, array('color')), $in, function($cx, $in) {return '                                <div class="color section">
                                    <span class="title">颜色:</span>
                        
                                    <div class="attr-content clearfix">
'.Plugin\LCRun3::debug('[color]', 'sec', $cx, Plugin\LCRun3::debug('[color]', 'v', $cx, $in, array('color')), $in, false, function($cx, $in) {return '                                            <a class="attr'.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return ' checked';}).'" href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">
'.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return '                                                    <span class="color-block">
                                                        <i class="sub-color-block" style="background: '.Plugin\LCRun3::debug('[rgb]', 'encq', $cx, Plugin\LCRun3::debug('[rgb]', 'v', $cx, $in, array('rgb'))).'"></i>
                                                    </span>
';}, function($cx, $in) {return '                                                    <i class="color-block" style="background: '.Plugin\LCRun3::debug('[rgb]', 'encq', $cx, Plugin\LCRun3::debug('[rgb]', 'v', $cx, $in, array('rgb'))).'"></i>
';}).'                                                '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                            </a>
';}).'                                    </div>
                                </div>
';}).'                        
                            <div class="size section '.Plugin\LCRun3::debug('unless [size]', 'unl', $cx, Plugin\LCRun3::debug('[size]', 'v', $cx, $in, array('size')), $in, function($cx, $in) {return 'hide';}).'" '.Plugin\LCRun3::debug('if [size]', 'ifv', $cx, Plugin\LCRun3::debug('[size]', 'v', $cx, $in, array('size')), $in, function($cx, $in) {return 'data-load="true"';}).'>
                                <span class="title">尺码:</span>
                        
                                <div class="attr-content clearfix">
'.Plugin\LCRun3::debug('[size]', 'sec', $cx, Plugin\LCRun3::debug('[size]', 'v', $cx, $in, array('size')), $in, false, function($cx, $in) {return '                                        <a class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'" 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>
';}).'                                </div>
                            </div>
                        
'.Plugin\LCRun3::debug('if [seniorChose]', 'ifv', $cx, Plugin\LCRun3::debug('[seniorChose]', 'v', $cx, $in, array('seniorChose')), $in, function($cx, $in) {return '                                <div class="senior section">
                                    <span class="title">高级选项:</span>
                        
                                    <div class="attr-content">
                                        <ul class="clearfix senior-attr-wrap">
'.Plugin\LCRun3::debug('each [seniorChose]', 'sec', $cx, Plugin\LCRun3::debug('[seniorChose]', 'v', $cx, $in, array('seniorChose')), $in, true, function($cx, $in) {return '                                                <li class="attr'.Plugin\LCRun3::debug('unless [sub]', 'unl', $cx, Plugin\LCRun3::debug('[sub]', 'v', $cx, $in, array('sub')), $in, function($cx, $in) {return ' no-sub';}).'">
'.Plugin\LCRun3::debug('if [sub]', 'ifv', $cx, Plugin\LCRun3::debug('[sub]', 'v', $cx, $in, array('sub')), $in, function($cx, $in) {return '                                                        '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                                        <span class="iconfont">&#xe600;</span>
                        
                                                        <div class="senior-up-icon"></div>
';}, function($cx, $in) {return '                                                        <a href="'.Plugin\LCRun3::debug('[url]', 'encq', $cx, Plugin\LCRun3::debug('[url]', 'v', $cx, $in, array('url'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
';}).'                                                </li>
';}).'                                        </ul>
                        
                                        <div class="senior-sub-wrap">
'.Plugin\LCRun3::debug('each [seniorChose]', 'sec', $cx, Plugin\LCRun3::debug('[seniorChose]', 'v', $cx, $in, array('seniorChose')), $in, true, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [sub]', 'ifv', $cx, Plugin\LCRun3::debug('[sub]', 'v', $cx, $in, array('sub')), $in, function($cx, $in) {return '                                                    <div class="senior-sub hide" data-attr="'.Plugin\LCRun3::debug('[attr]', 'encq', $cx, Plugin\LCRun3::debug('[attr]', 'v', $cx, $in, array('attr'))).'">
                                                        <div class="senior-baffle"></div>
                                                        <div class="senior-content">
'.Plugin\LCRun3::debug('if [showMulti]', 'ifv', $cx, Plugin\LCRun3::debug('[showMulti]', 'v', $cx, $in, array('showMulti')), $in, function($cx, $in) {return '                                                                <span class="multi-select">多选 +</span>
';}).'                                                            <ul class="clearfix check-container">
'.Plugin\LCRun3::debug('each [sub]', 'sec', $cx, Plugin\LCRun3::debug('[sub]', 'v', $cx, $in, array('sub')), $in, true, function($cx, $in) {return '                                                                    <li class="attr '.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return 'checked';}).'">
                                                                        <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">
'.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return '                                                                                <span class="iconfont checkbox checked" data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'">&#xe636;</span>
';}, function($cx, $in) {return '                                                                                <span class="iconfont checkbox" data-id="'.Plugin\LCRun3::debug('[id]', 'encq', $cx, Plugin\LCRun3::debug('[id]', 'v', $cx, $in, array('id'))).'">&#xe635;</span>
';}).'                                                                            <span>'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</span>
                                                                        </a>
                                                                    </li>
';}).'                                                            </ul>
                                                            <div class="btns">
                                                                <button class="multi-select-ok dis">确定</button>
                                                                <button class="multi-select-cancel">取消</button>
                                                            </div>
                                                        </div>
                                                    </div>
';}).'';}).'                                        </div>
                                    </div>
                                </div>
';}).'                        </div>
'.'';}).'                    
'.Plugin\LCRun3::debug('[opts]', 'sec', $cx, Plugin\LCRun3::debug('[opts]', 'v', $cx, $in, array('opts')), $in, false, function($cx, $in) {return '                        <div class="sort-pager">
'.Plugin\LCRun3::debug('[sortType]', 'sec', $cx, Plugin\LCRun3::debug('[sortType]', 'v', $cx, $in, array('sortType')), $in, false, function($cx, $in) {return '                                <a class="sort-type'.Plugin\LCRun3::debug('if [active]', 'ifv', $cx, Plugin\LCRun3::debug('[active]', 'v', $cx, $in, array('active')), $in, function($cx, $in) {return ' active';}).'" 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'))).'
'.Plugin\LCRun3::debug('if [hasSortOrient]', 'ifv', $cx, Plugin\LCRun3::debug('[hasSortOrient]', 'v', $cx, $in, array('hasSortOrient')), $in, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [active]', 'ifv', $cx, Plugin\LCRun3::debug('[active]', 'v', $cx, $in, array('active')), $in, function($cx, $in) {return ''.Plugin\LCRun3::debug('if [desc]', 'ifv', $cx, Plugin\LCRun3::debug('[desc]', 'v', $cx, $in, array('desc')), $in, function($cx, $in) {return '                                                <span class="active-icon iconfont">&#xe603;</span>
';}, function($cx, $in) {return '                                                <span class="active-icon iconfont">&#xe604;</span>
';}).'';}, function($cx, $in) {return '                                            <span class="iconfont">&#xe614;</span>
';}).'';}, function($cx, $in) {return '                                        <span class="iconfont">&#xe604;</span>
';}).'                                </a>
';}).'                    
'.Plugin\LCRun3::debug('[checks]', 'sec', $cx, Plugin\LCRun3::debug('[checks]', 'v', $cx, $in, array('checks')), $in, false, function($cx, $in) {return ''.Plugin\LCRun3::debug('if this', 'ifv', $cx, $in, $in, function($cx, $in) {return '                                <a class="checks'.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return ' checked';}).'" href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">
'.Plugin\LCRun3::debug('if [checked]', 'ifv', $cx, Plugin\LCRun3::debug('[checked]', 'v', $cx, $in, array('checked')), $in, function($cx, $in) {return '                                        <span class="iconfont">&#xe636;</span>
';}, function($cx, $in) {return '                                        <span class="iconfont">&#xe635;</span>
';}).'                                    '.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'
                                </a>
';}).'';}).'                    
'.Plugin\LCRun3::debug('if ../[goods]', 'ifv', $cx, Plugin\LCRun3::debug('../[goods]', 'v', $cx, $cx['scopes'][count($cx['scopes'])-1], array('goods')), $in, function($cx, $in) {return '                                <div class="pager-wrap">
                                    <div class="page-count">
                                        <span id="count-per-page">
                                            '.Plugin\LCRun3::debug('[countPerPage]', 'encq', $cx, Plugin\LCRun3::debug('[countPerPage]', 'v', $cx, $in, array('countPerPage'))).'
                                            <i class="iconfont">&#xe604;</i>
                                        </span>
                                        每页
                                        <ul>
'.Plugin\LCRun3::debug('[pageCounts]', 'sec', $cx, Plugin\LCRun3::debug('[pageCounts]', 'v', $cx, $in, array('pageCounts')), $in, false, function($cx, $in) {return '                                                <li>
                                                    <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">'.Plugin\LCRun3::debug('[count]', 'encq', $cx, Plugin\LCRun3::debug('[count]', 'v', $cx, $in, array('count'))).'</a>
                                                </li>
';}).'                                        </ul>
                                    </div>
                    
                                    <p class="page-orient">
'.Plugin\LCRun3::debug('if [preHref]', 'ifv', $cx, Plugin\LCRun3::debug('[preHref]', 'v', $cx, $in, array('preHref')), $in, function($cx, $in) {return '                                            <a href="'.Plugin\LCRun3::debug('[preHref]', 'encq', $cx, Plugin\LCRun3::debug('[preHref]', 'v', $cx, $in, array('preHref'))).'">
                                                <span class="iconfont">&#xe615;</span>
                                            </a>
';}, function($cx, $in) {return '                                            <span class="dis-icon iconfont">&#xe615;</span>
';}).'                    
                                        <span>
                                            <i>'.Plugin\LCRun3::debug('[curPage]', 'encq', $cx, Plugin\LCRun3::debug('[curPage]', 'v', $cx, $in, array('curPage'))).'</i>/'.Plugin\LCRun3::debug('[pageCount]', 'encq', $cx, Plugin\LCRun3::debug('[pageCount]', 'v', $cx, $in, array('pageCount'))).'
                                        </span>
                    
'.Plugin\LCRun3::debug('if [nextHref]', 'ifv', $cx, Plugin\LCRun3::debug('[nextHref]', 'v', $cx, $in, array('nextHref')), $in, function($cx, $in) {return '                                            <a href="'.Plugin\LCRun3::debug('[nextHref]', 'encq', $cx, Plugin\LCRun3::debug('[nextHref]', 'v', $cx, $in, array('nextHref'))).'">
                                                <span class="iconfont">&#xe601;</span>
                                            </a>
';}, function($cx, $in) {return '                                            <span class="dis-icon iconfont">&#xe601;</span>
';}).'                                    </p>
                                </div>
';}).'                        </div>
';}).'                    
'.Plugin\LCRun3::debug('if [goods]', 'ifv', $cx, Plugin\LCRun3::debug('[goods]', 'v', $cx, $in, array('goods')), $in, function($cx, $in) {return '                        <div class="goods-container clearfix">
'.Plugin\LCRun3::debug('each [goods]', 'sec', $cx, Plugin\LCRun3::debug('[goods]', 'v', $cx, $in, array('goods')), $in, true, function($cx, $in) {return ''.'                                <div class="good-info" data-skn="'.Plugin\LCRun3::debug('[skn]', 'encq', $cx, Plugin\LCRun3::debug('[skn]', 'v', $cx, $in, array('skn'))).'" data-from="'.Plugin\LCRun3::debug('[from]', 'encq', $cx, Plugin\LCRun3::debug('[from]', 'v', $cx, $in, array('from'))).'">
                                    <div class="tag-container clearfix">
'.Plugin\LCRun3::debug('[tags]', 'sec', $cx, Plugin\LCRun3::debug('[tags]', 'v', $cx, $in, array('tags')), $in, false, function($cx, $in) {return ''.Plugin\LCRun3::debug('[isNew]', 'sec', $cx, Plugin\LCRun3::debug('[isNew]', 'v', $cx, $in, array('isNew')), $in, false, function($cx, $in) {return '                                                <span class="good-tag new-tag">NEW</span>
';}).''.Plugin\LCRun3::debug('[isReNew]', 'sec', $cx, Plugin\LCRun3::debug('[isReNew]', 'v', $cx, $in, array('isReNew')), $in, false, function($cx, $in) {return '                                                <span class="good-tag renew-tag">再到着</span>
';}).''.Plugin\LCRun3::debug('[isSale]', 'sec', $cx, Plugin\LCRun3::debug('[isSale]', 'v', $cx, $in, array('isSale')), $in, false, function($cx, $in) {return '                                                <span class="good-tag sale-tag">SALE</span>
';}).''.Plugin\LCRun3::debug('[isNewFestival]', 'sec', $cx, Plugin\LCRun3::debug('[isNewFestival]', 'v', $cx, $in, array('isNewFestival')), $in, false, function($cx, $in) {return '                                                <span class="good-tag new-festival-tag">新品节</span>
';}).''.Plugin\LCRun3::debug('[isLimit]', 'sec', $cx, Plugin\LCRun3::debug('[isLimit]', 'v', $cx, $in, array('isLimit')), $in, false, function($cx, $in) {return '                                                <span class="good-tag limit-tag">限量商品</span>
';}).''.Plugin\LCRun3::debug('[isYearEndPromotion]', 'sec', $cx, Plugin\LCRun3::debug('[isYearEndPromotion]', 'v', $cx, $in, array('isYearEndPromotion')), $in, false, function($cx, $in) {return '                                                <span class="good-tag yep-tag">年终大促</span>
';}).''.Plugin\LCRun3::debug('[isYearMidPromotion]', 'sec', $cx, Plugin\LCRun3::debug('[isYearMidPromotion]', 'v', $cx, $in, array('isYearMidPromotion')), $in, false, function($cx, $in) {return '                                                <span class="good-tag ymp-tag">年中热促</span>
';}).'';}).'                                    </div>
                                    <div class="good-detail-img">
                                        <a class="good-thumb" href="'.Plugin\LCRun3::debug('[url]', 'encq', $cx, Plugin\LCRun3::debug('[url]', 'v', $cx, $in, array('url'))).'" target="_blank">
                                            <img class="lazy" data-original="'.Plugin\LCRun3::debug('[thumb]', 'encq', $cx, Plugin\LCRun3::debug('[thumb]', 'v', $cx, $in, array('thumb'))).'">
                                        </a>
'.Plugin\LCRun3::debug('[isFew]', 'sec', $cx, Plugin\LCRun3::debug('[isFew]', 'v', $cx, $in, array('isFew')), $in, false, function($cx, $in) {return '                                            <p class="few-tag">即将售罄</p>
';}).'                                
'.Plugin\LCRun3::debug('if [showColBtn]', 'ifv', $cx, Plugin\LCRun3::debug('[showColBtn]', 'v', $cx, $in, array('showColBtn')), $in, function($cx, $in) {return '                                            <span class="col-btn iconfont'.Plugin\LCRun3::debug('if [coled]', 'ifv', $cx, Plugin\LCRun3::debug('[coled]', 'v', $cx, $in, array('coled')), $in, function($cx, $in) {return ' coled';}).'">&#xe616;</span>
';}).'                                    </div>
                                    <div class="good-detail-text">
                                        <a href="'.Plugin\LCRun3::debug('[url]', 'encq', $cx, Plugin\LCRun3::debug('[url]', 'v', $cx, $in, array('url'))).'" target="_blank">'.Plugin\LCRun3::debug('[name]', 'raw', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
'.Plugin\LCRun3::debug('[brand]', 'sec', $cx, Plugin\LCRun3::debug('[brand]', 'v', $cx, $in, array('brand')), $in, false, function($cx, $in) {return '                                        <p class="brand">
                                            <a href="'.Plugin\LCRun3::debug('[url]', 'encq', $cx, Plugin\LCRun3::debug('[url]', 'v', $cx, $in, array('url'))).'">'.Plugin\LCRun3::debug('[name]', 'encq', $cx, Plugin\LCRun3::debug('[name]', 'v', $cx, $in, array('name'))).'</a>
                                        </p>
';}).'                                        <p class="price">
'.Plugin\LCRun3::debug('[marketPrice]', 'sec', $cx, Plugin\LCRun3::debug('[marketPrice]', 'v', $cx, $in, array('marketPrice')), $in, false, function($cx, $in) {return '                                                <span class="market-price">¥'.Plugin\LCRun3::debug('this', 'encq', $cx, $in).'</span>
';}).'                                            <span class="sale-price'.Plugin\LCRun3::debug('unless [marketPrice]', 'unl', $cx, Plugin\LCRun3::debug('[marketPrice]', 'v', $cx, $in, array('marketPrice')), $in, function($cx, $in) {return 'prime-cost';}).'">
                                                ¥'.Plugin\LCRun3::debug('[salePrice]', 'encq', $cx, Plugin\LCRun3::debug('[salePrice]', 'v', $cx, $in, array('salePrice'))).'
                                            </span>
                                        </p>
                                    </div>
                                </div>
'.'';}).''.Plugin\LCRun3::debug('[hasNextPage]', 'sec', $cx, Plugin\LCRun3::debug('[hasNextPage]', 'v', $cx, $in, array('hasNextPage')), $in, false, function($cx, $in) {return '                                <div class="block-next-page">
                                    <a href="'.Plugin\LCRun3::debug('[href]', 'encq', $cx, Plugin\LCRun3::debug('[href]', 'v', $cx, $in, array('href'))).'">
                                        <img src="'.Plugin\LCRun3::debug('[src]', 'encq', $cx, Plugin\LCRun3::debug('[src]', 'v', $cx, $in, array('src'))).'" alt=""/>
                                    </a>
                                </div>
';}).'                            <div class="good-item-wrapper">
                                <div class="good-info-main"></div>
                                <div class="good-select-color"></div>
                            </div>
                        </div>
                    
                        <div class="product-pager clearfix">
                            <span class="total">'.Plugin\LCRun3::debug('[opts].[start]', 'encq', $cx, Plugin\LCRun3::debug('[opts].[start]', 'v', $cx, $in, array('opts','start'))).' - '.Plugin\LCRun3::debug('[opts].[end]', 'encq', $cx, Plugin\LCRun3::debug('[opts].[end]', 'v', $cx, $in, array('opts','end'))).' / 共'.Plugin\LCRun3::debug('[totalCount]', 'encq', $cx, Plugin\LCRun3::debug('[totalCount]', 'v', $cx, $in, array('totalCount'))).'件商品</span>
                    
                            <div class="pager">
                                '.Plugin\LCRun3::debug('[pager]', 'raw', $cx, Plugin\LCRun3::debug('[pager]', 'v', $cx, $in, array('pager'))).'
                            </div>
                        </div>
';}, function($cx, $in) {return ''.'                        <div class="no-result">
                            <p class="no-title">
                                抱歉!没有找到'.Plugin\LCRun3::debug('if [keyWord]', 'ifv', $cx, Plugin\LCRun3::debug('[keyWord]', 'v', $cx, $in, array('keyWord')), $in, function($cx, $in) {return '与"<b class="keyword">'.Plugin\LCRun3::debug('[keyWord]', 'encq', $cx, Plugin\LCRun3::debug('[keyWord]', 'v', $cx, $in, array('keyWord'))).'</b>"';}).'相关的商品
                            </p>
                            <div class="search-again clearfix">
                                <form method="GET" action="'.Plugin\LCRun3::debug('[searchActionUrl]', 'encq', $cx, Plugin\LCRun3::debug('[searchActionUrl]', 'v', $cx, $in, array('searchActionUrl'))).'">
                                    <input id="no-result-input" name="query" type="text" placeholder="换个关键词试试">
                                    <button class="search-again-btn" type="submit">
                                        <i class="iconfont">&#xe611;</i>
                                    </button>
                                </form>
                            </div>
                            <p class="no-tip">建议您:看看输入的文字是否有误 / 减少分类条件限制 / 重新搜索</p>
                        </div>
'.'';}).''.''.''.Plugin\LCRun3::debug('if [latestWalk]', 'ifv', $cx, Plugin\LCRun3::debug('[latestWalk]', 'v', $cx, $in, array('latestWalk')), $in, function($cx, $in) {return '                        <input id="latest-walk-count" type="hidden" value="'.Plugin\LCRun3::debug('[latestWalk]', 'encq', $cx, Plugin\LCRun3::debug('[latestWalk]', 'v', $cx, $in, array('latestWalk'))).'">
                        <div class="latest-walk">
                            <h2>最近浏览的商品</h2>
                            <div id="latest-walk-goods" class="goods clearfix"></div>
                        </div>
'.'                        <script id="latest-walk-tpl" type="text/html">
                            {{# latestWalk}}
                                <div class="good">
                                    <a href="{{href}}" target="_blank">
                                        <img class="lazy" data-original="{{img}}">
                                    </a>
                                    <a class="name" href="{{href}}" target="_blank">{{name}}</a>
                                    <p class="price">
                                        <span class="market-price">{{marketPrice}}</span>
                                        <span class="sale-price">{{salePrice}}</span>
                                    </p>
                                </div>
                            {{/ latestWalk}}
                        </script>'.'                    ';}).''.'                </div>
';}).'        </div>
';}).'</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">
                                            <img class="dim-img lazy" data-original="http://img11.static.yhbimg.com/adpic/2014/03/20/16/01863b297051f11c2be833785566cf11d1.png">
                                            <p>YOHO!有货</p>
                                        </li>
                                        <li class="left">
                                            <img class="dim-img lazy" data-original="http://img12.static.yhbimg.com/adpic/2014/04/11/14/022ddc2b6d6b2fcabee8cdc03735e5687e.jpg">
                                            <p>微信</p>
                                        </li>
                                        <li class="left">
                                            <img class="dim-img lazy" data-original="http://img13.static.yhbimg.com/adpic/2014/03/20/16/02e69d0afa222cf173d17411fd04be380e.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">&#xe62f;</span>
                        <span class="red">100%</span>
                        <span class="rgbf">品牌授权正品</span>
                    </div>
                    <div class="left">
                        <span class="iconfont rgbf">&#xe630;</span>
                        <span class="red">7天</span>
                        <span class="rgbf">无理由退换货</span>
                    </div>
                    <div class="left">
                        <span class="iconfont rgbf">&#xe61c;</span>
                        <span class="rgbf">客服电话:</span>
                        <span class="red">400-889-9646</span>
                        &nbsp;&nbsp;
                        <span class="rgb9">08:00-22:30(周一至周日)</span>
                        &nbsp;&nbsp;
                        <span>
                            <a class="red" href="http://chat8.live800.com/live800/chatClient/chatbox.jsp?companyID=620092&configID=149091&jid=8732423409" target="_blank">在线客服</a>
                        </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 [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 [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 [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\');
        </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 [cartEnsurePage]', 'ifv', $cx, Plugin\LCRun3::debug('[cartEnsurePage]', 'v', $cx, $in, array('cartEnsurePage')), $in, function($cx, $in) {return '        <script>
            seajs.use(\'js/cart/cart\');
        </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>
'.''.'';
}
?>