<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Minification failed. Returning unminified contents.
(1,11): run-time error CSS1031: Expected selector, found '='
(1,11): run-time error CSS1025: Expected comma or open brace, found '='
(52,1): run-time error CSS1019: Unexpected token, found '$'
(52,2): run-time error CSS1019: Unexpected token, found '('
(52,12): run-time error CSS1031: Expected selector, found '('
(52,12): run-time error CSS1025: Expected comma or open brace, found '('
(54,2): run-time error CSS1019: Unexpected token, found ')'
 */
var Store = {
    init: function () {
        this.initEvent();
        this.initTouchSlider();
    },
    initEvent: function () {
        $("#btn-filtershoplist").click(function () {
            location.href = getFilterUrl();
        });
    },
    initTouchSlider: function () {
        $dragBln = false;
        //设置焦点高度
        var WIDTH = $(window).width();
        var scale = 410 / 660;
        var sliderHeight = Math.floor(WIDTH * scale) + "px";
        $(".slider").css("height", sliderHeight);

        $(".banner_wrapper").touchSlider({
            flexible: true,
            speed: 200,
            paging: $(".slider .dots li"),
            counter: function (e) {
                $(".slider .dots li").removeClass("on").eq(e.current - 1).addClass("on");
            }
        });
        $(".banner_wrapper").bind("mousedown", function () {
            $dragBln = false;
        })
        $(".banner_wrapper").bind("dragstart", function () {
            $dragBln = true;
        });
        $(".banner_wrapper a").click(function () {
            if ($dragBln) {
                return false;
            }
        })
        timer = setInterval(function () { $("#btn_next").click(); }, 5000);
        $(".touchslider").hover(function () {
            clearInterval(timer);
        }, function () {
            timer = setInterval(function () { $("#btn_next").click(); }, 5000);
        })
        $(".banner_wrapper").bind("touchstart", function () {
            clearInterval(timer);
        }).bind("touchend", function () {
            timer = setInterval(function () { $("#btn_next").click(); }, 5000);
        })
    }
};

$(function () {
    Store.init();
});
</pre></body></html>