//<script>
    var textareaEle = document.querySelector('#u213570 > textarea');
    //textarea元素是否存在
    if( textareaEle ){
        var StorageVal = $('#u213570').children('textarea').eq(0).text();
        if(JSON.parse(StorageVal).data.StorageVal){
            var rowFixed = JSON.parse(JSON.parse(StorageVal).data.StorageVal).fixed;
            var rowId = JSON.parse(JSON.parse(StorageVal).data.StorageVal).rowId;
        }
    }
    else{
        var StorageVal = '{"display":"none","row_type":"default","rowId":"","module_height":"500","r_background":"#e3e3e3","scroll_list":[{"id":"10","src":"","url":"","target":"_blank"},{"id":"11","src":"","url":"","target":"_blank"}],"swiper":{"type":"full","width":"1200","speed":"300","full_width":"1900","full_height":"500","loop":"false"},"pageStyle":{"display":"block","background":"#fff","background_globalColor":"","selectbackground":"#f00","selectbackground_globalColor":"","width":"20","height":"20","margin":"5","borderColor":"#333","borderColor_globalColor":"","borderWidth":"5","borderRadius":"0","bottom":"10"},"btnStyle":{"display":"block","leftIcon":"fa-angle-double-left","rightIcon":"fa-angle-double-right","background":"#5874d8","fontSize":"30","color":"#ccc","width":"50","height":"80","marginLR":"1","borderRadius":"0"},"full_banner_width":"0","full_banner_height":"0","banner_is_adaptation":"false"}';
        if( StorageVal != 'null'){
            var rowFixed = JSON.parse(StorageVal).fixed;

            var rowId = JSON.parse(StorageVal).rowId ? JSON.parse(StorageVal).rowId : 'u213570';
        }
    }

    if( rowFixed == 'fixed'){
        $('#' + rowId).addClass('rowFixed');
    }
    else{
        $('#' + rowId).remove('rowFixed');
        $('.rowFixedNext').remove();
    }

    var ele = document.querySelector('.rowFixed');//是否存在固定的row

    if( ele ){
        var navY = $('.rowFixed').offset().top;
        var eleHeight = $('.rowFixed').height();

        var nextEle = document.querySelector('.rowFixedNext');//如果不存在就插入一个
        if(!nextEle){
            $('.rowFixed').after('<div class="rowFixedNext"></div>');
            $('.rowFixedNext').css('marginTop',0);
        }


        $(window).scroll(function () {


            var nowY = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
            if( nowY > navY){
                $('.rowFixed').css({
                    'position':'fixed',
                    'left':0,
                    'top':0,
                    'zIndex':100
                });

                $('.rowFixedNext').css('marginTop',eleHeight);
            }
            else{
                $('.rowFixed').css({
                    'position':'relative',

                });
                $('.rowFixedNext').css('marginTop',0);
            }
        })
    }

    //普通模式下的动画,且不是横幅
    
        

    //滚动模式下的动画
    

    //普通模式下的横幅
    //<script>
    var textareaEle = document.querySelector('#u994206 > textarea');
    //textarea元素是否存在
    if( textareaEle ){
        var StorageVal = $('#u994206').children('textarea').eq(0).text();
        if(JSON.parse(StorageVal).data.StorageVal){
            var rowFixed = JSON.parse(JSON.parse(StorageVal).data.StorageVal).fixed;
            var rowId = JSON.parse(JSON.parse(StorageVal).data.StorageVal).rowId;
        }
    }
    else{
        var StorageVal = '{"row_type":"default","module_width":"980","module_height":540,"module_index":1,"module_name":"","w_border_raduis_num":"0","w_opacity":"1","w_fill":"0","w_transtion":"0","w_background":"rgba(227, 227, 227, 0)","w_border_left_color":"rgba(255, 255, 255, 1)","w_border_left_style":"solid","w_border_left_width":"0","w_border_top_color":"rgba(255, 255, 255, 1)","w_border_top_style":"solid","w_border_top_width":"0","w_border_right_color":"rgba(255, 255, 255, 1)","w_border_right_style":"solid","w_border_right_width":"0","w_border_bottom_color":"rgba(255, 255, 255, 1)","w_border_bottom_style":"solid","w_border_bottom_width":"0","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"center center","r_bg_src":"https:\/\/cmsimg01.71360.com\/data\/20200316\/11u1773\/public\/2020031613343451740.jpg","r_bg_position":"center center","r_background":"rgba(255, 255, 255, 1)","r_border_top_style":"solid","r_border_top_width":0,"r_border_top_color":"rgba(255, 255, 255, 1)","r_border_bottom_width":0,"r_border_bottom_style":"solid","r_border_bottom_color":"rgba(255, 255, 255, 1)","r_fill":0,"r_tile_style":"no-repeat","fixed":"static","rowId":"","scroll_list":[{"id":"1","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#e3e3e3","backgroundSize":"cover"},{"id":"2","r_background":"#1db9ff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#fff","backgroundSize":"cover"},{"id":"3","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#ffc400","backgroundSize":"cover"}],"swiper_set":{"pattern":"horizontal","speed":"300"},"pageStyle":{"display":"block","background":"#fff","selectbackground":"#f00","width":"20","height":"20","margin":"5","borderColor":"#333","borderWidth":"5","borderRadius":"0","bottom":"10"}}';
        if( StorageVal != 'null'){
            var rowFixed = JSON.parse(StorageVal).fixed;

            var rowId = JSON.parse(StorageVal).rowId ? JSON.parse(StorageVal).rowId : 'u994206';
        }
    }

    if( rowFixed == 'fixed'){
        $('#' + rowId).addClass('rowFixed');
    }
    else{
        $('#' + rowId).remove('rowFixed');
        $('.rowFixedNext').remove();
    }

    var ele = document.querySelector('.rowFixed');//是否存在固定的row

    if( ele ){
        var navY = $('.rowFixed').offset().top;
        var eleHeight = $('.rowFixed').height();

        var nextEle = document.querySelector('.rowFixedNext');//如果不存在就插入一个
        if(!nextEle){
            $('.rowFixed').after('<div class="rowFixedNext"></div>');
            $('.rowFixedNext').css('marginTop',0);
        }


        $(window).scroll(function () {


            var nowY = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
            if( nowY > navY){
                $('.rowFixed').css({
                    'position':'fixed',
                    'left':0,
                    'top':0,
                    'zIndex':100
                });

                $('.rowFixedNext').css('marginTop',eleHeight);
            }
            else{
                $('.rowFixed').css({
                    'position':'relative',

                });
                $('.rowFixedNext').css('marginTop',0);
            }
        })
    }

    //普通模式下的动画,且不是横幅
        $(function(){
        function animations_scroll(){
            var $items = $('#u994206').find('.hasAnimated');
            var $l = $items.length;
            var scrollTop = $(window).scrollTop();
            var windowHeight = document.documentElement.clientHeight; // 可视区域的高度

            for (var i = 0; i < $l; i++) {
                var anitype = $items.eq(i).data('anitype');
                var anistate = $items.eq(i).data('anistate');
                var aniieteration = $items.eq(i).data('aniieteration');
                var duration = $items.eq(i).data('duration');
                var delay = $items.eq(i).data('delay');
                var domHeight = $items.eq(i).height();
                var top = 0;

                //如果是底部
                if($items.eq(i).parents('.layout_footer').length > 0){
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('.layout_footer')[0].offsetTop;
                }
                else{
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('div.layrow')[0].offsetTop;
                }
                
                if(top >= scrollTop && top <= windowHeight + scrollTop){
                    // 是否多次触发 通过类名进行控制
                    if (aniieteration) {
                        $items.eq(i).addClass('animated  '+anitype+anistate).css({
                            animationDuration:duration + 's',
                            animationDelay:delay + 's'
                        });
                    } else {
                        //  若是单次触发  触发一次 便不再进入
                        if (!$items.eq(i).hasClass('oneCountAnimate')) {
                            $items.eq(i).addClass('animated  '+anitype+anistate).addClass('oneCountAnimate').css({
                                animationDuration:duration + 's',
                                animationDelay:delay + 's'
                            });
                        }
                    }
                }else{
                    $items.eq(i).removeClass('animated  '+anitype+anistate);
                }
            }
        }

        // 动画 animations_scroll
        $(document).scroll(animations_scroll);
        animations_scroll();
    });
    
        

    //滚动模式下的动画
    

    //普通模式下的横幅
    if('' == '0' || '1' == '0'){
    //样式1
    var ad = new AdMove("u659876");
    $('#u659876').css('zIndex','999999');
    var times = '' || '10'
    ad.Run(parseInt(times));
    //关闭点击事件
    $("#u659876 #open_page").on('click',function(){
        $('#u659876').css("display","none");
    });
};

 	if( parseInt($.browser.version) === 8 ){
 		console.log('ie8')
 	}else {

        //只有dom存在，才绑定js
        if (document.querySelector('#u659876')) {
            ;var num = 'u659876';
            window['indexVm' + num] = new Vue({
                el: "#u659876",
                data: {
                    indexStore: {},
                    indexShow: false,
                    costomDatas: {}
                },
                watch: {
                    costomDatas: {
                        handler: function (val, oldVal) {
                            console.log('test');
                        },
                        deep: true
                    }
                },
                computed: {
                    div: function () {
                        return {
                            overflowX: this.indexStore.w_scrollX_type,
                            overflowY: this.indexStore.w_scrollY_type,
                            wordWrap: this.indexStore.w_word_type
                        };
                    }
                },
                methods: {},
                created: function () {
                    try {
                        var StorageVal = {"w_scrollX_type":"hidden","w_scrollY_type":"hidden","w_word_type":"normal","contents":"","msg":"","custom_pos_style":"1","is_hover":"0","custom_pos_style_left":0,"custom_pos_style_top":0,"custom_pos_style_rate":10,"hover_color":"rgba(0, 0, 0, 1)","hover_bc_color":"rgba(255, 255, 255, 1)","width":1200,"height":12,"fixedLeft":0,"fixedTop":0,"openShow":false,"isShows":false,"editBc":"rgba(255, 255, 255, 1)","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                        if (StorageVal != null) {
                            this.indexStore = StorageVal;
                        }
                    } catch (e) {
                    }


                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }

                    console.log('index', this.indexStore.custom_pos_style);
                    //debugger;

                    if (this.indexStore.custom_pos_style == '0') {
                        //样式1
                    } else if (this.indexStore.custom_pos_style == '1') {
                        //样式2
                    } else if (this.indexStore.custom_pos_style == '2') {
                        //样式3
                        try {
                            $('#u659876').css({
                                'position': 'fixed',
                                'zIndex': '999999'
                            });
                        } catch (e) {
                        }
                        ;
                    }

                    //挂件动画
                    try {
                        $.allWidgetAnimate(this, $('#u659876'));
                    } catch (e) {
                    }
                    ;
                },
                ready: function () {
                    if (this.indexStore.custom_pos_style === '2') {
                        var t = setTimeout(function () {
                            try {
                                $("#u659876").draggable();
                                $("#u659876").draggable("disable");
                            } catch (e) {
                            }
                            clearTimeout(t);
                        }, 500);
                    } else if (this.indexStore.custom_pos_style === '1') {
                        setTimeout(function () {
                            try {
                                $("#u659876").draggable("enable");
                            } catch (e) {
                            }
                        }, 100);
                    }
                    if (typeof templet != "undefined") {
                        templet.checkaction(this);
                    }

                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }
                }
            });
        }
    }

 	if( parseInt($.browser.version) === 8 ){
	console.log('ie8')
}else{

    //只有dom存在，才绑定js
    if(document.querySelector('#u28414')){
        var num = 'u28414';
        window['indexVm'+num] = new Vue({
            el:"#u28414",
            data:{
                indexStore:{

                },
                indexShow:false
            },
            methods:{

            },
            computed:{
                h2:function(){
                    return {
                        background: this.indexStore.location_title_bc_color ,
                        color: this.indexStore.location_title_fs_color ,
                        textAlign: this.indexStore.location_title_text_align ,
                        fontSize: this.indexStore.location_title_fs + 'px',
                        borderRadius: this.indexStore.location_title_border_radius + 'px',
                        paddingTop: this.indexStore.location_title_padding_top + 'px',
                        paddingBottom: this.indexStore.location_title_padding_bottom + 'px',
                        borderStyle:this.indexStore.location_title_border_style,
                        borderWidth:this.indexStore.location_title_border_width + 'px',
                        borderColor:this.indexStore.location_title_border_color,
                        fontWeight:this.indexStore.location_title_fs_weight,
                        marginTop: this.indexStore.location_title_margin_top + 'px',
                        marginBottom: this.indexStore.location_title_margin_bottom + 'px',
                    };
                }
            },
            created:function(){
                try{
                    var StorageVal = {"allwidth":148,"allheight":36,"location_title_fs":26,"location_title_fs_color":"rgba(255, 255, 255, 1)","location_title_bc_color":"rgba(204, 204, 204, 0)","location_title_text_align":"center","location_title_border_radius":0,"location_title_padding_top":0,"location_title_padding_bottom":0,"location_title_border_width":0,"location_title_border_style":"solid","location_title_border_color":"rgba(0, 0, 0, 1)","location_title_fs_weight":"normal","location_title_data_source":"default","location_title_self_data":"自定义数据","location_title_margin_top":0,"location_title_margin_bottom":0,"location_title_fw":"normal","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                    if(StorageVal != null){
                        this.indexStore = StorageVal;
                    }
                }catch(e){}
            },
            ready:function(){
                if(typeof templet!="undefined"){
                    templet.checkaction(this);
                }
            }
        });
    }

}
if('' == '0' || '1' == '0'){
    //样式1
    var ad = new AdMove("u117612");
    $('#u117612').css('zIndex','999999');
    var times = '' || '10'
    ad.Run(parseInt(times));
    //关闭点击事件
    $("#u117612 #open_page").on('click',function(){
        $('#u117612').css("display","none");
    });
};

 	if( parseInt($.browser.version) === 8 ){
 		console.log('ie8')
 	}else {

        //只有dom存在，才绑定js
        if (document.querySelector('#u117612')) {
            ;var num = 'u117612';
            window['indexVm' + num] = new Vue({
                el: "#u117612",
                data: {
                    indexStore: {},
                    indexShow: false,
                    costomDatas: {}
                },
                watch: {
                    costomDatas: {
                        handler: function (val, oldVal) {
                            console.log('test');
                        },
                        deep: true
                    }
                },
                computed: {
                    div: function () {
                        return {
                            overflowX: this.indexStore.w_scrollX_type,
                            overflowY: this.indexStore.w_scrollY_type,
                            wordWrap: this.indexStore.w_word_type
                        };
                    }
                },
                methods: {},
                created: function () {
                    try {
                        var StorageVal = {"w_scrollX_type":"hidden","w_scrollY_type":"hidden","w_word_type":"normal","contents":"<div style=\"margin-top:16px;\">\n\t<span style=\"font-size:20px;color:#d9d9d9;\"><em>PRODUCTS CENTER</em></span>\n</div>","msg":"","custom_pos_style":1,"is_hover":"0","custom_pos_style_left":0,"custom_pos_style_top":0,"custom_pos_style_rate":10,"hover_color":"rgba(0, 0, 0, 1)","hover_bc_color":"rgba(255, 255, 255, 1)","width":243,"height":60,"fixedLeft":0,"fixedTop":0,"openShow":false,"isShows":false,"editBc":"rgba(255, 255, 255, 1)","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                        if (StorageVal != null) {
                            this.indexStore = StorageVal;
                        }
                    } catch (e) {
                    }


                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }

                    console.log('index', this.indexStore.custom_pos_style);
                    //debugger;

                    if (this.indexStore.custom_pos_style == '0') {
                        //样式1
                    } else if (this.indexStore.custom_pos_style == '1') {
                        //样式2
                    } else if (this.indexStore.custom_pos_style == '2') {
                        //样式3
                        try {
                            $('#u117612').css({
                                'position': 'fixed',
                                'zIndex': '999999'
                            });
                        } catch (e) {
                        }
                        ;
                    }

                    //挂件动画
                    try {
                        $.allWidgetAnimate(this, $('#u117612'));
                    } catch (e) {
                    }
                    ;
                },
                ready: function () {
                    if (this.indexStore.custom_pos_style === '2') {
                        var t = setTimeout(function () {
                            try {
                                $("#u117612").draggable();
                                $("#u117612").draggable("disable");
                            } catch (e) {
                            }
                            clearTimeout(t);
                        }, 500);
                    } else if (this.indexStore.custom_pos_style === '1') {
                        setTimeout(function () {
                            try {
                                $("#u117612").draggable("enable");
                            } catch (e) {
                            }
                        }, 100);
                    }
                    if (typeof templet != "undefined") {
                        templet.checkaction(this);
                    }

                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }
                }
            });
        }
    }

 	if( parseInt($.browser.version) === 8 ){
	console.log('ie8')
}else{
    //只有dom存在，才绑定js
    if(document.querySelector('#u566631')){
        var num = 'u566631';
        window['indexVm'+num]	=new Vue({
            el:'#u566631',
            data:{
                indexStore:{
                },
                indexModule:{

                },
                listArr:[],
                lasta:'',
                indexShow:false
            },
            computed:{
                divs:function(){
                    return {
                        textAlign:this.indexStore.location_text_align_all,
                        lineHeight:this.indexStore.line_height + 'px'
                    }
                },
                lasta1:function(){
                    return {
                        color:this.indexStore.last_font_color,
                        fontSize:this.indexStore.font_sizes + 'px',
                    }
                },
                iconStyle:function(){
                    return {
                        color:this.indexStore.location_icon_color,
                        fontSize:this.indexStore.icon_sizes + 'px',
                        marginLeft:this.indexStore.location_icon_left + 'px',
                        marginRight:this.indexStore.location_icon_top + 'px',
                        fontFamily: 'FontAwesome'
                    }
                },
                titlestyle:function(){
                    return {
                        color:this.indexStore.font_color,
                        fontSize:this.indexStore.font_sizes + 'px'
                    }
                },
                huoqude:function(){
                    return {
                        color:this.indexStore.font_color,
                        fontSize:this.indexStore.font_sizes + 'px',
                        float:'left'
                    }
                },
                moduleStyle:function(){
                    return{
                        width: this.indexStore.modulevms.module_width + 'px',
                        height: this.indexStore.modulevms.module_height + 'px',
                        left: this.indexStore.modulevms.module_left + 'px',
                        top: this.indexStore.modulevms.module_top + 'px',
                        borderRadius: this.indexStore.modulevms.w_border_raduis_num,
                        opacity: this.indexStore.modulevms.w_opacity,
                        padding: this.indexStore.modulevms.w_fill + 'px',
                        borderLeftStyle: this.indexStore.modulevms.w_border_left_style,
                        borderLeftWidth: this.indexStore.modulevms.w_border_left_width + 'px',
                        borderTopStyle: this.indexStore.modulevms.w_border_top_style,
                        borderTopWidth: this.indexStore.modulevms.w_border_top_width + 'px',
                        borderRightStyle: this.indexStore.modulevms.w_border_right_style,
                        borderRightWidth: this.indexStore.modulevms.w_border_right_width + 'px',
                        borderBottomStyle: this.indexStore.modulevms.w_border_bottom_style,
                        borderBottomWidth: this.indexStore.modulevms.w_border_bottom_width + 'px',
                        backgroundRepeat: this.indexStore.modulevms.w_tile_style,
                        borderTopColor: this.indexStore.modulevms.module_pulick_border_top_color,
                        borderRightColor: this.indexStore.modulevms.module_pulick_border_right_color,
                        borderBottomColor: this.indexStore.modulevms.module_pulick_border_bottom_color,
                        borderLeftColor: this.indexStore.modulevms.module_pulick_border_left_color
                    }
                }
            },
            methods:{

            },
            created: function(){

                try{
                    var StorageVal = {"allwidth":837,"allheight":40,"location_data_source":"default","location_self_data":"","icon_class":"fa-home","font_sizes":14,"line_height":34,"icon_sizes":17,"location_title":"当前位置:","font_color":"rgba(255, 255, 255, 1)","last_font_color":"rgba(27, 72, 152, 1)","hover_font_color":"rgba(27, 72, 152, 1)","location_icon_color":"rgba(255, 255, 255, 1)","location_text_align_all":"left","styleId":"w1111","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                    if(StorageVal != null){
                        this.indexStore = StorageVal;
                    }

                    this.huoqu =  JSON.stringify('');
                }catch(e){}

                for (var i = 0; i < $('').length; i++) {
                    if ($('').eq(i).hasClass('last_a')) {
                        this.lasta = $('').eq(i).text();
                    }else{
                        this.listArr.push($('').eq(i).text());
                    }
                }
            },
            ready:function(){
                if(typeof templet!="undefined"){
                    templet.checkaction(this);
                }
            }
        });
    }

}
//<script>
    var textareaEle = document.querySelector('#u726829 > textarea');
    //textarea元素是否存在
    if( textareaEle ){
        var StorageVal = $('#u726829').children('textarea').eq(0).text();
        if(JSON.parse(StorageVal).data.StorageVal){
            var rowFixed = JSON.parse(JSON.parse(StorageVal).data.StorageVal).fixed;
            var rowId = JSON.parse(JSON.parse(StorageVal).data.StorageVal).rowId;
        }
    }
    else{
        var StorageVal = '{"row_type":"default","module_width":"1200","module_height":"60","module_index":"2","module_name":"","w_border_raduis_num":"0","w_opacity":"1","w_fill":"0","w_transtion":"0","w_background":"rgba(227, 227, 227, 0)","w_border_left_color":"rgba(51, 51, 51, 1)","w_border_left_style":"solid","w_border_left_width":"0","w_border_top_color":"rgba(51, 51, 51, 1)","w_border_top_style":"solid","w_border_top_width":"0","w_border_right_color":"rgba(51, 51, 51, 1)","w_border_right_style":"solid","w_border_right_width":"0","w_border_bottom_color":"rgba(51, 51, 51, 1)","w_border_bottom_style":"solid","w_border_bottom_width":"0","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top right","r_bg_src":"","r_bg_position":"top left","r_background":"rgba(27, 27, 27, 1)","r_border_top_style":"solid","r_border_top_width":"0","r_border_top_color":"rgba(204, 204, 204, 1)","r_border_bottom_width":"0","r_border_bottom_style":"solid","r_border_bottom_color":"rgba(204, 204, 204, 1)","r_fill":"0","r_tile_style":"repeat","fixed":"static","rowId":"","scroll_list":[{"id":"1","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#e3e3e3","backgroundSize":"cover"},{"id":"2","r_background":"#1db9ff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#fff","backgroundSize":"cover"},{"id":"3","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#ffc400","backgroundSize":"cover"}],"swiper_set":{"pattern":"horizontal","speed":"300"},"pageStyle":{"display":"block","background":"#fff","selectbackground":"#f00","width":"20","height":"20","margin":"5","borderColor":"#333","borderWidth":"5","borderRadius":"0","bottom":"10"}}';
        if( StorageVal != 'null'){
            var rowFixed = JSON.parse(StorageVal).fixed;

            var rowId = JSON.parse(StorageVal).rowId ? JSON.parse(StorageVal).rowId : 'u726829';
        }
    }

    if( rowFixed == 'fixed'){
        $('#' + rowId).addClass('rowFixed');
    }
    else{
        $('#' + rowId).remove('rowFixed');
        $('.rowFixedNext').remove();
    }

    var ele = document.querySelector('.rowFixed');//是否存在固定的row

    if( ele ){
        var navY = $('.rowFixed').offset().top;
        var eleHeight = $('.rowFixed').height();

        var nextEle = document.querySelector('.rowFixedNext');//如果不存在就插入一个
        if(!nextEle){
            $('.rowFixed').after('<div class="rowFixedNext"></div>');
            $('.rowFixedNext').css('marginTop',0);
        }


        $(window).scroll(function () {


            var nowY = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
            if( nowY > navY){
                $('.rowFixed').css({
                    'position':'fixed',
                    'left':0,
                    'top':0,
                    'zIndex':100
                });

                $('.rowFixedNext').css('marginTop',eleHeight);
            }
            else{
                $('.rowFixed').css({
                    'position':'relative',

                });
                $('.rowFixedNext').css('marginTop',0);
            }
        })
    }

    //普通模式下的动画,且不是横幅
        $(function(){
        function animations_scroll(){
            var $items = $('#u726829').find('.hasAnimated');
            var $l = $items.length;
            var scrollTop = $(window).scrollTop();
            var windowHeight = document.documentElement.clientHeight; // 可视区域的高度

            for (var i = 0; i < $l; i++) {
                var anitype = $items.eq(i).data('anitype');
                var anistate = $items.eq(i).data('anistate');
                var aniieteration = $items.eq(i).data('aniieteration');
                var duration = $items.eq(i).data('duration');
                var delay = $items.eq(i).data('delay');
                var domHeight = $items.eq(i).height();
                var top = 0;

                //如果是底部
                if($items.eq(i).parents('.layout_footer').length > 0){
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('.layout_footer')[0].offsetTop;
                }
                else{
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('div.layrow')[0].offsetTop;
                }
                
                if(top >= scrollTop && top <= windowHeight + scrollTop){
                    // 是否多次触发 通过类名进行控制
                    if (aniieteration) {
                        $items.eq(i).addClass('animated  '+anitype+anistate).css({
                            animationDuration:duration + 's',
                            animationDelay:delay + 's'
                        });
                    } else {
                        //  若是单次触发  触发一次 便不再进入
                        if (!$items.eq(i).hasClass('oneCountAnimate')) {
                            $items.eq(i).addClass('animated  '+anitype+anistate).addClass('oneCountAnimate').css({
                                animationDuration:duration + 's',
                                animationDelay:delay + 's'
                            });
                        }
                    }
                }else{
                    $items.eq(i).removeClass('animated  '+anitype+anistate);
                }
            }
        }

        // 动画 animations_scroll
        $(document).scroll(animations_scroll);
        animations_scroll();
    });
    
        

    //滚动模式下的动画
    

    //普通模式下的横幅
    if('' == '0' || '1' == '0'){
    //样式1
    var ad = new AdMove("u344213");
    $('#u344213').css('zIndex','999999');
    var times = '' || '10'
    ad.Run(parseInt(times));
    //关闭点击事件
    $("#u344213 #open_page").on('click',function(){
        $('#u344213').css("display","none");
    });
};

 	if( parseInt($.browser.version) === 8 ){
 		console.log('ie8')
 	}else {

        //只有dom存在，才绑定js
        if (document.querySelector('#u344213')) {
            ;var num = 'u344213';
            window['indexVm' + num] = new Vue({
                el: "#u344213",
                data: {
                    indexStore: {},
                    indexShow: false,
                    costomDatas: {}
                },
                watch: {
                    costomDatas: {
                        handler: function (val, oldVal) {
                            console.log('test');
                        },
                        deep: true
                    }
                },
                computed: {
                    div: function () {
                        return {
                            overflowX: this.indexStore.w_scrollX_type,
                            overflowY: this.indexStore.w_scrollY_type,
                            wordWrap: this.indexStore.w_word_type
                        };
                    }
                },
                methods: {},
                created: function () {
                    try {
                        var StorageVal = {"w_scrollX_type":"hidden","w_scrollY_type":"hidden","w_word_type":"normal","contents":"<div style=\"width:1200px;\">\n\t<div style=\"border-bottom:1px solid #999999;margin-top:25px;width:515px;float:left;\">\n\t</div>\n<div 、=\"\"> <span style=\"font-size:32px;\">&nbsp; 产品中心</span> \n</div>\n<div style=\"border-bottom:1px solid #999999;margin-top:-23px;width:515px;float:right;\">\n</div>\n\t</div>","msg":"","custom_pos_style":1,"is_hover":"0","custom_pos_style_left":0,"custom_pos_style_top":0,"custom_pos_style_rate":10,"hover_color":"rgba(0, 0, 0, 1)","hover_bc_color":"rgba(255, 255, 255, 1)","width":1200,"height":58,"fixedLeft":0,"fixedTop":0,"openShow":false,"isShows":false,"editBc":"rgba(255, 255, 255, 1)","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                        if (StorageVal != null) {
                            this.indexStore = StorageVal;
                        }
                    } catch (e) {
                    }


                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }

                    console.log('index', this.indexStore.custom_pos_style);
                    //debugger;

                    if (this.indexStore.custom_pos_style == '0') {
                        //样式1
                    } else if (this.indexStore.custom_pos_style == '1') {
                        //样式2
                    } else if (this.indexStore.custom_pos_style == '2') {
                        //样式3
                        try {
                            $('#u344213').css({
                                'position': 'fixed',
                                'zIndex': '999999'
                            });
                        } catch (e) {
                        }
                        ;
                    }

                    //挂件动画
                    try {
                        $.allWidgetAnimate(this, $('#u344213'));
                    } catch (e) {
                    }
                    ;
                },
                ready: function () {
                    if (this.indexStore.custom_pos_style === '2') {
                        var t = setTimeout(function () {
                            try {
                                $("#u344213").draggable();
                                $("#u344213").draggable("disable");
                            } catch (e) {
                            }
                            clearTimeout(t);
                        }, 500);
                    } else if (this.indexStore.custom_pos_style === '1') {
                        setTimeout(function () {
                            try {
                                $("#u344213").draggable("enable");
                            } catch (e) {
                            }
                        }, 100);
                    }
                    if (typeof templet != "undefined") {
                        templet.checkaction(this);
                    }

                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }
                }
            });
        }
    }

 	if( parseInt($.browser.version) === 8 ){
	console.log('ie8')
}else{

    //只有dom存在，才绑定js
    if(document.querySelector('#u28217')){
        var num = 'u28217';
        window['indexVm'+num] = new Vue({
            el:"#u28217",
            data:{
                indexStore:{

                },
                indexShow:false
            },
            methods:{

            },
            computed:{
                h2:function(){
                    return {
                        background: this.indexStore.location_title_bc_color ,
                        color: this.indexStore.location_title_fs_color ,
                        textAlign: this.indexStore.location_title_text_align ,
                        fontSize: this.indexStore.location_title_fs + 'px',
                        borderRadius: this.indexStore.location_title_border_radius + 'px',
                        paddingTop: this.indexStore.location_title_padding_top + 'px',
                        paddingBottom: this.indexStore.location_title_padding_bottom + 'px',
                        borderStyle:this.indexStore.location_title_border_style,
                        borderWidth:this.indexStore.location_title_border_width + 'px',
                        borderColor:this.indexStore.location_title_border_color,
                        fontWeight:this.indexStore.location_title_fs_weight,
                        marginTop: this.indexStore.location_title_margin_top + 'px',
                        marginBottom: this.indexStore.location_title_margin_bottom + 'px',
                    };
                }
            },
            created:function(){
                try{
                    var StorageVal = {"allwidth":231,"allheight":41,"location_title_fs":32,"location_title_fs_color":"rgba(0, 0, 0, 1)","location_title_bc_color":"rgba(204, 204, 204, 0)","location_title_text_align":"center","location_title_border_radius":0,"location_title_padding_top":0,"location_title_padding_bottom":0,"location_title_border_width":0,"location_title_border_style":"solid","location_title_border_color":"rgba(0, 0, 0, 1)","location_title_fs_weight":"normal","location_title_data_source":"default","location_title_self_data":"自定义数据","location_title_margin_top":0,"location_title_margin_bottom":0,"location_title_fw":"normal","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                    if(StorageVal != null){
                        this.indexStore = StorageVal;
                    }
                }catch(e){}
            },
            ready:function(){
                if(typeof templet!="undefined"){
                    templet.checkaction(this);
                }
            }
        });
    }

}
//<script>
    var textareaEle = document.querySelector('#u767552 > textarea');
    //textarea元素是否存在
    if( textareaEle ){
        var StorageVal = $('#u767552').children('textarea').eq(0).text();
        if(JSON.parse(StorageVal).data.StorageVal){
            var rowFixed = JSON.parse(JSON.parse(StorageVal).data.StorageVal).fixed;
            var rowId = JSON.parse(JSON.parse(StorageVal).data.StorageVal).rowId;
        }
    }
    else{
        var StorageVal = '{"row_type":"default","module_width":"1200","module_height":"94","module_index":"1","module_name":"","w_border_raduis_num":"0","w_opacity":"1","w_fill":"0","w_transtion":"0","w_background":"rgba(227, 227, 227, 0)","w_border_left_color":"rgba(51, 51, 51, 1)","w_border_left_style":"solid","w_border_left_width":"0","w_border_top_color":"rgba(51, 51, 51, 1)","w_border_top_style":"solid","w_border_top_width":"0","w_border_right_color":"rgba(51, 51, 51, 1)","w_border_right_style":"solid","w_border_right_width":"0","w_border_bottom_color":"rgba(51, 51, 51, 1)","w_border_bottom_style":"solid","w_border_bottom_width":"0","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","r_bg_src":"","r_bg_position":"top left","r_background":"#fff","r_border_top_style":"solid","r_border_top_width":"0","r_border_top_color":"#ccc","r_border_bottom_width":"0","r_border_bottom_style":"solid","r_border_bottom_color":"#ccc","r_fill":"0","r_tile_style":"repeat","fixed":"static","rowId":"","scroll_list":[{"id":"1","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#e3e3e3","backgroundSize":"cover"},{"id":"2","r_background":"#1db9ff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#fff","backgroundSize":"cover"},{"id":"3","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#ffc400","backgroundSize":"cover"}],"swiper_set":{"pattern":"horizontal","speed":"300"},"pageStyle":{"display":"block","background":"#fff","selectbackground":"#f00","width":"20","height":"20","margin":"5","borderColor":"#333","borderWidth":"5","borderRadius":"0","bottom":"10"}}';
        if( StorageVal != 'null'){
            var rowFixed = JSON.parse(StorageVal).fixed;

            var rowId = JSON.parse(StorageVal).rowId ? JSON.parse(StorageVal).rowId : 'u767552';
        }
    }

    if( rowFixed == 'fixed'){
        $('#' + rowId).addClass('rowFixed');
    }
    else{
        $('#' + rowId).remove('rowFixed');
        $('.rowFixedNext').remove();
    }

    var ele = document.querySelector('.rowFixed');//是否存在固定的row

    if( ele ){
        var navY = $('.rowFixed').offset().top;
        var eleHeight = $('.rowFixed').height();

        var nextEle = document.querySelector('.rowFixedNext');//如果不存在就插入一个
        if(!nextEle){
            $('.rowFixed').after('<div class="rowFixedNext"></div>');
            $('.rowFixedNext').css('marginTop',0);
        }


        $(window).scroll(function () {


            var nowY = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
            if( nowY > navY){
                $('.rowFixed').css({
                    'position':'fixed',
                    'left':0,
                    'top':0,
                    'zIndex':100
                });

                $('.rowFixedNext').css('marginTop',eleHeight);
            }
            else{
                $('.rowFixed').css({
                    'position':'relative',

                });
                $('.rowFixedNext').css('marginTop',0);
            }
        })
    }

    //普通模式下的动画,且不是横幅
        $(function(){
        function animations_scroll(){
            var $items = $('#u767552').find('.hasAnimated');
            var $l = $items.length;
            var scrollTop = $(window).scrollTop();
            var windowHeight = document.documentElement.clientHeight; // 可视区域的高度

            for (var i = 0; i < $l; i++) {
                var anitype = $items.eq(i).data('anitype');
                var anistate = $items.eq(i).data('anistate');
                var aniieteration = $items.eq(i).data('aniieteration');
                var duration = $items.eq(i).data('duration');
                var delay = $items.eq(i).data('delay');
                var domHeight = $items.eq(i).height();
                var top = 0;

                //如果是底部
                if($items.eq(i).parents('.layout_footer').length > 0){
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('.layout_footer')[0].offsetTop;
                }
                else{
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('div.layrow')[0].offsetTop;
                }
                
                if(top >= scrollTop && top <= windowHeight + scrollTop){
                    // 是否多次触发 通过类名进行控制
                    if (aniieteration) {
                        $items.eq(i).addClass('animated  '+anitype+anistate).css({
                            animationDuration:duration + 's',
                            animationDelay:delay + 's'
                        });
                    } else {
                        //  若是单次触发  触发一次 便不再进入
                        if (!$items.eq(i).hasClass('oneCountAnimate')) {
                            $items.eq(i).addClass('animated  '+anitype+anistate).addClass('oneCountAnimate').css({
                                animationDuration:duration + 's',
                                animationDelay:delay + 's'
                            });
                        }
                    }
                }else{
                    $items.eq(i).removeClass('animated  '+anitype+anistate);
                }
            }
        }

        // 动画 animations_scroll
        $(document).scroll(animations_scroll);
        animations_scroll();
    });
    
        

    //滚动模式下的动画
    

    //普通模式下的横幅
    if( parseInt($.browser.version) === 8 ){
    console.log('ie8')
}else{

    //只有dom存在，才绑定js
    if(document.querySelector('#u52788')){
        console.log(1111,8)
        var num = 'u52788';
        window['indexListAndPageVm'+num] = new Vue({
            el: '#u52788',
            data:{
                editVal:{},
                listArr:{},
                indexData:[],
                page:[],
                left:[
                    {
                        name:'上一页',
                        title:'nextBtnWidth'
                    },
                    {
                        name:'首页',
                        title:'firstBtnWidth'
                    }
                ],
                right:[
                    {
                        name:'下一页',
                        title:'nextBtnWidth'
                    },
                    {
                        name:'末页',
                        title:'firstBtnWidth'
                    }
                ],
                selectPage:0,
                nowPage:0,
                id:0,
                nextBtnUrl:'',
                lastBtnUrl:'',
                searchType:'',
                pageType:'',
                pageToGo: ''
            },
            filters:{
                myFilter:function(value){
                    if(value){
                        var str = value.replace(/`/g,'"');
                        return str
                    }
                },

            },
            methods:{
                listAndPageHoverAnimation:function (that) {
                    if(that.Mongolia.isOpen == 'true'){

                        $('#u52788').find('.listEveryOne').hover(
                            function () {
                                $(this).find('.Mongolia').stop(true,true).delay(200).show(
                                    {
                                        effect:that.Mongolia.animation,
                                        direction:that.Mongolia.direction,
                                        duration:that.Mongolia.time
                                    }
                                )
                            },
                            function () {
                                $(this).find('.Mongolia').stop(true,true).delay(200).hide(
                                    {
                                        effect:that.Mongolia.animation,
                                        direction:that.Mongolia.direction,
                                        duration:that.Mongolia.time
                                    }
                                )
                            }
                        )
                    }
                },
                onClickGoPageBtn(){
                    this.goPage()
                },
                onClickEnterPage(){
                    this.goPage()
                },
                goPage(){
                    if(!this.isValidPage(this.pageToGo)){
                        return
                    }
                    let url
                    if(this.pageType == 'search'){
                        url = '/' + this.pageType + '-0-'  +this.pageToGo +'-'+ this.searchType +'.html';
                    }
                    else{
                        url = '/' + this.listArr.listType + '-' + this.id + '-' +this.pageToGo +'.html';
                    }
                    window.location = url;
                },
                isValidPage(pageToGo){
                    pageToGo = Number(pageToGo)
                    var page = '2';
                    return pageToGo>0 && pageToGo<=page
                }
            },
            created:function () {
                try{
                    //编辑数据源
                    var listArr = JSON.stringify({"listType":"product","Pattern":"list","listArr":[],"Prompt":"暂无数据！","home_page":"首页","last_page":"末页","previous_page":"上一页","next_page":"下一页"});
                    this.editVal = JSON.parse(JSON.stringify({"Prompt":{"height":40,"color":"rgba(51, 51, 51, 1)","fontSize":14},"summaryLength":30,"backgroundSelect":{"isOpen":"false","background":"#ccc","className":"backgroundSelect","color":"#fff","fontSize":14,"textAlign":"center","fontFamily":"MicrosoftYaHei"},"Mongolia":{"marginTop":154,"marginLeft":0,"width":277,"height":48,"background":"#000","opacity":0.4,"animation":"fade","time":200,"direction":"up","isOpen":"false"},"MongoliaIcon":{"display":"none","color":"#fff","fontSize":24,"icon":"icon-chakan"},"MongoliaTitle":{"lineHeight":30,"width":277,"height":30,"display":"block","color":"#fff","fontSize":14,"fontFamily":"Microsoft YaHei","fontWeight":"bolder","textAlign":"center"},"MongoliaContent":{"lineHeight":30,"width":300,"height":30,"display":"none","color":"#f00","fontSize":24,"fontFamily":"Microsoft YaHei","fontWeight":"bolder"},"pageSelect":{"width":25,"height":25,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"none","background":"rgba(27, 72, 152, 1)","borderRadius":1,"margin":0,"padding":0,"color":"rgba(255, 255, 255, 1)","fontSize":12,"textAlign":"center","fontFamily":"MicrosoftYaHei","className":"pageSelect"},"pageDefault":{"pagePosition":"center","boxWidth":700,"width":33,"nextBtnWidth":60,"firstBtnWidth":60,"height":28,"borderLeftWidth":1,"borderRightWidth":1,"borderTopWidth":1,"borderBottomWidth":1,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"solid","background":"rgba(238, 238, 238, 1)","borderRadius":1,"margin":3,"className":"pageDefault","padding":0,"color":"rgba(51, 51, 51, 1)","fontSize":12,"textAlign":"center","fontFamily":"MicrosoftYaHei","left":0,"bottom":0,"isOpen":"true","text_background":"rgba(238, 238, 238, 1)"},"frame":{"heightType":"auto","paddingBottom":40,"width":1200,"height":400,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"none","background":"rgba(255, 255, 255, 1)","borderRadius":1,"className":"frame","padding":0,"showNum":8,"borderLeftColor":"rgba(204, 204, 204, 1)","borderRightColor":"rgba(204, 204, 204, 1)","borderTopColor":"rgba(204, 204, 204, 1)","borderBottomColor":"rgba(204, 204, 204, 1)","borderLeftStyle":"none","borderRightStyle":"none","borderTopStyle":"none","borderBottomStyle":"none"},"box":{"marginTop":0,"marginLeft":4,"marginRight":4,"marginBottom":33,"width":292,"height":259,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"borderColor":"rgba(221, 221, 221, 1)","borderStyle":"solid","background":"rgba(255, 255, 255, 1)","left":25,"top":0,"className":"box","margin":10,"target":"_self","borderRadius":0,"borderLeftColor":"rgba(221, 221, 221, 1)","borderRightColor":"rgba(221, 221, 221, 1)","borderTopColor":"rgba(221, 221, 221, 1)","borderBottomColor":"rgba(221, 221, 221, 1)","borderLeftStyle":"solid","borderRightStyle":"solid","borderTopStyle":"solid","borderBottomStyle":"solid"},"Component":[{"editName":"标题","englishName":"name","id":0,"select":"block","width":292,"height":30,"padding":0,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"none","editBackground":"#f00","color":"rgba(51, 51, 51, 1)","fontSize":16,"textAlign":"center","left":0,"top":214,"fontFamily":"MicrosoftYaHei","background":"rgba(255, 255, 255, 1)","zIndex":1,"className":"title","lineHeight":30,"fontWeight":"normal","Swidth":292,"Sheight":30,"SborderStyle":"none","Sbackground":"rgba(255, 255, 255, 1)","Spadding":0,"SfontSize":16,"Scolor":"rgba(27, 72, 152, 1)","SfontWeight":"normal","StextAlign":"center","SborderColor":"rgba(255, 255, 255, 1)"},{"Swidth":245,"Sheight":20,"Spadding":0,"SborderLeftWidth":1,"SborderRightWidth":1,"SborderTopWidth":1,"SborderBottomWidth":1,"SborderColor":"#f00","SborderStyle":"none","Sbackground":"rgba(0, 0, 0, 0)","Scolor":"rgba(255, 76, 38, 1)","SfontSize":12,"StextAlign":"left","SfontFamily":"Microsoft YaHei","editName":"时间","englishName":"up_time","id":1,"select":"none","width":245,"height":20,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"padding":0,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"none","editBackground":"#00E31B","color":"rgba(255, 76, 38, 1)","fontSize":12,"textAlign":"left","left":23,"top":258,"fontFamily":"MicrosoftYaHei","background":"rgba(255, 255, 255, 1)","zIndex":1,"className":"time","lineHeight":20},{"Swidth":245,"Sheight":20,"Spadding":0,"SborderLeftWidth":1,"SborderRightWidth":1,"SborderTopWidth":1,"SborderBottomWidth":1,"SborderColor":"#f00","SborderStyle":"none","Sbackground":"rgba(255, 255, 255, 0)","Scolor":"rgba(90, 90, 90, 1)","SfontSize":12,"StextAlign":"left","SfontFamily":"Microsoft YaHei","editName":"简介","englishName":"summary","id":2,"select":"none","width":245,"height":20,"padding":0,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"none","editBackground":"#3563FF","color":"rgba(90, 90, 90, 1)","fontSize":12,"textAlign":"left","left":23,"top":237,"fontFamily":"MicrosoftYaHei","background":"rgba(255, 255, 255, 1)","zIndex":1,"className":"content","lineHeight":20},{"Swidth":245,"Sheight":20,"Spadding":0,"SborderLeftWidth":1,"SborderRightWidth":1,"SborderTopWidth":1,"SborderBottomWidth":1,"SborderColor":"#f00","SborderStyle":"none","Sbackground":"rgba(255, 255, 255, 0)","Scolor":"rgba(255, 76, 38, 1)","SfontSize":12,"StextAlign":"left","SfontFamily":"Microsoft YaHei","editName":"价格","englishName":"price_sell","id":3,"select":"none","width":245,"height":19,"padding":0,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"none","editBackground":"#FF00E1","color":"rgba(255, 76, 38, 1)","fontSize":12,"textAlign":"left","left":23,"top":258,"fontFamily":"MicrosoftYaHei","background":"rgba(255, 255, 255, 0)","zIndex":1,"className":"money","lineHeight":20},{"Swidth":195,"Sheight":40,"Spadding":0,"SborderLeftWidth":1,"SborderRightWidth":1,"SborderTopWidth":1,"SborderBottomWidth":1,"SborderColor":"#f00","SborderStyle":"solid","Sbackground":"#000","Scolor":"#fff","SfontSize":16,"StextAlign":"center","SfontFamily":"Microsoft YaHei","editName":"更多","englishName":"more","id":4,"select":"none","width":240,"height":40,"padding":0,"borderLeftWidth":1,"borderRightWidth":1,"borderTopWidth":1,"borderBottomWidth":1,"borderColor":"#0000FF","borderStyle":"solid","editBackground":"#FFB200","color":"#FFFFFF","fontSize":16,"textAlign":"center","left":871.5,"top":273.984375,"fontFamily":"MicrosoftYaHei","background":"#0056FF","zIndex":1,"className":"more","lineHeight":40,"content":"查看更多","borderRadius":5},{"SmarginLeft":-35,"SmarginTop":-19.5,"Swidth":450,"Sheight":284,"Spadding":0,"SborderLeftWidth":1,"SborderRightWidth":1,"SborderTopWidth":1,"SborderBottomWidth":1,"SborderColor":"#f00","SborderStyle":"none","Sbackground":"#000","editName":"图片","englishName":"img","id":5,"select":"block","width":292,"height":195,"padding":0,"borderLeftWidth":0,"borderRightWidth":0,"borderTopWidth":0,"borderBottomWidth":0,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"none","editBackground":"#00EBFF","color":"#333","fontSize":14,"textAlign":"center","left":0,"top":21,"fontFamily":"MicrosoftYaHei","background":"rgba(255, 255, 255, 1)","zIndex":1,"className":"pic","length":20,"hover":"false","lineHeight":1},{"Swidth":80,"Sheight":80,"Spadding":0,"SborderLeftWidth":1,"SborderRightWidth":1,"SborderTopWidth":1,"SborderBottomWidth":1,"SborderColor":"#f00","SborderStyle":"solid","Sbackground":"#000","Scolor":"#fff","SfontSize":16,"StextAlign":"center","editName":"图标","englishName":"icon","id":6,"select":"none","width":80,"height":80,"padding":0,"borderLeftWidth":1,"borderRightWidth":1,"borderTopWidth":1,"borderBottomWidth":1,"borderColor":"#ccc","borderStyle":"solid","editBackground":"#FFB200","color":"#333","fontSize":14,"textAlign":"center","left":0,"top":80,"background":"#fff","zIndex":3,"className":"more","lineHeight":80,"content":"fa-adjust","borderRadius":1}],"styleId":1433,"effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20}}))
                    this.listArr = listArr ? JSON.parse(listArr) : {};
                    this.pageType = this.listArr.listType;
                    //获得搜索当前的key值
                    var searchType = '';
                }
                catch(err){}

                if(searchType){
                    this.searchType = searchType;
                }


                //判断模式----------------------------------
                if(this.listArr.Pattern == 'list'){
                    //列表数据
                    var moduleStr = '';
                    try{
                        moduleStr =  JSON.stringify([{"id":"2","name":"SC\u7cfb\u5217\u659c\u9f7f-\u8717\u8f6e\u51cf\u901f\u673a","type_id":"1","img":"https:\/\/cmsimg01.71360.com\/data\/20190705\/11u1773\/public\/2019070518374472213.jpg","summary":"1.SC\u7cfb\u5217\u659c\u9f7f-\u8717\u8f6e\u51cf\u901f\u673a\u7531\u659c\u9f7f\u8f6e\u548c\u8717\u8f6e\u5e45\u6784\u6210\uff0c\u76f4\u4ea4\u8f74\u8f93\u51fa\uff0c\u8fd0\u884c\u5e73\u7a33\uff1b<br>2.\u632f\u52a8\u5c0f\uff0c\u566a\u97f3\u4f4e\uff0c\u4f20\u52a8\u6bd4\u8f83\u5927\uff0c\u4f46\u662f\u4f20\u52a8\u6548\u7387\u6bd4\u5355\u7eaf\u7684\u659c\u9f7f\u8f6e\u8981\u4f4e\uff1b<br>3.\u9f7f\u8f6e\u91c7\u752820CrMnTi\u5408\u91d1\u94a2\uff0c\u6e17\u78b3\u6dec\u706b\u540e\u9f7f\u9762\u786c\u5ea6\u8fbe\u5230HRC58\u00b0~ 62\u00b0\uff0c\u78e8\u9f7f\u7cbe\u5ea6\u8fbe\u52306-5\u5ea6\uff1b<br>4.\u4ea7\u54c1\u5e7f\u8fd0\u7528\u4e8e\u77f3\u5316\u8bbe\u5907\u3001\u77ff\u5c71\u5efa\u7b51\u8bbe\u5907\u3001\u5370\u5237\u5305\u88c5\u8bbe\u5907\u3001\u8d77\u91cd\u8f93\u9001\u8bbe\u5907\u7b49\u7b49\u3002","price_sell":"0.000","up_time":"1607933109","createtime":"1560992936","type_name":"\u9f7f\u8f6e\u51cf\u901f\u673a"},{"id":"3","name":"FC\u7cfb\u5217\u5e73\u884c\u8f74\u659c\u9f7f\u8f6e\u51cf\u901f\u673a","type_id":"1","img":"https:\/\/cmsimg01.71360.com\/data\/20190705\/11u1773\/public\/2019070518363150731.jpg","summary":"1.FC\u7cfb\u5217\u5e73\u884c\u8f74\u659c\u9f7f\u8f6e\u51cf\u901f\u673a\u7684\u8bbe\u8ba1\u4f7f\u8f93\u5165\u3001\u8f93\u51fa\u8f74\u4fdd\u6301\u4e00\u5b9a\u7684\u5e73\u884c\u4e2d\u5fc3\u8ddd;<br>2.\u8be5\u7cfb\u5217\u7ed3\u6784\u7d27\u51d1\u3001\u8fd0\u8f6c\u5e73\u7a33\uff0c\u4f20\u52a8\u6548\u7387\u9ad8\uff0c\u627f\u8f7d\u80fd\u529b\u5f3a;<br>3.\u9f7f\u8f6e\u91c7\u752820CrMnTi\u5408\u91d1\u94a2\uff0c\u6e17\u78b3\u6dec\u706b\u540e\u9f7f\u9762\u786c\u5ea6\u8fbe\u5230HRC58\u00b0~ 62\u00b0\uff0c\u78e8\u9f7f\u7cbe\u5ea6\u8fbe\u52306-5\u5ea6;<br>4.\u8be5\u7cfb\u5217\u5bbd\u6cdb\u8fd0\u7528\u4e8e\u8d77\u91cd\u8bbe\u5907\uff0c\u8f93\u9001\u8bbe\u5907\uff0c\u9676\u74f7\u673a\u68b0\u548c\u5316\u5de5\u6405\u62cc\u8bbe\u5907\u3002","price_sell":"0.000","up_time":"1609750150","createtime":"1560993410","type_name":"\u9f7f\u8f6e\u51cf\u901f\u673a"},{"id":"4","name":"RC\u7cfb\u5217\u659c\u9f7f\u8f6e\u51cf\u901f\u673a","type_id":"1","img":"https:\/\/cmsimg01.71360.com\/data\/20190705\/11u1773\/public\/2019070518343396979.jpg","summary":"1.RC\u7cfb\u5217\u659c\u9f7f\u8f6e\u51cf\u901f\u673a\u8bbe\u8ba1\u5408\u7406\uff0c\u7ed3\u6784\u7d27\u51d1\uff0c\u5728\u76f8\u540c\u8bb8\u7528\u626d\u77e9\u4e0b\u6bd4X\u6216B\u578b\u6446\u7ebf\u51cf\u901f\u673a\u5177\u6709\u66f4\u5c0f\u5de7\u7684\u5c3a\u5bf8;2.\u632f\u52a8\u5c0f\uff0c\u4f4e\u566a\u97f3\uff0c\u4f20\u52a8\u6548\u7387\u9ad8;3.\u9f7f\u8f6e\u91c7\u752820CrMnTi\u5408\u91d1\u94a2\uff0c\u6e17\u78b3\u6dec\u706b\u540e\u9f7f\u9762\u786c\u5ea6\u8fbe\u5230HRC58\u00b0~ 62\u00b0\uff0c\u78e8\u9f7f\u7cbe\u5ea6\u8fbe\u52306-5\u5ea6;4.\u4ea7\u54c1\u5bbd\u6cdb\u4f7f\u7528\u4e8e\u5316\u5de5\u6405\u62cc\u8bbe\u5907\u3001\u5370\u5237\u5305\u88c5\u673a\u68b0\u3001\u77ff\u5c71\u7535\u529b\u8bbe\u5907\u3001\u51b6\u91d1\u8bbe\u5907\u3001\u9676\u74f7\u673a\u68b0\u548c\u98df\u54c1\u673a\u68b0\u7b49\u7b49\u3002","price_sell":"0.000","up_time":"1578984876","createtime":"1560993645","type_name":"\u9f7f\u8f6e\u51cf\u901f\u673a"},{"id":"5","name":"KC\u7cfb\u5217\u659c\u9f7f-\u4f1e\u9f7f\u8f6e\u51cf\u901f\u673a","type_id":"1","img":"https:\/\/cmsimg01.71360.com\/data\/20200110\/11u1773\/public\/2020011013381927277.jpg","summary":"1.KC\u7cfb\u5217\u659c\u9f7f-\u4f1e\u9f7f\u8f6e\u51cf\u901f\u673a\u662f\u7531\u659c\u9f7f\u8f6e\u548c\u4f1e\u9f7f\u8f6e\u7ec4\u6210\u7684\u4f20\u52a8\u7ed3\u6784\uff0c\u76f4\u4ea4\u8f74\uff0c\u5927\u529b\u77e9\uff0c\u8fd0\u8f6c\u5e73\u7a33;<br>2.\u632f\u52a8\u5c0f\uff0c\u566a\u97f3\u4f4e\uff0c\u901f\u6bd4\u8f83\u5927\uff0c\u4f20\u52a8\u6548\u7387\u8fdc\u8fdc\u5927\u4e8eSC\u7cfb\u5217;<br>3.\u9f7f\u8f6e\u91c7\u752820CrMnTi\u5408\u91d1\u94a2\uff0c\u6e17\u78b3\u6dec\u706b\u540e\u9f7f\u9762\u786c\u5ea6\u8fbe\u5230HRC58\u00b0~ 62\u00b0\uff0c\u78e8\u9f7f\u7cbe\u5ea6\u8fbe\u52306-5\u5ea6;<br>4.\u4ea7\u54c1\u5bbd\u6cdb\u4f7f\u7528\u4e8e\u77f3\u5316\u8bbe\u5907\uff0c\u5236\u836f\u8bbe\u5907\uff0c\u5370\u5237\u5305\u88c5\u8bbe\u5907\uff0c\u9676\u74f7\u8bbe\u5907\uff0c\u77ff\u5c71\u5efa\u7b51\u8bbe\u5907\u548c\u821e\u53f0\u8bbe\u5907\u7b49\u7b49\u3002","price_sell":"0.000","up_time":"1582869226","createtime":"1560994228","type_name":"\u9f7f\u8f6e\u51cf\u901f\u673a"},{"id":"11","name":"XGC\u7cfb\u5217\u60ac\u6302\u51cf\u901f\u673a","type_id":"12","img":"https:\/\/cmsimg01.71360.com\/data\/20200110\/11u1773\/public\/2020011013391240295.jpg","summary":"1.XGC\u7cfb\u5217\u5185\u90e8\u9f7f\u8f6e\u91c7\u7528\u4f4e\u78b3\u5408\u91d1\u94a2\u6e17\u78b3\u5904\u7406\uff0c\u9f7f\u8f6e\u53ca\u9f7f\u8f74\u786c\u5ea6\u5927\u3001\u7cbe\u5ea6\u9ad8\uff1b<br>2.\u7bb1\u4f53\u91c7\u7528QT400\u7403\u78e8\u94f8\u94c1\uff0c\u5f3a\u5ea6\u66f4\u5927\uff0c\u5bff\u547d\u66f4\u957f\uff1b<br>3.\u8be5\u7cfb\u5217\u91c7\u7528\u626d\u529b\u81c2\u60ac\u6302\u5b89\u88c5\uff0c\u5b89\u88c5\u7075\u6d3b\uff0c\u88ab\u5bbd\u6cdb\u4f7f\u7528\u4e8e\u5404\u79cd\u8f93\u9001\u8bbe\u5907\u3002","price_sell":"0.000","up_time":"1582870752","createtime":"1578289935","type_name":"\u5176\u4ed6\u7c7b\u51cf\u901f\u673a"},{"id":"6","name":"TC\u7cfb\u5217\u9f7f\u8f6e\u6362\u5411\u5668","type_id":"12","img":"https:\/\/cmsimg01.71360.com\/data\/20200228\/11u1773\/public\/2020022809581589722.jpg","summary":"1.TC\u7cfb\u5217\u9f7f\u8f6e\u6362\u5411\u5668\u662f\u4e00\u79cd\u91c7\u7528\u87ba\u65cb\u4f1e\u9f7f\u8f6e\u5b9e\u73b0\u6362\u5411\u7684\u9f7f\u8f6e\u7bb1,\u8fd0\u8f6c\u5e73\u7a33\uff0c\u4f20\u52a8\u529b\u77e9\u8f83\u5927;<br>2.\u8be5\u7cfb\u5217\u8f83\u591a\u6cdb\u4f7f\u7528\u4e8e\u5347\u964d\u5e73\u53f0\u3001\u7acb\u4f53\u8f66\u5e93\u548c\u821e\u53f0\u8bbe\u5907\u3002","price_sell":"0.000","up_time":"1582855100","createtime":"1560994748","type_name":"\u5176\u4ed6\u7c7b\u51cf\u901f\u673a"},{"id":"14","name":"X\u7cfb\u5217\u6446\u7ebf\u51cf\u901f\u673a","type_id":"12","img":"https:\/\/cmsimg01.71360.com\/data\/20200228\/11u1773\/public\/2020022814144268214.jpg","summary":"\u4ea7\u54c1\u7279\u5f81\uff1a<br>1.X\u7cfb\u5217\u6446\u7ebf\u51cf\u901f\u673a\u662f\u91c7\u7528\u884c\u661f\u6446\u7ebf\u9488\u8f6e\u4f20\u52a8\u7684\u51cf\u901f\u88c5\u7f6e\uff0c\u7ed3\u6784\u7b80\u5355\uff0c\u7ef4\u62a4\u4fbf\u5229\uff1b<br>2.\u91c7\u7528\u94f8\u94c1\u7bb1\u4f53\uff0c\u7ed3\u6784\u7d27\u51d1\uff0c\u8fd0\u884c\u5e73\u7a33\uff0c\u673a\u68b0\u6548\u7387\u9ad8\uff1b<br>3.\u6539\u7cfb\u5217\u4ea7\u54c1\u4e3b\u8981\u5316\u5de5\u6405\u62cc\uff0c\u77ff\u5c71\u673a\u68b0\uff0c\u9676\u74f7\u673a\u68b0\uff0c\u5370\u5237\u5305\u88c5\u673a\u68b0\uff0c\u76ae\u9769\u673a\u68b0\u7b49\u7b49\u3002","price_sell":"0.000","up_time":"1583473501","createtime":"1582870633","type_name":"\u5176\u4ed6\u7c7b\u51cf\u901f\u673a"},{"id":"12","name":"BC\u7cfb\u5217\u91cd\u8f7d\u5de5\u4e1a\u9f7f\u8f6e\u7bb1","type_id":"13","img":"https:\/\/cmsimg01.71360.com\/data\/20200228\/11u1773\/public\/2020022813573866920.jpg","summary":"\u4ea7\u54c1\u7279\u5f81\uff1a<br>1.BC\u7cfb\u5217\u662f\u4e00\u79cd\u4f9d\u9760\u4f1e\u9f7f\u8f6e\u5b9e\u73b0\u8f6c\u5411\u7684\u76f4\u4ea4\u8f74\u91cd\u8f7d\u5de5\u4e1a\u9f7f\u8f6e\u7bb1\u3002\u7531\u4e8e\u6a21\u5757\u5316\u8bbe\u8ba1\u4f7f\u5f97\u8bbe\u8ba1\u548c\u5236\u9020\u5468\u671f\u5f88\u5927\u7f29\u77ed\uff1b<br>2.\u8be5\u7cfb\u5217\u7ed3\u6784\u7d27\u51d1\uff0c\u8fd0\u884c\u7a33\u5b9a\uff0c\u76f8\u6bd4\u56fd\u6807\u7684\u9f7f\u8f6e\u7bb1\uff0c\u5177\u6709\u6781\u5927\u7684\u627f\u8f7d\u80fd\u529b\uff1b<br>3.\u9f7f\u8f6e\u91c7\u752820CrMnTiH\u5408\u91d1\u94a2\uff0c\u6e17\u78b3\u6dec\u706b\u540e\u9f7f\u9762\u786c\u5ea6\u8fbe\u5230HRC58\u00b0\uff5e62\u00b0\uff0c\u78e8\u9f7f\u7cbe\u5ea6\u8fbe\u52306-5\u5ea6\uff1b<br>4.\u5bbd\u6cdb\u4f7f\u7528\u4e8e\u91cd\u5de5\u4e1a\uff0c\u5982\u77ff\u5c71\u673a\u68b0\uff0c\u77f3\u5316\u8bbe\u5907\uff0c\u53d1\u7535\u5382\uff0c\u751f\u7269\u80fd\u6e90\u518d\u751f\u8bbe\u5907\u7b49\u7b49\u3002","price_sell":"0.000","up_time":"1583473427","createtime":"1582869822","type_name":"\u5de5\u4e1a\u9f7f\u8f6e\u7bb1"}]);//这样可以处理双引号

                    }
                    catch(err){}
                    var module = moduleStr.replace(/\r\n/g,'');//处理换行

                    if(module && module != 'null'){
                        module =  JSON.parse(module);
                        if(module.length > 0){
                            for(var i = 0; i < module.length; i++ ){
                                if(module[i].summary.length > this.editVal.summaryLength){
                                    module[i].summary = module[i].summary.substring(0,this.editVal.summaryLength) + '...';
                                }

                                module[i].up_time = new Date(Number(module[i].up_time)*1000).toLocaleDateString();
                            }
                            //在搜索页面下
                            if(module[0].type){
                                this.listArr.listType = module[0].type;
                            }
                        }
                        this.indexData = module;
                    }
                    //当前分页
                    var p = '1';
                    this.nowPage = Number(p);

                    //分页总数
                    var page = '2';
                    if(page > 0){
                        this.page = [];
                        for(var i = 0;i<page;i++){
                            var num = i + 1;
                            this.page.push(num);
                        }
                    }
                    else{
                        this.page = ''
                    }
                    console.log('分页总数',page)


                    //当前id
                    var idHeader = this.listArr.listType;
                    var id = '0';
                    this.id = id;

                    //下一页链接
                    if(p == page){
                        if(this.pageType == 'search'){
                            this.nextBtnUrl = '/' + this.pageType + '-0-'  +this.nowPage +'-'+ this.searchType +'.html';
                        }
                        else{
                            this.nextBtnUrl = '/' + this.listArr.listType + '-' + id + '-' +this.nowPage +'.html';
                        }

                    }
                    else{
                        if(this.pageType == 'search'){
                            this.nextBtnUrl = '/' + this.pageType + '-0-'  +(this.nowPage+1) +'-'+ this.searchType +'.html';
                        }
                        else{
                            this.nextBtnUrl = '/' + this.listArr.listType + '-' + id + '-' +(this.nowPage +1)+'.html';
                        }

                    }

                    //末页链接
                    if(this.pageType == 'search'){
                        this.lastBtnUrl = '/' + this.pageType + '-0-' + page + '-' + this.searchType +'.html';
                    }
                    else{
                        this.lastBtnUrl = '/' + this.listArr.listType + '-' + id + '-' + page +'.html';
                    }
                }
                else{
                    this.indexData = this.listArr.listArr;
                    for(var i = 0; i < this.indexData.length; i++ ){
                        if(this.indexData[i].summary.length > this.editVal.summaryLength){
                            this.indexData[i].summary = this.indexData[i].summary.substring(0,this.editVal.summaryLength) + '...';
                        }
                    }
                }
            },
            ready:function () {
                this.listAndPageHoverAnimation(this.editVal);
                if(typeof templet!="undefined")
                {
                    templet.checkaction(this);
                }
            }
        });
    }

}
//<script>

if( parseInt($.browser.version) === 8 ){
    }else {
    Vue.filter('my-filter', function (value) {
        var str = value.replace(/`/g, '"');
        return str
    });
    //只有dom存在，才绑定js
    if (document.querySelector('#u185712')) {
        var num = 'u185712';
        window['indexCatelogVm' + num] = new Vue({
            el: '#u185712',
            data: {
                editVal: {},
                listArr: {},
                twolevelList: [],
                threelevelList: [],
                testList: [],
                oneSelectId: '',
                twoSelectId: '',
                threeSelectId: '',
                oneSelectIndex: '',
                twoSelectIndex: '',
                self_height:0,
                timer:null
            },
            methods: {
                selectOneLevel: function (i) {
                    this.oneSelectIndex = i;
                    if (val.children) {
                        this.twolevelList = val.children;
                    }

                },
                select: function (val, i) {
                    this.selectIndex = i;
                },
                selectTwolevel: function (val, i) {
                    this.selectTwolevelIndex = i;
                    if (val.children) {
                        this.threelevelList = val.children;
                    }

                },
                selectThreelevel: function (val, i) {
                    this.selectThreelevelIndex = i;
                },
                module_top_calculation:function () {
    var now_height = parseFloat($('#u185712').outerHeight());
    var doms = $('#u185712').siblings('.module');
    var difference = now_height - this.self_height;//计算出高度的差值

    var max_top = parseFloat($('#u185712').css('top')) + this.self_height;
    var laybox_left = 0;
    if($("#u185712").parent('.laybox').offset() && $("#u185712").parent('.laybox').offset().left) {
        laybox_left = $("#u185712").parent('.laybox').offset().left
    }
    var self_offset_left = parseFloat($('#u185712').css('left')) + laybox_left;
    var self_width = parseFloat($("#u185712").css('width'));
    var layrow_height = parseFloat($("#u185712").parents('.layrow').attr('data-height'));

    $("#u185712").parents('.layrow').css('height',layrow_height+difference)

    for(var i = 0;i<doms.length;i++){
        var top = parseFloat($(doms[i]).attr('data-top'));
        //每个module距离屏幕右边的距离
        var doms_offset_left = parseFloat($(doms[i]).css('left')) + laybox_left;
        var width = parseFloat($(doms[i]).css('width'));
        //判断上下和左右

        if(top >= max_top && doms_offset_left+width > self_offset_left && doms_offset_left < self_offset_left + self_width ){
            $(doms[i]).css('top',top+difference);

        }
    }
},
mark_top:function () {
    var doms = $('#u185712').parent().children('.module');
    var layrow = $("#u185712").parents('.layrow');
    for(var i = 0;i<doms.length;i++){
        var top = parseFloat($(doms[i]).css('top'));
        $(doms[i]).attr('data-top',top)
    }
    layrow.attr('data-height',layrow.outerHeight())
},
module_top_animation:function () {
    var that = this;
    clearInterval(this.timer);
    this.timer = setInterval(function () {
        that.module_top_calculation();
    },1000/60)
},
top_calculation_init:function(objs){
    if(objs.height_type === 'auto'){
        var that = this;
        this.self_height = parseFloat($('#u185712').outerHeight());
        this.mark_top();
        this.module_top_animation();
        clearTimeout(this.setTimer);
        this.setTimer = setTimeout(function(){
            clearInterval(that.timer);
            clearTimeout(that.setTimer);
        },objs.animate_time*2)
    }
},




            },
            created: function () {
                try {
                    //分类列表数据源
                    var data = JSON.stringify();
                    if (data) {
                        var dataList = JSON.parse(data);
                        this.testList = dataList;
                    }
                    //初始化数据源赋
                    var style = JSON.stringify({"modeSelection":"horizontal","animation":"toggle","animationTime":600,"sort":"float","numShow":6,"padding":5,"btn":{"width":40,"fontSzie":14,"background":"#666","color":"#fff","borderColor":"#f00","borderRadius":3},"box":{"width":850,"height":300,"borderColor":"rgba(204, 204, 204, 1)","borderStyle":"dashed","borderWidth":0,"background":"rgba(255, 255, 255, 0)","padding":3},"title":{"content":"我是分类列表","height":30,"fontSize":12,"fontFamily":"Microsoft YaHei","background":"#f00","color":"#f00","fontWeight":"500","fontAlign":"center","display":"none","paddingLeft":10},"onelevel":{"fontWeight":"500","fontAlign":"center","fontSize":14,"fontFamily":"Microsoft YaHei","background":"rgba(32, 32, 33, 1)","color":"rgba(255, 255, 255, 1)","width":196,"height":40,"borderColor":"rgba(32, 32, 33, 1)","borderStyle":"none","borderRadius":0,"seleFontSize":14,"seleBackground":"rgba(27, 72, 152, 1)","seleColor":"rgba(255, 255, 255, 1)","borderTopWidth":1,"borderBottomWidth":1,"borderleftWidth":1,"borderRightWidth":1,"paddingLeft":0},"twolevel":{"fontWeight":"500","fontAlign":"center","fontSize":12,"fontFamily":"Microsoft YaHei","background":"#ccc","color":"#fff","width":180,"height":30,"borderColor":"#ccc","borderStyle":"solid","borderRadius":3,"seleFontSize":14,"seleBackground":"#f00","seleColor":"#fff","boxWidth":1000,"boxHeight":40,"margin":10,"borderTopWidth":0,"borderBottomWidth":0,"borderleftWidth":0,"borderRightWidth":0,"paddingLeft":10,"marginTop":3,"marginBottom":0,"marginLeft":0,"marginRight":0},"threelevel":{"fontWeight":"500","fontAlign":"center","fontSize":12,"fontFamily":"Microsoft YaHei","background":"#069805","color":"#333","width":160,"height":30,"borderColor":"#ccc","borderStyle":"solid","borderRadius":3,"seleFontSize":12,"seleBackground":"#054c98","seleColor":"#fff900","borderTopWidth":0,"borderBottomWidth":0,"borderleftWidth":0,"borderRightWidth":0,"paddingLeft":5},"effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20},"styleId":1868,"frameBox":608,"frameHeight":45,"open_type":"hoverOpen","height_type":"box"});
                    if (style) {
                        this.editVal = JSON.parse(style);
                    }
                    var listArr = JSON.stringify();
                    if (listArr) {
                        this.listArr = JSON.parse(listArr);
                    }
                }
                catch (err) {
                }


                //获取链接，匹配/分割字符串
                var myUrlId = window.location.pathname;
                var urlId = myUrlId.split('/');


                for (var i = 0; i < urlId.length; i++) {
                    if (urlId[i].indexOf('html') > -1) {
                        //链接带id的情况
                        if (urlId[i].indexOf('-') > -1) {
                            var str = urlId[i].split('-');
                            var val = str[1].split('.')[0];
                        }
                    }
                }
                this.selectId = val;
                //计算1级，2级，3级ID
                if (this.testList) {
                    for (var i = 0; i < this.testList.length; i++) {
                        if (this.testList[i].children) {
                            if (this.testList[i].id == val) {
                                this.oneSelectId = val;//算出一级id
                                this.oneSelectIndex = i;
                                break;
                            }
                        }
                    }
                }

            },
            ready: function () {
                var that = this;
                var ele = $('#u185712').find('.swiperCatelog-container');
                var catelogSwiper = new Swiper(ele, {
                    slidesPerView: that.editVal.numShow, //同时显示数量
                    paginationClickable: true,
                    spaceBetween: that.editVal.padding, //间距
                    freeMode: true,
                    autoplay: 0,
                    autoplayDisableOnInteraction: false,
                    observer: true,
                    observeParents: true, //时时监听
                    initialSlide: that.oneSelectIndex
                });

                $('#u185712').find('.swiperLeft button').click(function () {
                    catelogSwiper.slidePrev();
                });

                $('#u185712').find('.swiperRight button').click(function () {
                    catelogSwiper.slideNext();
                });





                //竖向动画下拉
                if(this.editVal.open_type != 'showOne' && this.editVal.open_type != 'showTwo' && this.editVal.open_type != 'showAll' && this.editVal.height_type != 'auto'){


                    if (this.editVal.animation == 'toggle') {
                        $('#u185712').find('.oneUl').children('li').hover(
                            function () {
                                if($(this).find('.twoUl').children().length > 0){
                                    $(this).find('.twoUl').stop(true, true).delay(100).show(that.editVal.animationTime);
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.twoUl').stop(true, true).delay(100).hide(that.editVal.animationTime)
                                }

                            }
                        );
                        $('#u185712').find('.twoUl').children('li').hover(
                            function () {
                                if($(this).find('.threeUl').children().length > 0) {
                                    $(this).find('.threeUl').stop(true, true).delay(100).show(that.editVal.animationTime);
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.threeUl').stop(true, true).delay(100).hide(that.editVal.animationTime)
                                }

                            }
                        );
                    }
                    else if (this.editVal.animation == 'slide') {
                        $('#u185712').find('.oneUl').children('li').hover(
                            function () {
                                if($(this).find('.twoUl').children().length > 0) {
                                    $(this).find('.twoUl').stop(true, true).delay(100).slideDown(that.editVal.animationTime);
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.twoUl').stop(true, true).delay(100).slideUp(that.editVal.animationTime);
                                }
                            }
                        );
                        $('#u185712').find('.twoUl').children('li').hover(
                            function () {
                                if($(this).find('.threeUl').children().length > 0) {
                                    $(this).find('.threeUl').stop(true, true).delay(100).slideDown(that.editVal.animationTime);
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.threeUl').stop(true, true).delay(100).slideUp(that.editVal.animationTime);
                                }
                            }
                        );
                    }
                    else {
                        $('#u185712').find('.oneUl').children('li').hover(
                            function () {
                                if($(this).find('.twoUl').children().length > 0) {
                                    $(this).find('.twoUl').stop(true, true).fadeIn(that.editVal.animationTime)
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.twoUl').stop(true, true).fadeOut(that.editVal.animationTime)
                                }

                            }
                        );
                        $('#u185712').find('.twoUl').children('li').hover(
                            function () {
                                if($(this).find('.threeUl').children().length > 0) {
                                    $(this).find('.threeUl').stop(true, true).fadeIn(that.editVal.animationTime)
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.threeUl').stop(true, true).fadeOut(that.editVal.animationTime)
                                }

                            }
                        );
                    }
                }

                //竖向动画下拉,自动撑开
                if(this.editVal.open_type != 'showOne' && this.editVal.open_type != 'showTwo' && this.editVal.open_type != 'showAll' && this.editVal.height_type == 'auto'){
                    //先做次自适应高度撑开,当数据增加或减少的时候
                    if(this.editVal.height_auto > 0){
                        this.self_height = this.editVal.height_auto;
                        this.mark_top();
                        this.module_top_calculation();
                    }

                    //如果是自动撑开，先做一些自定义属性绑定
                    this.self_height = parseFloat($('#u185712').outerHeight());
                    this.mark_top();
                    if (this.editVal.animation == 'toggle') {
                        $('#u185712').find('.oneUl').children('li').hover(
                            function () {
                                if($(this).find('.twoUl').children().length > 0) {

                                    $(this).find('.twoUl').stop(true, true).delay(100).show(that.editVal.animationTime, function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.twoUl').stop(true, true).delay(100).hide(that.editVal.animationTime,function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    })
                                    that.module_top_animation();
                                }

                            }
                        );
                        $('#u185712').find('.twoUl').children('li').hover(
                            function () {
                                if($(this).find('.threeUl').children().length > 0) {

                                    $(this).find('.threeUl').stop(true, true).delay(100).show(that.editVal.animationTime, function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.threeUl').stop(true, true).delay(100).hide(that.editVal.animationTime,function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    })
                                    that.module_top_animation();
                                }

                            }
                        );
                    }
                    else if (this.editVal.animation == 'slide') {
                        $('#u185712').find('.oneUl').children('li').hover(
                            function () {
                                if($(this).find('.twoUl').children().length > 0) {

                                    $(this).find('.twoUl').stop(true, true).delay(100).slideDown(that.editVal.animationTime,function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.twoUl').stop(true, true).delay(100).slideUp(that.editVal.animationTime,function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }
                            }
                        );
                        $('#u185712').find('.twoUl').children('li').hover(
                            function () {

                                if($(this).find('.threeUl').children().length > 0) {
                                    $(this).find('.threeUl').stop(true, true).delay(100).slideDown(that.editVal.animationTime, function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    })
                                    that.module_top_animation();
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.threeUl').stop(true, true).delay(100).slideUp(that.editVal.animationTime,function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }
                            }
                        );
                    }
                    else {
                        $('#u185712').find('.oneUl').children('li').hover(
                            function () {
                                if($(this).find('.twoUl').children().length > 0) {
                                    $(this).find('.twoUl').stop(true, true).fadeIn(that.editVal.animationTime, function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.twoUl').stop(true, true).fadeOut(that.editVal.animationTime,function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }

                            }
                        );
                        $('#u185712').find('.twoUl').children('li').hover(
                            function () {
                                if($(this).find('.threeUl').children().length > 0) {
                                    $(this).find('.threeUl').stop(true, true).fadeIn(that.editVal.animationTime, function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }
                            },
                            function () {
                                if (!$(this).attr('data-select')) {
                                    $(this).find('.threeUl').stop(true, true).fadeOut(that.editVal.animationTime, function () {
                                        clearInterval(that.timer);
                                        that.module_top_calculation();
                                    });
                                    that.module_top_animation();
                                }

                            }
                        );
                    }
                }

                if (typeof templet != "undefined") {
                    templet.checkaction(this);
                }


            }
        })
    }
}

//<script>
    var textareaEle = document.querySelector('#u630475 > textarea');
    //textarea元素是否存在
    if( textareaEle ){
        var StorageVal = $('#u630475').children('textarea').eq(0).text();
        if(JSON.parse(StorageVal).data.StorageVal){
            var rowFixed = JSON.parse(JSON.parse(StorageVal).data.StorageVal).fixed;
            var rowId = JSON.parse(JSON.parse(StorageVal).data.StorageVal).rowId;
        }
    }
    else{
        var StorageVal = '{"row_type":"default","module_width":"1200","module_height":841,"module_index":"1","module_name":"","w_border_raduis_num":"0","w_opacity":"1","w_fill":"0","w_transtion":"0","w_background":"rgba(227, 227, 227, 0)","w_border_left_color":"rgba(51, 51, 51, 1)","w_border_left_style":"solid","w_border_left_width":"0","w_border_top_color":"rgba(51, 51, 51, 1)","w_border_top_style":"solid","w_border_top_width":"0","w_border_right_color":"rgba(51, 51, 51, 1)","w_border_right_style":"solid","w_border_right_width":"0","w_border_bottom_color":"rgba(51, 51, 51, 1)","w_border_bottom_style":"solid","w_border_bottom_width":"0","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","r_bg_src":"","r_bg_position":"top left","r_background":"rgba(255, 255, 255, 1)","r_border_top_style":"solid","r_border_top_width":"0","r_border_top_color":"rgba(204, 204, 204, 1)","r_border_bottom_width":"0","r_border_bottom_style":"solid","r_border_bottom_color":"rgba(204, 204, 204, 1)","r_fill":"0","r_tile_style":"repeat","fixed":"static","rowId":"","scroll_list":[{"id":"1","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#e3e3e3","backgroundSize":"cover"},{"id":"2","r_background":"#1db9ff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#fff","backgroundSize":"cover"},{"id":"3","r_background":"#fff","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":"980","module_height":"600","w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":"1","w_background":"#ffc400","backgroundSize":"cover"}],"swiper_set":{"pattern":"horizontal","speed":"300"},"pageStyle":{"display":"block","background":"#fff","selectbackground":"#f00","width":"20","height":"20","margin":"5","borderColor":"#333","borderWidth":"5","borderRadius":"0","bottom":"10"}}';
        if( StorageVal != 'null'){
            var rowFixed = JSON.parse(StorageVal).fixed;

            var rowId = JSON.parse(StorageVal).rowId ? JSON.parse(StorageVal).rowId : 'u630475';
        }
    }

    if( rowFixed == 'fixed'){
        $('#' + rowId).addClass('rowFixed');
    }
    else{
        $('#' + rowId).remove('rowFixed');
        $('.rowFixedNext').remove();
    }

    var ele = document.querySelector('.rowFixed');//是否存在固定的row

    if( ele ){
        var navY = $('.rowFixed').offset().top;
        var eleHeight = $('.rowFixed').height();

        var nextEle = document.querySelector('.rowFixedNext');//如果不存在就插入一个
        if(!nextEle){
            $('.rowFixed').after('<div class="rowFixedNext"></div>');
            $('.rowFixedNext').css('marginTop',0);
        }


        $(window).scroll(function () {


            var nowY = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
            if( nowY > navY){
                $('.rowFixed').css({
                    'position':'fixed',
                    'left':0,
                    'top':0,
                    'zIndex':100
                });

                $('.rowFixedNext').css('marginTop',eleHeight);
            }
            else{
                $('.rowFixed').css({
                    'position':'relative',

                });
                $('.rowFixedNext').css('marginTop',0);
            }
        })
    }

    //普通模式下的动画,且不是横幅
        $(function(){
        function animations_scroll(){
            var $items = $('#u630475').find('.hasAnimated');
            var $l = $items.length;
            var scrollTop = $(window).scrollTop();
            var windowHeight = document.documentElement.clientHeight; // 可视区域的高度

            for (var i = 0; i < $l; i++) {
                var anitype = $items.eq(i).data('anitype');
                var anistate = $items.eq(i).data('anistate');
                var aniieteration = $items.eq(i).data('aniieteration');
                var duration = $items.eq(i).data('duration');
                var delay = $items.eq(i).data('delay');
                var domHeight = $items.eq(i).height();
                var top = 0;

                //如果是底部
                if($items.eq(i).parents('.layout_footer').length > 0){
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('.layout_footer')[0].offsetTop;
                }
                else{
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('div.layrow')[0].offsetTop;
                }
                
                if(top >= scrollTop && top <= windowHeight + scrollTop){
                    // 是否多次触发 通过类名进行控制
                    if (aniieteration) {
                        $items.eq(i).addClass('animated  '+anitype+anistate).css({
                            animationDuration:duration + 's',
                            animationDelay:delay + 's'
                        });
                    } else {
                        //  若是单次触发  触发一次 便不再进入
                        if (!$items.eq(i).hasClass('oneCountAnimate')) {
                            $items.eq(i).addClass('animated  '+anitype+anistate).addClass('oneCountAnimate').css({
                                animationDuration:duration + 's',
                                animationDelay:delay + 's'
                            });
                        }
                    }
                }else{
                    $items.eq(i).removeClass('animated  '+anitype+anistate);
                }
            }
        }

        // 动画 animations_scroll
        $(document).scroll(animations_scroll);
        animations_scroll();
    });
    
        

    //滚动模式下的动画
    

    //普通模式下的横幅
    if('' == '0' || '1' == '0'){
    //样式1
    var ad = new AdMove("u244621");
    $('#u244621').css('zIndex','999999');
    var times = '' || '10'
    ad.Run(parseInt(times));
    //关闭点击事件
    $("#u244621 #open_page").on('click',function(){
        $('#u244621').css("display","none");
    });
};

 	if( parseInt($.browser.version) === 8 ){
 		console.log('ie8')
 	}else {

        //只有dom存在，才绑定js
        if (document.querySelector('#u244621')) {
            ;var num = 'u244621';
            window['indexVm' + num] = new Vue({
                el: "#u244621",
                data: {
                    indexStore: {},
                    indexShow: false,
                    costomDatas: {}
                },
                watch: {
                    costomDatas: {
                        handler: function (val, oldVal) {
                            console.log('test');
                        },
                        deep: true
                    }
                },
                computed: {
                    div: function () {
                        return {
                            overflowX: this.indexStore.w_scrollX_type,
                            overflowY: this.indexStore.w_scrollY_type,
                            wordWrap: this.indexStore.w_word_type
                        };
                    }
                },
                methods: {},
                created: function () {
                    try {
                        var StorageVal = {"w_scrollX_type":"hidden","w_scrollY_type":"hidden","w_word_type":"normal","contents":"<p>\n\t<span style=\"font-size:16px;line-height:2;color:#666666;\"><a href=\"/p-about.html\"><span style=\"color:#666666;font-size:18px;\">走进双联</span></a></span> \n</p>\n<p>\n\t<span style=\"font-size:16px;line-height:2;color:#666666;\"><a href=\"/product.html\"><span style=\"color:#666666;font-size:18px;\">产品中心</span></a></span> \n</p>\n<p>\n\t<span style=\"font-size:16px;line-height:2;color:#666666;\"><a href=\"/case.html\"><span style=\"color:#666666;font-size:18px;\">行业应用</span></a></span> \n</p>\n<p>\n\t<span style=\"font-size:16px;line-height:2;color:#666666;\"><a href=\"/article.html\"><span style=\"color:#666666;font-size:18px;\">信息中心</span></a></span> \n</p>\n<p>\n\t<span style=\"font-size:16px;line-height:2;color:#666666;\"><a href=\"/p-contact.html\"><span style=\"color:#666666;font-size:18px;\">联系我们</span></a></span> \n</p>","msg":"","custom_pos_style":"1","is_hover":"0","custom_pos_style_left":0,"custom_pos_style_top":0,"custom_pos_style_rate":10,"hover_color":"#000","hover_bc_color":"#fff","width":271,"height":186,"fixedLeft":0,"fixedTop":0,"openShow":false,"isShows":false,"editBc":"rgba(255, 255, 255, 1)","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                        if (StorageVal != null) {
                            this.indexStore = StorageVal;
                        }
                    } catch (e) {
                    }


                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }

                    console.log('index', this.indexStore.custom_pos_style);
                    //debugger;

                    if (this.indexStore.custom_pos_style == '0') {
                        //样式1
                    } else if (this.indexStore.custom_pos_style == '1') {
                        //样式2
                    } else if (this.indexStore.custom_pos_style == '2') {
                        //样式3
                        try {
                            $('#u244621').css({
                                'position': 'fixed',
                                'zIndex': '999999'
                            });
                        } catch (e) {
                        }
                        ;
                    }

                    //挂件动画
                    try {
                        $.allWidgetAnimate(this, $('#u244621'));
                    } catch (e) {
                    }
                    ;
                },
                ready: function () {
                    if (this.indexStore.custom_pos_style === '2') {
                        var t = setTimeout(function () {
                            try {
                                $("#u244621").draggable();
                                $("#u244621").draggable("disable");
                            } catch (e) {
                            }
                            clearTimeout(t);
                        }, 500);
                    } else if (this.indexStore.custom_pos_style === '1') {
                        setTimeout(function () {
                            try {
                                $("#u244621").draggable("enable");
                            } catch (e) {
                            }
                        }, 100);
                    }
                    if (typeof templet != "undefined") {
                        templet.checkaction(this);
                    }

                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }
                }
            });
        }
    }

 	if( parseInt($.browser.version) === 8 ){
}else{
    //只有dom存在，才绑定js
    if(document.querySelector('#u841521')){
        ;var num = 'u841521';
        window['indexVm'+num] = new Vue({
            el:"#u841521",
            data:{
                indexStore:{

                }
            },
            watch:{
            },
            computed:{
            },
            methods:{
            },
            created:function(){


            },
            ready:function(){


            }
        });
    }

}
if('' == '0' || '1' == '0'){
    //样式1
    var ad = new AdMove("u989052");
    $('#u989052').css('zIndex','999999');
    var times = '' || '10'
    ad.Run(parseInt(times));
    //关闭点击事件
    $("#u989052 #open_page").on('click',function(){
        $('#u989052').css("display","none");
    });
};

 	if( parseInt($.browser.version) === 8 ){
 		console.log('ie8')
 	}else {

        //只有dom存在，才绑定js
        if (document.querySelector('#u989052')) {
            ;var num = 'u989052';
            window['indexVm' + num] = new Vue({
                el: "#u989052",
                data: {
                    indexStore: {},
                    indexShow: false,
                    costomDatas: {}
                },
                watch: {
                    costomDatas: {
                        handler: function (val, oldVal) {
                            console.log('test');
                        },
                        deep: true
                    }
                },
                computed: {
                    div: function () {
                        return {
                            overflowX: this.indexStore.w_scrollX_type,
                            overflowY: this.indexStore.w_scrollY_type,
                            wordWrap: this.indexStore.w_word_type
                        };
                    }
                },
                methods: {},
                created: function () {
                    try {
                        var StorageVal = {"w_scrollX_type":"hidden","w_scrollY_type":"hidden","w_word_type":"normal","contents":"<p>\n\t<span style=\"font-size:24px;color:#CCCCCC;line-height:2.5;\">浙江双联机械有限公司</span> \n</p>\n<p>\n\t<span style=\"font-size:16px;color:#CCCCCC;line-height:2.5;\">工厂：浙江省温州市龙湾区空港新区兴邦路30号&nbsp; &nbsp; &nbsp; &nbsp;</span> \n</p>\n<p>\n\t<span style=\"font-size:16px;color:#CCCCCC;line-height:2.5;\">电话：0577-86291819 / 0577-86291829 / 0577-86291839&nbsp; &nbsp; &nbsp; &nbsp;</span> \n</p>\n<p>\n\t<span style=\"font-size:16px;color:#CCCCCC;line-height:2.5;\">手机号：19957765178&nbsp; &nbsp; &nbsp; &nbsp;邮箱：</span><a href=\"mailto:info@sl-transmission.com\"><span style=\"font-size:16px;color:#CCCCCC;line-height:2.5;\">info@sl-transmission.com</span></a> \n</p>\n<p>\n\t<span style=\"color:#CCCCCC;font-size:16px;line-height:2.5;\">进出口事业部：温州市新城数码城大厦707室 &nbsp; &nbsp; &nbsp;</span> \n</p>\n<p>\n\t<span style=\"color:#CCCCCC;font-size:16px;line-height:2.5;\">电话：0577-86292887 &nbsp; &nbsp; &nbsp;&nbsp;</span> \n</p>\n<p>\n\t<span style=\"color:#CCCCCC;font-size:16px;line-height:2.5;\">邮箱：Exsales@sl-transmission.com&nbsp; &nbsp; &nbsp;</span> \n</p>\n<p>\n\t<span style=\"font-size:16px;line-height:2.5;color:#CCCCCC;\"><strong>欢迎访问浙江双联机械有限公司官方网站！</strong></span> \n</p>","msg":"","custom_pos_style":"1","is_hover":"0","custom_pos_style_left":0,"custom_pos_style_top":0,"custom_pos_style_rate":10,"hover_color":"#000","hover_bc_color":"#fff","width":628,"height":353,"fixedLeft":0,"fixedTop":0,"openShow":false,"isShows":false,"editBc":"#fff","effectsObj":{"type":"","icon":"fa-adjust","iconSize":50,"iconColor":"#fff","changeSrc":"","borderStyle":"solid","borderWidth":1,"borderColor":"#ccc","deg":90,"zoom":1.5,"distance":20,"direction":"left-right"}};
                        if (StorageVal != null) {
                            this.indexStore = StorageVal;
                        }
                    } catch (e) {
                    }


                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }

                    console.log('index', this.indexStore.custom_pos_style);
                    //debugger;

                    if (this.indexStore.custom_pos_style == '0') {
                        //样式1
                    } else if (this.indexStore.custom_pos_style == '1') {
                        //样式2
                    } else if (this.indexStore.custom_pos_style == '2') {
                        //样式3
                        try {
                            $('#u989052').css({
                                'position': 'fixed',
                                'zIndex': '999999'
                            });
                        } catch (e) {
                        }
                        ;
                    }

                    //挂件动画
                    try {
                        $.allWidgetAnimate(this, $('#u989052'));
                    } catch (e) {
                    }
                    ;
                },
                ready: function () {
                    if (this.indexStore.custom_pos_style === '2') {
                        var t = setTimeout(function () {
                            try {
                                $("#u989052").draggable();
                                $("#u989052").draggable("disable");
                            } catch (e) {
                            }
                            clearTimeout(t);
                        }, 500);
                    } else if (this.indexStore.custom_pos_style === '1') {
                        setTimeout(function () {
                            try {
                                $("#u989052").draggable("enable");
                            } catch (e) {
                            }
                        }, 100);
                    }
                    if (typeof templet != "undefined") {
                        templet.checkaction(this);
                    }

                    // 兼容
                    if (!this.indexStore.is_hover) {
                        this.indexStore.is_hover = '0';
                        this.indexStore.hover_color = "#000";
                        this.indexStore.hover_bc_color = "#fff";
                    }
                }
            });
        }
    }

 	//<script>
    var textareaEle = document.querySelector('#u485850 > textarea');
    //textarea元素是否存在
    if( textareaEle ){
        var StorageVal = $('#u485850').children('textarea').eq(0).text();
        if(JSON.parse(StorageVal).data.StorageVal){
            var rowFixed = JSON.parse(JSON.parse(StorageVal).data.StorageVal).fixed;
            var rowId = JSON.parse(JSON.parse(StorageVal).data.StorageVal).rowId;
        }
    }
    else{
        var StorageVal = '{"row_type":"default","module_width":1200,"module_height":354,"module_index":1,"module_name":"","w_border_raduis_num":0,"w_opacity":1,"w_fill":0,"w_transtion":0,"w_background":"rgba(27, 27, 27, 1)","w_background_globalColor":"","w_border_left_color":"rgba(51, 51, 51, 1)","w_border_left_color_globalColor":"","w_border_left_style":"solid","w_border_left_width":0,"w_border_top_color":"rgba(51, 51, 51, 1)","w_border_top_color_globalColor":"","w_border_top_style":"solid","w_border_top_width":0,"w_border_right_color":"rgba(51, 51, 51, 1)","w_border_right_color_globalColor":"","w_border_right_style":"solid","w_border_right_width":0,"w_border_bottom_color":"rgba(51, 51, 51, 1)","w_border_bottom_color_globalColor":"","w_border_bottom_style":"solid","w_border_bottom_width":0,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","r_bg_src":"","r_bg_position":"top left","r_background":"rgba(27, 27, 27, 1)","r_background_globalColor":"","r_border_top_style":"solid","r_border_top_width":0,"r_border_top_color":"rgba(204, 204, 204, 1)","r_border_top_color_globalColor":"","r_border_bottom_width":0,"r_border_bottom_style":"solid","r_border_bottom_color":"rgba(204, 204, 204, 1)","r_border_bottom_color_globalColor":"","r_fill":0,"r_tile_style":"repeat","fixed":"static","rowId":"","scroll_list":[{"id":1,"r_background":"#fff","r_background_globalColor":"","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":980,"module_height":600,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":1,"w_background":"#e3e3e3","w_background_globalColor":"","backgroundSize":"cover"},{"id":2,"r_background":"#1db9ff","r_background_globalColor":"","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":980,"module_height":600,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":1,"w_background":"#fff","w_background_globalColor":"","backgroundSize":"cover"},{"id":3,"r_background":"#fff","r_background_globalColor":"","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":980,"module_height":600,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":1,"w_background":"#ffc400","w_background_globalColor":"","backgroundSize":"cover"}],"swiper_set":{"pattern":"horizontal","speed":300},"pageStyle":{"display":"block","background":"#fff","background_globalColor":"","selectbackground":"#f00","selectbackground_globalColor":"","width":20,"height":20,"margin":5,"borderColor":"#333","borderColor_globalColor":"","borderWidth":5,"borderRadius":0,"bottom":10}}';
        if( StorageVal != 'null'){
            var rowFixed = JSON.parse(StorageVal).fixed;

            var rowId = JSON.parse(StorageVal).rowId ? JSON.parse(StorageVal).rowId : 'u485850';
        }
    }

    if( rowFixed == 'fixed'){
        $('#' + rowId).addClass('rowFixed');
    }
    else{
        $('#' + rowId).remove('rowFixed');
        $('.rowFixedNext').remove();
    }

    var ele = document.querySelector('.rowFixed');//是否存在固定的row

    if( ele ){
        var navY = $('.rowFixed').offset().top;
        var eleHeight = $('.rowFixed').height();

        var nextEle = document.querySelector('.rowFixedNext');//如果不存在就插入一个
        if(!nextEle){
            $('.rowFixed').after('<div class="rowFixedNext"></div>');
            $('.rowFixedNext').css('marginTop',0);
        }


        $(window).scroll(function () {


            var nowY = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
            if( nowY > navY){
                $('.rowFixed').css({
                    'position':'fixed',
                    'left':0,
                    'top':0,
                    'zIndex':100
                });

                $('.rowFixedNext').css('marginTop',eleHeight);
            }
            else{
                $('.rowFixed').css({
                    'position':'relative',

                });
                $('.rowFixedNext').css('marginTop',0);
            }
        })
    }

    //普通模式下的动画,且不是横幅
        $(function(){
        function animations_scroll(){
            var $items = $('#u485850').find('.hasAnimated');
            var $l = $items.length;
            var scrollTop = $(window).scrollTop();
            var windowHeight = document.documentElement.clientHeight; // 可视区域的高度

            for (var i = 0; i < $l; i++) {
                var anitype = $items.eq(i).data('anitype');
                var anistate = $items.eq(i).data('anistate');
                var aniieteration = $items.eq(i).data('aniieteration');
                var duration = $items.eq(i).data('duration');
                var delay = $items.eq(i).data('delay');
                var domHeight = $items.eq(i).height();
                var top = 0;

                //如果是底部
                if($items.eq(i).parents('.layout_footer').length > 0){
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('.layout_footer')[0].offsetTop;
                }
                else{
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('div.layrow')[0].offsetTop;
                }
                
                if(top >= scrollTop && top <= windowHeight + scrollTop){
                    // 是否多次触发 通过类名进行控制
                    if (aniieteration) {
                        $items.eq(i).addClass('animated  '+anitype+anistate).css({
                            animationDuration:duration + 's',
                            animationDelay:delay + 's'
                        });
                    } else {
                        //  若是单次触发  触发一次 便不再进入
                        if (!$items.eq(i).hasClass('oneCountAnimate')) {
                            $items.eq(i).addClass('animated  '+anitype+anistate).addClass('oneCountAnimate').css({
                                animationDuration:duration + 's',
                                animationDelay:delay + 's'
                            });
                        }
                    }
                }else{
                    $items.eq(i).removeClass('animated  '+anitype+anistate);
                }
            }
        }

        // 动画 animations_scroll
        $(document).scroll(animations_scroll);
        animations_scroll();
    });
    
        

    //滚动模式下的动画
    

    //普通模式下的横幅
    //<script>
    var textareaEle = document.querySelector('#u658980 > textarea');
    //textarea元素是否存在
    if( textareaEle ){
        var StorageVal = $('#u658980').children('textarea').eq(0).text();
        if(JSON.parse(StorageVal).data.StorageVal){
            var rowFixed = JSON.parse(JSON.parse(StorageVal).data.StorageVal).fixed;
            var rowId = JSON.parse(JSON.parse(StorageVal).data.StorageVal).rowId;
        }
    }
    else{
        var StorageVal = '{"row_type":"default","module_width":1200,"module_height":30,"module_index":1,"module_name":"","w_border_raduis_num":0,"w_opacity":1,"w_fill":0,"w_transtion":0,"w_background":"rgba(27, 27, 27, 1)","w_background_globalColor":"","w_border_left_color":"rgba(51, 51, 51, 1)","w_border_left_color_globalColor":"","w_border_left_style":"solid","w_border_left_width":0,"w_border_top_color":"rgba(51, 51, 51, 1)","w_border_top_color_globalColor":"","w_border_top_style":"solid","w_border_top_width":0,"w_border_right_color":"rgba(51, 51, 51, 1)","w_border_right_color_globalColor":"","w_border_right_style":"solid","w_border_right_width":0,"w_border_bottom_color":"rgba(51, 51, 51, 1)","w_border_bottom_color_globalColor":"","w_border_bottom_style":"solid","w_border_bottom_width":0,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","r_bg_src":"","r_bg_position":"top left","r_background":"rgba(27, 27, 27, 1)","r_background_globalColor":"","r_border_top_style":"solid","r_border_top_width":0,"r_border_top_color":"rgba(204, 204, 204, 1)","r_border_top_color_globalColor":"","r_border_bottom_width":0,"r_border_bottom_style":"solid","r_border_bottom_color":"rgba(204, 204, 204, 1)","r_border_bottom_color_globalColor":"","r_fill":0,"r_tile_style":"repeat","fixed":"static","rowId":"","scroll_list":[{"id":1,"r_background":"#fff","r_background_globalColor":"","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":980,"module_height":600,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":1,"w_background":"#e3e3e3","w_background_globalColor":"","backgroundSize":"cover"},{"id":2,"r_background":"#1db9ff","r_background_globalColor":"","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":980,"module_height":600,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":1,"w_background":"#fff","w_background_globalColor":"","backgroundSize":"cover"},{"id":3,"r_background":"#fff","r_background_globalColor":"","r_bg_src":"","r_bg_position":"top left","r_tile_style":"repeat","module_width":980,"module_height":600,"w_tile_style":"repeat","w_bg_src":"","w_bg_position":"top left","w_opacity":1,"w_background":"#ffc400","w_background_globalColor":"","backgroundSize":"cover"}],"swiper_set":{"pattern":"horizontal","speed":300},"pageStyle":{"display":"block","background":"#fff","background_globalColor":"","selectbackground":"#f00","selectbackground_globalColor":"","width":20,"height":20,"margin":5,"borderColor":"#333","borderColor_globalColor":"","borderWidth":5,"borderRadius":0,"bottom":10}}';
        if( StorageVal != 'null'){
            var rowFixed = JSON.parse(StorageVal).fixed;

            var rowId = JSON.parse(StorageVal).rowId ? JSON.parse(StorageVal).rowId : 'u658980';
        }
    }

    if( rowFixed == 'fixed'){
        $('#' + rowId).addClass('rowFixed');
    }
    else{
        $('#' + rowId).remove('rowFixed');
        $('.rowFixedNext').remove();
    }

    var ele = document.querySelector('.rowFixed');//是否存在固定的row

    if( ele ){
        var navY = $('.rowFixed').offset().top;
        var eleHeight = $('.rowFixed').height();

        var nextEle = document.querySelector('.rowFixedNext');//如果不存在就插入一个
        if(!nextEle){
            $('.rowFixed').after('<div class="rowFixedNext"></div>');
            $('.rowFixedNext').css('marginTop',0);
        }


        $(window).scroll(function () {


            var nowY = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
            if( nowY > navY){
                $('.rowFixed').css({
                    'position':'fixed',
                    'left':0,
                    'top':0,
                    'zIndex':100
                });

                $('.rowFixedNext').css('marginTop',eleHeight);
            }
            else{
                $('.rowFixed').css({
                    'position':'relative',

                });
                $('.rowFixedNext').css('marginTop',0);
            }
        })
    }

    //普通模式下的动画,且不是横幅
        $(function(){
        function animations_scroll(){
            var $items = $('#u658980').find('.hasAnimated');
            var $l = $items.length;
            var scrollTop = $(window).scrollTop();
            var windowHeight = document.documentElement.clientHeight; // 可视区域的高度

            for (var i = 0; i < $l; i++) {
                var anitype = $items.eq(i).data('anitype');
                var anistate = $items.eq(i).data('anistate');
                var aniieteration = $items.eq(i).data('aniieteration');
                var duration = $items.eq(i).data('duration');
                var delay = $items.eq(i).data('delay');
                var domHeight = $items.eq(i).height();
                var top = 0;

                //如果是底部
                if($items.eq(i).parents('.layout_footer').length > 0){
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('.layout_footer')[0].offsetTop;
                }
                else{
                    top = $items.eq(i).height() / 2 + $items[i].offsetTop + $items.eq(i).parents('div.layrow')[0].offsetTop;
                }
                
                if(top >= scrollTop && top <= windowHeight + scrollTop){
                    // 是否多次触发 通过类名进行控制
                    if (aniieteration) {
                        $items.eq(i).addClass('animated  '+anitype+anistate).css({
                            animationDuration:duration + 's',
                            animationDelay:delay + 's'
                        });
                    } else {
                        //  若是单次触发  触发一次 便不再进入
                        if (!$items.eq(i).hasClass('oneCountAnimate')) {
                            $items.eq(i).addClass('animated  '+anitype+anistate).addClass('oneCountAnimate').css({
                                animationDuration:duration + 's',
                                animationDelay:delay + 's'
                            });
                        }
                    }
                }else{
                    $items.eq(i).removeClass('animated  '+anitype+anistate);
                }
            }
        }

        // 动画 animations_scroll
        $(document).scroll(animations_scroll);
        animations_scroll();
    });
    
        

    //滚动模式下的动画
    

    //普通模式下的横幅
    