(window.webpackJsonp=window.webpackJsonp||[]).push([[95,16,17],{417:function(t,e,n){var content=n(422);content.__esModule&&(content=content.default),"string"==typeof content&&(content=[[t.i,content,""]]),content.locals&&(t.exports=content.locals);(0,n(19).default)("6016c062",content,!0,{sourceMap:!1})},418:function(t,e,n){"use strict";n.r(e);var o={name:"FloatPartial",data:function(){return{show:!1}},methods:{scrollTop:function(){document.documentElement.scrollIntoView({behavior:"smooth",block:"start",inline:"nearest"})}}},c=(n(421),n(10)),component=Object(c.a)(o,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"container"},[t._m(0),t._v(" "),e("div",{staticClass:"icon-link",on:{mouseover:function(e){t.show=!0},mouseout:function(e){t.show=!1}}},[e("img",{staticClass:"icon",attrs:{src:"https://file-sjtu.edu-sjtu.cn/www/school/school68.png",alt:"二维码"}})]),t._v(" "),e("a",{staticClass:"icon-link",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.scrollTop.apply(null,arguments)}}},[e("img",{staticClass:"icon",attrs:{src:"https://file-sjtu.edu-sjtu.cn/www/global/home33.png",alt:"回到顶部"}})]),t._v(" "),e("transition",{attrs:{name:"fade"}},[e("img",{directives:[{name:"show",rawName:"v-show",value:t.show,expression:"show"}],staticClass:"qrcode",attrs:{src:"https://file-sjtu.edu-sjtu.cn/nos/gw10.png",alt:"二维码"}})])],1)}),[function(){var t=this._self._c;return t("a",{staticClass:"icon-link",attrs:{href:"/"}},[t("img",{staticClass:"icon",attrs:{src:"https://file-sjtu.edu-sjtu.cn/www/school/school69.png",alt:"首页"}})])}],!1,null,"a6c8f3a2",null);e.default=component.exports},421:function(t,e,n){"use strict";n(417)},422:function(t,e,n){var o=n(18)((function(i){return i[1]}));o.push([t.i,".container[data-v-a6c8f3a2]{bottom:80px;height:150px;position:fixed;right:50px;width:62px;z-index:9999}.icon-link[data-v-a6c8f3a2]{cursor:pointer;display:block}.container .icon[data-v-a6c8f3a2]{height:62px;margin-bottom:0;width:62px}.container .qrcode[data-v-a6c8f3a2]{border-radius:5px;box-shadow:0 0 4px #ccc;height:150px;left:-150px;position:absolute;top:4px;width:150px}.fade-enter-active[data-v-a6c8f3a2],.fade-leave-active[data-v-a6c8f3a2]{transition:all .5s}.fade-enter[data-v-a6c8f3a2],.fade-leave-to[data-v-a6c8f3a2]{opacity:0;width:100px}@media screen and (max-width:750px){.container[data-v-a6c8f3a2]{bottom:.2rem;cursor:pointer;height:1.5rem;position:fixed;right:.15rem;top:auto;width:.5rem;z-index:9999}.container .icon[data-v-a6c8f3a2]{height:.5rem;margin-bottom:0;width:.5rem}.container .qrcode[data-v-a6c8f3a2]{border-radius:.05rem;box-shadow:0 0 .04rem #ccc;height:.9rem;position:absolute;right:-.5rem;top:0;width:.9rem}.fade-enter-active[data-v-a6c8f3a2],.fade-leave-active[data-v-a6c8f3a2]{transition:all .5s}.fade-enter[data-v-a6c8f3a2],.fade-leave-to[data-v-a6c8f3a2]{opacity:0;width:1rem}}",""]),o.locals={},t.exports=o},435:function(t,e,n){"use strict";n.r(e);n(84),n(47);var o={props:{showArrows:{type:Boolean,default:!1},bannerText:{type:String,default:"人人成才
人人精彩"},bannerTip:{type:String,default:"enjoy your talent life be brilliant"},bannerImg:{type:String,default:"https://file-sjtu.edu-sjtu.cn/nos/gwBanner.png"},BannerList:{type:Array,required:!0},width:{type:String,default:"100%"},height:{type:String,default:"100vh"},showImage:{type:Boolean,default:!1}},data:function(){return{isStart:!1,currentIndex:0,interval:null,touchStartX:0,touchEndX:0}},computed:{computedWidth:function(){return this.width},left:function(){return"calc(".concat(this.currentIndex," * ").concat(this.width," * -1)")}},methods:{handleGoToLink:function(link){link&&link.length>0&&window.open(link,"_blank")},startInterval:function(){var t=this;this.interval=setInterval((function(){t.handleNext()}),3e3)},stopInterval:function(){clearInterval(this.interval)},handleGo:function(t){this.stopInterval(),this.currentIndex=t,this.$emit("banner-change",this.currentIndex),this.startInterval()},handleNextClick:function(){this.stopInterval(),this.handleNext(),this.startInterval()},handlePrevClick:function(){this.stopInterval(),this.handlePrev(),this.startInterval()},handleNext:function(){this.currentIndex===this.BannerList.length-1?this.currentIndex=0:this.currentIndex+=1,this.$emit("banner-change",this.currentIndex)},handlePrev:function(){0===this.currentIndex?this.currentIndex=this.BannerList.length-1:this.currentIndex-=1,this.$emit("banner-change",this.currentIndex)},handleTouchStart:function(t){this.touchStartX=t.touches[0].clientX},handleTouchMove:function(t){this.touchEndX=t.touches[0].clientX},handleTouchEnd:function(){this.touchStartX-this.touchEndX>50?this.handleNext():this.touchStartX-this.touchEndX<-50&&this.handlePrev()}},mounted:function(){this.startInterval()}},c=(n(446),n(10)),component=Object(c.a)(o,(function(){var t=this,e=t._self._c;return e("div",{ref:"container",staticClass:"banner_container1",style:{height:t.height},on:{touchstart:t.handleTouchStart,touchmove:t.handleTouchMove,touchend:t.handleTouchEnd}},[e("div",{staticClass:"banner-wrapper",style:{width:t.computedWidth,left:t.left}},t._l(t.BannerList,(function(n,o){return e("div",{key:o,staticClass:"bannerItem",class:{start:t.isStart},style:{width:t.computedWidth,backgroundImage:"url("+n.ImgUrl+")"},on:{click:function(e){return t.handleGoToLink(n.Href)}}},[t.showImage?e("div",{staticClass:"banner-wrapper-img"},[e("img",{attrs:{src:"https://file-sjtu.edu-sjtu.cn/iec/bj.png"}})]):t._e(),t._v(" "),e("div",{staticClass:"banner-content"},[n.time?e("p",{staticClass:"time"},[t._v(t._s(n.time))]):t._e(),t._v(" "),n.title1?e("div",{staticClass:"title1 txt-cut1"},[t._v(t._s(n.title1))]):t._e(),t._v(" "),n.title2?e("div",{staticClass:"title2 txt-cut2"},[t._v(t._s(n.title2))]):t._e()])])})),0),t._v(" "),e("div",{staticClass:"point-wrapper"},t._l(t.BannerList,(function(n,o){return e("div",{key:o,staticClass:"pointItem",class:{active:o==t.currentIndex},on:{click:function(e){return t.handleGo(o)}}})})),0),t._v(" "),t.showArrows?e("div",{staticClass:"arrow-container left"},[e("img",{attrs:{alt:"",src:"https://file-sjtu.edu-sjtu.cn/www/global/home6.png"},on:{click:t.handlePrevClick}})]):t._e(),t._v(" "),t.showArrows?e("div",{staticClass:"arrow-container right"},[e("img",{attrs:{alt:"",src:"https://file-sjtu.edu-sjtu.cn/www/global/home7.png"},on:{click:t.handleNextClick}})]):t._e()])}),[],!1,null,"09e08c75",null);e.default=component.exports},443:function(t,e,n){var content=n(447);content.__esModule&&(content=content.default),"string"==typeof content&&(content=[[t.i,content,""]]),content.locals&&(t.exports=content.locals);(0,n(19).default)("5508fa44",content,!0,{sourceMap:!1})},446:function(t,e,n){"use strict";n(443)},447:function(t,e,n){var o=n(18)((function(i){return i[1]}));o.push([t.i,".banner_container1[data-v-09e08c75]{display:block;margin:0 auto;overflow:hidden;position:relative;width:100%}.banner_container1 .banner-wrapper[data-v-09e08c75]{display:flex;height:100%;left:0;position:relative;text-align:center;transition:all .3s ease}.bannerItem[data-v-09e08c75]{background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;flex-shrink:0;height:100%;overflow:hidden;position:relative}.bannerItem.start[data-v-09e08c75]{transition:all 1.5s}.bannerItem[data-v-09e08c75]:hover{transform:scale(1)}.point-wrapper[data-v-09e08c75]{align-items:center;bottom:0;display:flex;height:40px;justify-content:center;left:0;position:absolute;right:0}.pointItem[data-v-09e08c75]{background-color:hsla(0,0%,100%,.48);border-radius:50%;cursor:pointer;height:10px;margin:8px;transition:all .3s ease;width:10px}.pointItem.active[data-v-09e08c75],.pointItem[data-v-09e08c75]:hover{background-color:#fff}.pointItem.active[data-v-09e08c75]{width:10px}.arrow-container[data-v-09e08c75]{align-items:center;bottom:0;cursor:pointer;display:flex;justify-content:center;left:auto;position:absolute;right:auto;top:0;width:50px}.arrow-container img[data-v-09e08c75]{width:70px}.arrow-container.left[data-v-09e08c75]{height:50px;left:30px;top:40%}.home-demo-con-left .arrow-container.left[data-v-09e08c75],.home-demo-con-left .arrow-container.right[data-v-09e08c75]{display:none}.arrow-container.right[data-v-09e08c75]{height:50px;right:30px;top:40%}.banner_container img[data-v-09e08c75]{filter:opacity(.5);height:50px;transition:all .3s;width:50px}.banner_container img[data-v-09e08c75]:hover{filter:opacity(1)}.banner-content[data-v-09e08c75]{bottom:60px;color:#fff;left:30px;position:absolute;right:30px;text-align:left}.banner-wrapper-img[data-v-09e08c75]{left:0;position:absolute;top:0}.banner-wrapper-img[data-v-09e08c75],.banner-wrapper-img img[data-v-09e08c75]{height:100%;width:100%}.time[data-v-09e08c75]{background:red;border-radius:4px;display:inline-block;font-size:16px;padding:5px 10px}.time[data-v-09e08c75],.title1[data-v-09e08c75]{color:#fff;margin-bottom:10px}.title1[data-v-09e08c75]{font-size:32px;font-weight:500;height:50px;line-height:50px;text-align:center}.home-con2-bottom .title1[data-v-09e08c75]{font-size:20px!important;height:auto;line-height:30px;margin-bottom:0}.home-con2-bottom .banner-content[data-v-09e08c75]{bottom:38px}.title2[data-v-09e08c75]{color:#fff;font-size:14px;font-weight:400;line-height:23px}.txt-cut1[data-v-09e08c75]{white-space:nowrap}.txt-cut1[data-v-09e08c75],.txt-cut2[data-v-09e08c75]{overflow:hidden;text-overflow:ellipsis}.txt-cut2[data-v-09e08c75]{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}@media screen and (min-width:750px) and (max-width:1366px){.title1[data-v-09e08c75]{font-size:28px;height:30px;line-height:30px}}@media screen and (max-width:750px){.point-wrapper[data-v-09e08c75]{bottom:.15rem;height:.2rem}.banner-content[data-v-09e08c75]{bottom:.2rem;left:.15rem;right:.15rem}.time[data-v-09e08c75]{font-size:.12rem;height:.12rem;line-height:.1rem;margin-bottom:.1rem;padding:.03rem .06rem}.title1[data-v-09e08c75]{font-size:.16rem;line-height:.2rem}.title2[data-v-09e08c75]{display:none}.pointItem[data-v-09e08c75]{height:.1rem;margin:.07rem}.pointItem[data-v-09e08c75],.pointItem.active[data-v-09e08c75]{width:.1rem}.arrow-container img[data-v-09e08c75]{width:.2rem!important}.home-con2-bottom .arrow-container.left[data-v-09e08c75],.home-con2-bottom .arrow-container.right[data-v-09e08c75]{display:none}.home-con2-bottom .point-wrapper[data-v-09e08c75]{bottom:.05rem}.home-con2-bottom .txt-cut1[data-v-09e08c75]{height:auto;overflow:visible;white-space:wrap}.home-con2-bottom .title1[data-v-09e08c75]{font-size:.14rem!important;line-height:.18rem;margin-bottom:.1rem}}",""]),o.locals={},t.exports=o},561:function(t,e,n){var content=n(687);content.__esModule&&(content=content.default),"string"==typeof content&&(content=[[t.i,content,""]]),content.locals&&(t.exports=content.locals);(0,n(19).default)("6491d063",content,!0,{sourceMap:!1})},686:function(t,e,n){"use strict";n(561)},687:function(t,e,n){var o=n(18)((function(i){return i[1]}));o.push([t.i,".home[data-v-10c7eecc]{cursor:default}.home-banner[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/gwt1-2.png) no-repeat bottom;background-size:cover;box-sizing:border-box;height:418px;padding-top:198px;width:100%}.home-banner-title[data-v-10c7eecc]{box-sizing:border-box;color:#fff;line-height:48px;margin:0 auto;max-width:1200px;text-align:center;transition:all .3s ease}.home-banner-title-span1[data-v-10c7eecc]{font-size:42px;font-weight:700;margin-bottom:20px}.home-banner-title-span2[data-v-10c7eecc]{color:#fff;font-size:32px;font-style:normal;letter-spacing:2px;line-height:27px;text-transform:uppercase}.home-con1-bj[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/sheng10.png) no-repeat top #fff;background-size:1878px 653px;cursor:default;margin:0 auto;padding-bottom:90px;padding-top:80px}.home-con1[data-v-10c7eecc]{margin:0 auto;width:1200px}.home-con1-title[data-v-10c7eecc]{color:#333;font-size:32px;font-weight:600;margin-bottom:50px;text-align:center}.home-con1-top-list[data-v-10c7eecc]{align-items:center;display:flex;flex-wrap:wrap;gap:35px 29px;justify-content:center}.home-con1-top-list-li[data-v-10c7eecc]{align-items:center;background-size:278px 195px;border:1px solid #ececec;border-radius:16px;box-sizing:border-box;height:223px;justify-content:center;padding:20px;width:278px}.home-con1-top-list-li img[data-v-10c7eecc]{display:block;height:128px;margin:0 auto;width:128px}.home-con1-top-list-li>div[data-v-10c7eecc]{color:#333;font-size:20px;font-weight:600;line-height:28px;text-align:center}.home-con1-top-list-li-01[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/sheng8.png) no-repeat 50%}.home-con1-top-list-li-02[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/sheng9.png) no-repeat 50%}.home-con2-bj[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/sheng11.png) no-repeat top #ffc255;background-size:1920px auto;cursor:default;margin:0 auto;padding-bottom:80px;padding-top:60px}.home-con2[data-v-10c7eecc]{margin:0 auto;width:1200px}.home-con2-top-title[data-v-10c7eecc]{align-items:center;background:#fff;border-radius:8px;box-sizing:border-box;display:flex;gap:20px;height:86px;justify-content:center;margin:0 auto;padding:10px;width:880px}.home-con2-top-title-list[data-v-10c7eecc]{background:#fff;border-radius:4px;color:#666;cursor:pointer;font-size:32px;font-weight:600;height:66px;line-height:66px;position:relative;text-align:center;width:280px}.home-con2-top-title-list.active[data-v-10c7eecc]{background:#f98848;color:#fff}.home-con2-top-title-list img[data-v-10c7eecc]{display:none}.home-con2-top-title-list.active img[data-v-10c7eecc]{bottom:-26px;display:inline-block;height:16px;left:124px;position:absolute;width:32px}.home-con2-bottom[data-v-10c7eecc]{background:#fff;border-radius:24px;box-sizing:border-box;height:auto;margin-top:35px;padding:20px;width:1200px}.home-con2-bottom-text[data-v-10c7eecc]{color:#333;font-size:18px;font-weight:500;line-height:35px;padding:0 10px 20px}.home-con2-bottom-banner[data-v-10c7eecc]{border-radius:12px;overflow:hidden}.home-con3-bj[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/jing31.png) no-repeat top #f9f9f9;background-size:1920px 1317px;cursor:default;margin:0 auto;padding-top:80px}.home-con3[data-v-10c7eecc]{margin:0 auto;padding-bottom:80px;width:1200px}.home-con3-title[data-v-10c7eecc]{color:#333;font-size:32px;font-weight:600;text-align:center}.home-con3-p[data-v-10c7eecc]{color:#333;font-size:18px;font-weight:400;line-height:28px;margin:25px auto 0;text-align:center}.home-con3-con[data-v-10c7eecc]{align-items:flex-start;display:flex;flex-wrap:wrap;gap:29px;justify-content:flex-start;margin-top:73px}.home-con3-con-list[data-v-10c7eecc]{border-radius:16px;height:360px;position:relative;width:278px}.home-con3-con-list-title[data-v-10c7eecc]{background:#f2a319;border-radius:8px;color:#fff;font-size:20px;font-weight:600;height:52px;left:30px;line-height:52px;position:absolute;text-align:center;top:-25px;width:219px;z-index:2}.home-con3-con-list-text[data-v-10c7eecc]{background:rgba(202,131,8,.85);border-radius:16px;box-sizing:border-box;color:#fff;display:none;font-size:18px;font-weight:400;height:360px;left:0;line-height:30px;padding:50px 12px 12px;position:absolute;text-align:justify;top:0;width:278px;z-index:1}.home-con3-con-list:hover .home-con3-con-list-text[data-v-10c7eecc]{display:block}.home-con3-con-list img[data-v-10c7eecc]{border-radius:16px;height:360px;width:278px}.home-con4-bj[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/sheng13.png) no-repeat center 190px #fcdba0!important;background-size:1857px auto!important}.home-con4-con[data-v-10c7eecc]{align-items:center;background:#fff;border-radius:16px;box-sizing:border-box;display:flex;flex-wrap:wrap;gap:20px;height:auto;justify-content:center;margin-top:40px;padding:20px;width:1200px}.home-con4-con-list[data-v-10c7eecc]{border-radius:16px;height:auto;width:373px}.home-con4-con-list img[data-v-10c7eecc]{border-radius:16px;height:242px;width:373px}.bottom-float-bj[data-v-10c7eecc]{background:transparent;transition:all .3s ease;width:100%}.bottom-float-bj.fixed[data-v-10c7eecc]{background:#ffd58b;bottom:0;position:fixed;z-index:5}.bottom-float-bj.fixed .bottom-float[data-v-10c7eecc]{padding-bottom:0}.bottom-float[data-v-10c7eecc]{align-items:center;display:flex;height:60px;justify-content:center;line-height:60px;margin:0 auto;padding-bottom:30px;width:1200px}.bottom-float-list[data-v-10c7eecc]{cursor:pointer;font-size:18px;height:18px;line-height:18px}.icon[data-v-10c7eecc]{margin-right:10px;vertical-align:top;width:18px}.icon[data-v-10c7eecc],.shu[data-v-10c7eecc]{display:inline-block;height:18px}.shu[data-v-10c7eecc]{margin:0 25px;width:2px}.bottom-float-list.active[data-v-10c7eecc]{color:#d88a00}.bottom-float-list.active .icon1[data-v-10c7eecc]{content:url(https://file-sjtu.edu-sjtu.cn/nos/jing11.png)}.bottom-float-list[data-v-10c7eecc]:hover{color:#d88a00}.bottom-float-list:hover .icon1[data-v-10c7eecc]{content:url(https://file-sjtu.edu-sjtu.cn/nos/jing11.png)}.bottom-float-list:hover .icon2[data-v-10c7eecc]{content:url(https://file-sjtu.edu-sjtu.cn/nos/jing12.png)}.bottom-float-list:hover .icon3[data-v-10c7eecc]{content:url(https://file-sjtu.edu-sjtu.cn/nos/jing13.png)}.bottom-float-list:hover .icon4[data-v-10c7eecc]{content:url(https://file-sjtu.edu-sjtu.cn/nos/jing14.png)}@media screen and (min-width:750px) and (max-width:1366px){.home-banner-title[data-v-10c7eecc]{max-width:1000px}.home-con1-bj[data-v-10c7eecc]{padding-bottom:70px;padding-top:70px}.home-con1[data-v-10c7eecc]{width:1000px}.home-con1-top-list-li[data-v-10c7eecc]{background-size:228px 184px;border-radius:12px;height:184px;width:228px}.home-con1-top-list-li img[data-v-10c7eecc]{display:block;height:110px;margin:0 auto;width:110px}.home-con2[data-v-10c7eecc]{width:1000px}.home-con2-top-title[data-v-10c7eecc]{gap:8px;height:72px;padding:7px;width:560px}.home-con2-top-title-list[data-v-10c7eecc]{font-size:28px;height:60px;line-height:60px;width:270px}.home-con2-top-title-list.active img[data-v-10c7eecc]{bottom:-22px;left:75px}.home-con2-bottom[data-v-10c7eecc]{border-radius:20px;gap:15px;height:auto;margin-top:30px;width:1000px}.home-con3-bj[data-v-10c7eecc]{padding-top:60px}.home-con3[data-v-10c7eecc]{padding-bottom:60px;width:1000px}.home-con1-title[data-v-10c7eecc]{font-size:28px}.home-con3-p[data-v-10c7eecc]{font-size:16px;line-height:24px;margin:25px auto 0}.home-con3-con[data-v-10c7eecc]{gap:50px 24px}.home-con3-con-list[data-v-10c7eecc]{border-radius:12px;height:301px;width:232px}.home-con3-con-list-title[data-v-10c7eecc]{font-size:18px;height:40px;left:30px;line-height:40px;top:-18px;width:170px}.home-con3-con-list-text[data-v-10c7eecc]{font-size:13px;line-height:23px;padding:60px 10px 10px}.home-con3-con-list img[data-v-10c7eecc],.home-con3-con-list-text[data-v-10c7eecc]{border-radius:12px;height:301px;width:232px}.home-con4-con[data-v-10c7eecc]{border-radius:12px;margin-top:35px;width:1000px}.home-con4-con-list[data-v-10c7eecc],.home-con4-con-list img[data-v-10c7eecc]{border-radius:12px;width:306px}.home-con4-con-list img[data-v-10c7eecc]{height:auto}.bottom-float[data-v-10c7eecc]{height:52px;line-height:52px;padding-bottom:25px;width:1000px}.bottom-float-list[data-v-10c7eecc]{font-size:16px;height:16px;line-height:16px}.icon[data-v-10c7eecc]{margin-right:10px;width:16px}.icon[data-v-10c7eecc],.shu[data-v-10c7eecc]{display:inline-block;height:16px}.shu[data-v-10c7eecc]{margin:0 20px;width:2px}}@media screen and (max-width:750px){.home[data-v-10c7eecc],.home-banner[data-v-10c7eecc]{width:3.75rem}.home-banner[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/gwt1-1.png) no-repeat bottom;background-size:3.75rem 1.6rem;box-sizing:border-box;height:1.6rem;padding-top:.86rem}.home-banner-title-span1[data-v-10c7eecc]{font-size:.2rem;line-height:.2rem;margin-bottom:.1rem}.home-banner-title-span2[data-v-10c7eecc]{font-size:.12rem;line-height:.14rem}.home-con1-bj[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/sheng10-1.png) no-repeat bottom rgba(255,194,85,.08);background-size:3.6rem 2.3rem;padding-bottom:.35rem;padding-top:.35rem}.home-con1[data-v-10c7eecc]{width:3.75rem}.home-con1-title[data-v-10c7eecc]{font-size:.18rem;line-height:.28rem;margin-bottom:.2rem}.home-con1-top-list[data-v-10c7eecc]{gap:.13rem .08rem}.home-con1-top-list-li[data-v-10c7eecc]{background-size:.8rem .61rem;border-radius:.04rem;height:.61rem;padding:.05rem;width:.8rem}.home-con1-top-list-li img[data-v-10c7eecc]{height:.35rem;width:.35rem}.home-con1-top-list-li>div[data-v-10c7eecc]{font-size:.09rem;line-height:.15rem}.home-con2-bj[data-v-10c7eecc]{background-color:#ffc255;background-image:none;padding-bottom:.4rem;padding-top:.35rem}.home-con2[data-v-10c7eecc]{width:3.35rem}.home-con2-top-title[data-v-10c7eecc]{border-radius:.08rem;gap:.01rem;height:.4rem;padding:.04rem;width:3.35rem}.home-con2-top-title-list[data-v-10c7eecc]{border-radius:.04rem;font-size:.18rem;height:.32rem;line-height:.32rem;width:1.63rem}.home-con2-top-title-list.active img[data-v-10c7eecc]{bottom:-.13rem;height:.1rem;left:.44rem;width:.2rem}.home-con2-bottom[data-v-10c7eecc]{border-radius:.08rem;flex-direction:column;gap:0;height:auto;margin-top:.2rem;padding:.12rem;width:3.35rem}.home-con2-bottom-text[data-v-10c7eecc]{font-size:.14rem;line-height:.24rem;padding:0 .12rem .12rem}.home-con2-bottom-banner[data-v-10c7eecc]{border-radius:.08rem}.home-con3-bj[data-v-10c7eecc]{background:url(https://file-sjtu.edu-sjtu.cn/nos/jing31-1.png) no-repeat top #f9f9f9;background-size:3.75rem 100%;padding-top:.35rem}.home-con3[data-v-10c7eecc]{padding-bottom:.4rem;width:3.35rem}.home-con3-title[data-v-10c7eecc]{font-size:.2rem;line-height:.28rem}.home-con3-p[data-v-10c7eecc]{font-size:.16rem;line-height:.25rem;margin:.15rem auto 0;width:3.35rem}.home-con3-con[data-v-10c7eecc]{gap:.37rem .09rem;margin-top:.4rem}.home-con3-con-list[data-v-10c7eecc]{border-radius:.08rem;height:2.1rem;width:1.63rem}.home-con3-con-list-title[data-v-10c7eecc]{border-radius:.04rem;font-size:.16rem;height:.32rem;left:.18rem;line-height:.32rem;top:-.17rem;width:1.28rem}.home-con3-con-list-text[data-v-10c7eecc]{font-size:.11rem;line-height:.17rem;padding-top:.18rem}.home-con3-con-list img[data-v-10c7eecc],.home-con3-con-list-text[data-v-10c7eecc]{border-radius:.08rem;height:2.1rem;width:1.62rem}.home-con4-con[data-v-10c7eecc]{border-radius:.08rem;gap:.11rem;margin-top:.2rem;padding:.12rem;width:3.35rem}.home-con4-con-list[data-v-10c7eecc],.home-con4-con-list img[data-v-10c7eecc]{border-radius:.08rem;width:1.5rem}.home-con4-con-list img[data-v-10c7eecc]{height:.97rem}.bottom-float[data-v-10c7eecc]{height:.4rem;line-height:.4rem;padding-bottom:.2rem;width:3.75rem}.bottom-float-list[data-v-10c7eecc]{font-size:.14rem;height:.14rem;line-height:.14rem}.icon[data-v-10c7eecc]{margin-right:.04rem;vertical-align:top;width:.14rem}.icon[data-v-10c7eecc],.shu[data-v-10c7eecc]{display:inline-block;height:.14rem}.shu[data-v-10c7eecc]{margin:0 .08rem;width:1px}}",""]),o.locals={},t.exports=o},876:function(t,e,n){"use strict";n.r(e);var o=n(6),c=(n(29),n(418)),r={layout:"default",middleware:[],components:{bannerModule:n(435).default,FloatPartial:c.default},head:function(){return{title:"基础教育学生成长方案|STEAM创客教育·心理健康课程-上海交大教育集团官网",meta:[{hid:"description",name:"description",content:"上海交大教育集团为合作学校提供学生成长全案服务:STEAM创客课程、心理健康支持、双师课堂升学规划。学生在全国科创竞赛中多次获奖,开展爱国主义教育、劳动实践等研学活动,服务覆盖生涯规划、心理健康、游学研学三大模块。"},{hid:"keywords",name:"keywords",content:"基础教育学生成长方案, STEAM创客教育课程, 心理健康课程体系, 爱国主义教育活动设计, 劳动教育实践案例, 双师课堂升学规划, 学生生涯规划指导"}]}},computed:{bannerStyle:function(){return{width:"100%",height:this.bannerHeight}},bannerStyle2:function(){return{width:"100%",height:this.bannerHeight2}}},data:function(){return{activeIndex:0,isFloating:!1,scrollThreshold:600,bannerHeight:"442px",bannerHeight2:"2rem",BannerList1:[{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng25.png",title1:"新余渝水二中高三学生傅骞辞荣获全国“爱我国防”主题演讲比赛优秀作品奖",Sort:"1",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng26.png",title1:"增城第一实验小学六(1)班列柳霏同学在增城区“四史”主题知识竞赛决赛荣获亚军",Sort:"2",Href:""}],BannerList2:[{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng25-2.png",title1:"新余渝水二中高三学生傅骞辞荣获全国“爱我国防”主题演讲比赛优秀作品奖",Sort:"1",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng26-2.png",title1:"增城第一实验小学六(1)班列柳霏同学在增城区“四史”主题知识竞赛决赛荣获亚军",Sort:"2",Href:""}],BannerList3:[{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng16.png",title1:"新余渝水二中曾宇昕获第二十一届全国中学生水科技发明比赛全国优秀奖",Sort:"1",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng27.png",title1:"增城区第一实验小学阮梓进、曾凯澄、黄思涵、列展枫获 \n2022年广东青少年人工智能创意智造挑战赛省级二等奖",Sort:"2",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng28.png",title1:"增城区实验中学第六届广州市中小学科技主题实践活动市级优秀科技社团",Sort:"3",Href:""}],BannerList4:[{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng16-2.png",title1:"新余渝水二中曾宇昕获第二十一届全国中学生水科技发明比赛全国优秀奖",Sort:"1",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng27-2.png",title1:"增城区第一实验小学阮梓进、曾凯澄、黄思涵、列展枫获 \n2022年广东青少年人工智能创意智造挑战赛省级二等奖",Sort:"2",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng28-2.png",title1:"增城区实验中学第六届广州市中小学科技主题实践活动市级优秀科技社团",Sort:"3",Href:""}],BannerList5:[{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng29.png",title1:"增城第一实验小学荣获2023年石滩仙村艺术节“六一”文艺汇演一等奖",Sort:"1",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng30.png",title1:"渝水二中简语婷同学荣获第十届规范汉字书写大会江西省高中组二等奖",Sort:"2",Href:""}],BannerList6:[{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng29-2.png",title1:"增城第一实验小学荣获2023年石滩仙村艺术节“六一”文艺汇演一等奖",Sort:"1",Href:""},{ImgUrl:"https://file-sjtu.edu-sjtu.cn/nos/sheng30-2.png",title1:"渝水二中简语婷同学荣获第十届规范汉字书写大会江西省高中组二等奖",Sort:"2",Href:""}]}},fetchOnServer:!0,fetch:function(){return Object(o.a)(regeneratorRuntime.mark((function t(){return regeneratorRuntime.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:case"end":return t.stop()}}),t)})))()},methods:{goToSchool:function(){window.open("/PrimaryEducationSchool","_self")},goToStudent:function(){window.open("/PrimaryEducationStudent","_self")},goToTeacher:function(){window.open("/PrimaryEducationTeacher","_self")},goToClass:function(){window.open("/PrimaryEducationClass","_self")},setActive:function(t){this.activeIndex=t},handleScroll:function(){var t=window.scrollY,e=document.documentElement.scrollHeight,n=window.innerHeight;t>10&&t+n