Help
RSS
API
Feed
Maltego
Contact
Domain > boleyishu.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2017-06-29
111.13.101.208
(
ClassC
)
2025-08-02
47.92.200.4
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Sat, 02 Aug 2025 04:08:47 GMTServer: Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1X-Powered-By: PHP/8.2.12Transfer-Encoding: chunkedContent-Type: text/html; charsetUTF-8 !DOCTYPE html>html stylemin-width: 1200px; font-size: 32px;>head> meta charsetUTF-8> title>杭州全音艺术培训学校/title> meta http-equivX-UA-Compatible contentIEEdge,chrome1> meta nameviewport contentwidth1200, user-scalableyes> meta namekeywords content浙江艺考培训,杭州艺考培训,音乐艺考机构,杭州艺考机构> meta namedescription content杭州全音艺术培训学校是经杭州教育局审批的3A级专业艺术类培训学校。现学校致力于长三角地区的音乐、美术等多类艺考培训。学校不仅注重省内联考教学,更为全国各大艺术学院输送大批优等生。也为各地参加浙江音乐学院校考的学生提供专业培训等服务。> link hrefpage_public.f5a29949536733b76e376e081d3166eb.css relstylesheet typetext/css> link href255-20250217-100421-958740.css relstylesheet typetext/css> script typetext/javascript src/common/js/jquery-3.1.0.min.js>/script> script> window.DSTORE_STATE {debug:false,sdcode:false,request_id:T25032507232265713349E83691,platform:standand,screen:pc,release:20250324-2-f1adc6eb4f,csrf_token:null,qiniu_url:https://s2.d2scdn.com/,product:{},settings:{SUPER_COMPANY_DOMAIN:www.quanyinyishu.com,SUPER_COMPANY_MOBILE_DOMAIN:m.quanyinyishu.com},qiniu:{token:no permissions},company:{id:24160,nickname:langyin,name:杭州全音艺术培训学校,type:standard,domain:www.quanyinyishu.com,settings:{terms_url:http://www.quanyinyishu.com/term/218739/,oss_default_provider:null},watermark_fop:null,lang:zh-cn,is_shop:false,is_pc:true,is_mobile:true,is_dwapp:false,url:http://www.quanyinyishu.com,mobile_url:http://m.quanyinyishu.com,is_bbs:false,is_section:false,use_fenxiao:false,use_customer:true,use_profile:false,mini_logo2:null,bg_image2:null,delivery_delta:null,credits_rate:100,use_receipt:true,super_company_domain:www.quanyinyishu.com,m_super_company_domain:m.quanyinyishu.com,wechat_user_type:appuser,url_mobile_to_pc:null},siteuser:{},weixinuser:{id:null,openid:null,demlution_openid:null,is_subscribe:null,headimgurl:null,nickname:null},page:{id:974347,type:default,alias:null,object_id:null,papp_page_args:},type:page_public,runtime:web,packages:{},x_forwarded_port:37226}; window.D window.DSTORE_STATE; window.QINIU_UPLOAD_TOKEN window.D.qiniu.token; window.COMPANY_LANG zh-cn; window.DM_PAGE_ID 974347; window.DM_DEBUG false; window.HOST_TYPE (location.protocol https:) ? 2 : 0; window.CHANNEL_ALIAS {}; (function() { var elem document.createElement(canvas); if (elem.getContext && elem.getContext(2d)) { window.D.is_webp !!(elem.toDataURL(image/webp).indexOf(data:image/webp) 0); } })(); /script> style> /* 轮播容器样式 */ .carousel-container { position: relative; max-width: 1900px; margin: 0 auto; overflow: hidden; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } /* 轮播图片列表 */ .carousel-slides { display: flex; transition: transform 0.5s ease-in-out; } /* 单张图片样式 */ .carousel-slide { min-width: 100%; box-sizing: border-box; } .carousel-slide img { width: 100%; display: block; } /* 导航按钮 */ .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background-color: rgba(0, 0, 0, 0.5); color: white; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 10; } .carousel-btn:hover { background-color: rgba(0, 0, 0, 0.8); } .carousel-btn.prev { left: 20px; } .carousel-btn.next { right: 20px; } /* 指示器 */ .carousel-indicators { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; } .carousel-indicator { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.5); cursor: pointer; } .carousel-indicator.active { background-color: white; }/style>script>function book(){ // 获取表单值 const name $(#user_name).val().trim(); const phone $(#user_phone).val().trim(); const age $(#user_age).val().trim(); const city $(#user_city).val().trim(); // 验证逻辑 if (!name) { alert(姓名不能为空); return; } if (!phone) { alert(电话号码不能为空); return; } else if (!/^0-9{11}$/.test(phone)) { // 简单验证11位数字 alert(请输入有效的11位手机号码); return; } if (!age) { alert(年龄不能为空); return; } else if (isNaN(age) || age 0 || age > 120) { alert(请输入有效的年龄(0-120)); return; } if (!city) { alert(城市不能为空); return; } // 创建 FormData 对象 const formData new FormData(); formData.append(name, name); formData.append(phone, phone); formData.append(age, age); formData.append(city, city); // 发起 POST 请求 fetch(/feishu.php, { method: POST, body: formData }) .then(response > { if (!response.ok) { throw new Error(Network response was not ok); } return response.json(); // 解析 JSON 响应 }) .then(data > { console.log(Success:, data); alert(提交成功!); $(#user_name, #user_phone, #user_age, #user_city).val(); }) .catch(error > { console.error(Error:, error); alert(提交失败,请稍后再试); // 处理错误 });}/script>/head>body classplatform-standand s-page-type-default stylefont-family:tahoma, arial, Hiragino Sans GB, Microsoft YaHei, 黑体, sans-serif; background-color:#FFF;font-size:14px;> center> img stylefake_width:0px; fake_height:0px; width:50%; height:unset; border-radius:0px; src/images/logo.png> br>br> div classcollapse navbar-collapse stylemargin-left:300px;> ul classnav navbar-nav js-navbar ag-store-html keynav> !-- ngRepeat: node in slide.tree -->li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> div classfa icon>/div> a ng-href/ classb-group-text1 ng-binding ng-scope href/ target_self>网站首页/a> p classb-group-text2 ng-binding>/p> /li> li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> div classfa icon>/div> a ng-href/about_us.php classb-group-text1 ng-binding ng-scope href/about_us.php target_self>关于我们/a> p classb-group-text2 ng-binding>/p> /li> li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> a ng-href/zhaosheng.php classb-group-text1 ng-binding ng-scope href/about_us.php target_self>招生信息/a> /li> li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> div classfa icon>/div> a ng-href/about_us.php classb-group-text1 ng-binding ng-scope href/about_us.php target_self>招聘信息/a> p classb-group-text2 ng-binding>/p> /li> li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> div classfa icon>/div> a ng-href/product.html classdropdown-toggle b-group-text1 ng-binding ng-scope href/product.html target_self>课程类别b classcaret>/b>/a> p classb-group-text2 ng-binding>/p> /li> li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> div classfa icon>/div> a ng-href/activity.html classdropdown-toggle b-group-text1 ng-binding ng-scope href/teacher.php target_self>教师团队b classcaret>/b>/a> p classb-group-text2 ng-binding>/p> /li>!-- end ngRepeat: node in slide.tree -->li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> div classfa icon>/div> a ng-href/news.html classb-group-text1 ng-binding ng-scope href/news.html target_blank>艺考动态/a> p classb-group-text2 ng-binding>/p> /li>!-- end ngRepeat: node in slide.tree -->li ng-repeatnode in slide.tree classs-dropdown1 js-navbar-item2 ag-remove-active ng-scope ag-navbar-item> div classfa icon>/div> a ng-href/contact.html classb-group-text1 ng-binding ng-scope href/contact.html target_self>联系我们/a> p classb-group-text2 ng-binding>/p> /li>!-- end ngRepeat: node in slide.tree --> /ul>/div> /center> div classslides> !-- load --> !-- load --> !-- load --> div classslide slide-bench1 idid_890f288642c4e2a0b6a1f3eb data-slide_settings{auto_center_type: none, auto_center_width: 1100px} data-slide-id4965468> div classs-layout-a s-root stylez-index:0; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; background-blend-mode:normal; padding-bottom:0px; padding-top:0px; background-size:cover; background-repeat:no-repeat; background-position:50% 50%; padding-left:0px; padding-right:0px; > div classs-container stylebackground-size:cover; background-repeat:no-repeat; margin-right:auto; transform:rotate(0deg); margin-left:auto; max-width:3000px; background-position:50% 50%; > div classs-bench ng-iffalse> div classs-bench-container stylewidth:1100px; height:530px; > div classs-bench-object s-bench-object-images1> div classs-bench-object-container stylewidth:1920px; top:0px; left:-410px; height:531px; > div>div classid_8009fdc3fdf961d6ab987c6d s-images1 click-imagesslide.components.images1 stylewidth:unset; idid_8009fdc3fdf961d6ab987c6d> !-- jinja -->div classs-images-render-container idid_e5fac8a1-7e2b-403c-893c-1c94af033883> div classcarousel-container> !-- 轮播图片 --> div classcarousel-slides> div classcarousel-slide> img srcimages/pic1.webp alt图片1> /div> div classcarousel-slide> img srcimages/pic2.webp alt图片2> /div> /div> !-- 导航按钮 --> button classcarousel-btn prev>❮/button> button classcarousel-btn next>❯/button> !-- 指示器 --> div classcarousel-indicators> div classcarousel-indicator active>/div> div classcarousel-indicator>/div> div classcarousel-indicator>/div> div classcarousel-indicator>/div> /div> /div> script> document.addEventListener(DOMContentLoaded, function() { const slides document.querySelector(.carousel-slides); const slideItems document.querySelectorAll(.carousel-slide); const prevBtn document.querySelector(.carousel-btn.prev); const nextBtn document.querySelector(.carousel-btn.next); const indicators document.querySelectorAll(.carousel-indicator); let currentIndex 0; const totalSlides slideItems.length; // 更新轮播位置和指示器状态 function updateCarousel() { slides.style.transform `translateX(-${currentIndex * 100}%)`; // 更新指示器状态 indicators.forEach((indicator, index) > { if (index currentIndex) { indicator.classList.add(active); } else { indicator.classList.remove(active); } }); } // 下一张 function nextSlide() { currentIndex (currentIndex + 1) % totalSlides; updateCarousel(); } // 上一张 function prevSlide() { currentIndex (currentIndex - 1 + totalSlides) % totalSlides; updateCarousel(); } // 按钮事件 nextBtn.addEventListener(click, nextSlide); prevBtn.addEventListener(click, prevSlide); // 指示器点击事件 indicators.forEach((indicator, index) > { indicator.addEventListener(click, () > { currentIndex index; updateCarousel(); }); }); // 自动轮播 let autoPlay setInterval(nextSlide, 6000); // 鼠标悬停暂停轮播 const carousel document.querySelector(.carousel-container); carousel.addEventListener(mouseenter, () > { clearInterval(autoPlay); }); carousel.addEventListener(mouseleave, () > { autoPlay setInterval(nextSlide, 6000); }); }); /script> /div>script> $(#id_e5fac8a1-7e2b-403c-893c-1c94af033883).slick({dots:true,autoplay:true,autoplaySpeed:1500,arrows:false,fade:false,slidesToShow:1,slidesToScroll:1,speed:500}); /script> /div>/div> /div> /div> div classs-bench-object s-bench-object-shape1> div classs-bench-object-container stylewidth:320px; top:67px; left:757px; height:411px; overflow:visible; > div>div classs-shape1 id_bc10eec1f13dc2574de0d60d s-components-shape click-shapeslide.components.shape1 styleheight:411px; width:320px; background-color:rgba(255, 255, 255, 0.82); border-radius:0px; border-color:#FFFFFF; border-width:0px; border-style:solid; background-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; box-shadow:0px 0px 5px rgba(153, 153, 153, 0.576); idid_bc10eec1f13dc2574de0d60d>/div>/div> /div> /div> div classs-bench-object s-bench-object-42781> div classs-bench-object-container stylewidth:290px; top:158px; left:772px; height:40px; > !-- component:42781 css --> div>div ng-repeatslide in value idid_96d7c38b8ffe967106c21101> div classs-layout-a s-root id_96d7c38b8ffe967106c21101 styleborder-top-style:solid; border-top-width:0px; border-bottom-style:solid; border-bottom-width:0px; border-right-color:#DDD; z-index:0; border-right-style:solid; border-right-width:0px; border-left-style:solid; padding-bottom:0px; border-top-color:#DDD; border-bottom-color:#DDD; padding-top:0px; border-left-width:0px; border-left-color:#DDD; > div classs-container stylemax-width:290px; > div>/div>div classform-group> label classb-group-text1 forid_96d7c38b8ffe967106c21101_label>姓名 /label> input typetext classform-control b-group-border1 nameuser_name iduser_name placeholder输入姓名>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-42791> div classs-bench-object-container stylewidth:290px; top:406px; left:772px; height:45px; > !-- component:42791 css --> div>div ng-repeatslide in value idid_e03f75a65030fd22a1259d14> div classs-layout-a s-root id_e03f75a65030fd22a1259d14 stylebackground-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; z-index:0; padding-bottom:0px; padding-top:0px; padding-left:0px; padding-right:0px; > div classs-container stylemax-width:290px; > div>/div>div classs-page-form-submit> button typebutton onclickbook() classbtn btn-default btn-block b-group-text1 b-group-border1>进行预约/button>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-42782> div classs-bench-object-container stylewidth:290px; top:217px; left:772px; height:40px; > !-- component:42782 css --> div>div ng-repeatslide in value idid_4711764a522aa40a06e346d3> div classs-layout-a id_4711764a522aa40a06e346d3 s-root styleborder-top-style:solid; border-top-width:0px; border-bottom-style:solid; border-bottom-width:0px; border-right-color:#DDD; z-index:0; border-right-style:solid; border-right-width:0px; border-left-style:solid; padding-bottom:0px; border-top-color:#DDD; border-bottom-color:#DDD; padding-top:0px; border-left-width:0px; border-left-color:#DDD; > div classs-container stylemax-width:290px; > div>/div>div classform-group> label classb-group-text1 foruser_phone>电话号码 /label> input typetext classform-control b-group-border1 nameuser_phone iduser_phone placeholder电话号码>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-42783> div classs-bench-object-container stylewidth:290px; top:342px; left:772px; height:40px; > !-- component:42783 css --> div>div ng-repeatslide in value idid_c6a81e34526471236be650c5> div classs-layout-a s-root id_c6a81e34526471236be650c5 styleborder-top-style:solid; border-top-width:0px; border-bottom-style:solid; border-bottom-width:0px; border-right-color:#DDD; z-index:0; border-right-style:solid; border-right-width:0px; border-left-style:solid; padding-bottom:0px; border-top-color:#DDD; border-bottom-color:#DDD; padding-top:0px; border-left-width:0px; border-left-color:#DDD; > div classs-container stylemax-width:290px; > div>/div>div classform-group> label classb-group-text1 foruser_city>所在城市 /label> input typetext classform-control b-group-border1 nameuser_city iduser_city placeholder所在城市>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-42784> div classs-bench-object-container stylewidth:290px; top:278px; left:772px; height:40px; > !-- component:42784 css --> div>div ng-repeatslide in value idid_a77683f0d27f2f81879aaf5f> div classs-layout-a s-root id_a77683f0d27f2f81879aaf5f styleborder-top-style:solid; border-top-width:0px; border-bottom-style:solid; border-bottom-width:0px; border-right-color:#DDD; z-index:0; border-right-style:solid; border-right-width:0px; border-left-style:solid; padding-bottom:0px; border-top-color:#DDD; border-bottom-color:#DDD; padding-top:0px; border-left-width:0px; border-left-color:#DDD; > div classs-container stylemax-width:290px; > div>/div>div classform-group> label classb-group-text1 foruser_age>年龄 /label> input typetext classform-control b-group-border1 nameuser_age iduser_age placeholder年龄>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-text1> div classs-bench-object-container stylewidth:200px; top:96px; left:817px; height:40px; > div>div classs-components-text s-text1 id_d9366e3499b9b8c8ed3e8dbc styletext-align:center; background-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; > span stylecolor:rgb(0, 0, 0); font-size:26px; font-weight:bold; font-family:microsoft jhengHei; display:block; line-height:1.0; height:40px; width:200px; idid_d9366e3499b9b8c8ed3e8dbc>预约报名/span>/div>/div> /div> /div> script>window.plugins.bench.init(id_890f288642c4e2a0b6a1f3eb);/script> /div>/div> /div>/div> /div> !-- load --> !-- load --> !-- load --> div classslide slide-16418 idid_db7f6f34062aaad2b260414e data-slide_settings{auto_center_type: none, auto_center_width: 1100px} data-slide-id4963918> div classs-root s-layout-a id_f95c2211e23bcae94a4f4649 stylez-index:0; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; background-color:rgb(248, 248, 248); background-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; padding-bottom:20px; padding-right:0px; padding-left:0px; padding-top:20px; animation-duration:1s; -webkit-animation-duration:1s; animation-delay:0; -webkit-animation-delay:0; animation-iteration-count:1; -webkit-animation-iteration-count:1; border-top-left-radius:0px; border-top-right-radius:0px; border-bottom-left-radius:0px; border-bottom-right-radius:0px; > div>/div> div classs-container stylebackground-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; max-width:1300px; margin-right:auto; margin-left:auto; transform-style:preserve-3d; transform:rotate(0deg); > div>/div>div classbox clearfix> ul classlist clearfix> li classclearfix b-amount-5 data-id0 style> div classb_one clearfix> div classb_icon>div classs-items-icon id_264b7e7dea74374adcc23819 s-item-icon1 click-iconitem.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > i stylefont-size:45px; color:rgb(198, 40, 40); idid_264b7e7dea74374adcc23819 classfa fa-asterisk >/i> /a>/div> div classs-item-image1 s-items-image id_c81dc1d258ee7a234b6bd1cf style idid_c81dc1d258ee7a234b6bd1cf> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; srchttps://s2.d2scdn.com/page/gallery/lifeofpix/Life-of-Pix-free-stock-photos-wheat-sunset-people-jordanmcqueen.jpg?imageMogr2/format/webp> /a>/div>/div> div classb_tit>div classs-item-link1 id_e851b35cf218d8029d3629e0 s-items-link styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(67, 67, 67); padding-bottom:6px; padding-top:10px; font-size:16px; href/service.html idid_e851b35cf218d8029d3629e0 target_blank>专业艺考/a>/div>/div> div classb_des>div classid_6ee17194d50f099933a1457d s-items-link s-item-link2 styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(102, 102, 102); font-size:14px; href/service.html idid_6ee17194d50f099933a1457d target_blank>10年办学经验/a>/div>/div> /div> /li> li classclearfix b-amount-5 data-id1 style> div classb_one clearfix> div classb_icon>div classs-items-icon id_5c229e7d7118b76910671ec1 s-item-icon1 click-iconitem.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:45px; color:#666; idid_5c229e7d7118b76910671ec1>svg classicon stylewidth: 1em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(198, 40, 40); overflow: hidden; viewBox0 0 1024 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM824.579127 326.59943c-15.449487 0-27.950707 12.501732-27.950707 27.949562 0 1.692548-0.026607 140.841725-0.054237 144.716986-2.457059 149.794631-127.828461 271.638677-279.45693 271.638677-152.256804 0-277.628207-122.390491-279.483537-272.757151-0.02763-4.066619-0.02763-142.342916-0.02763-143.598512 0-15.448854-12.501221-27.949562-27.950707-27.949562-15.449487 0-27.950707 12.501732-27.950707 27.949562 0 1.283226 0 143.216819 0.026607 144.225799 2.123447 171.57468 137.606553 312.77354 307.457781 326.855256-0.00921 0.300852-0.022514 0.599657-0.022514 0.902556l0 75.744101L362.102525 902.276704c-15.449487 0-27.950707 12.500709-27.950707 27.949562 0 15.44783 12.502244 27.949562 27.950707 27.949562l310.028432 0c15.448463 0 27.950707-12.502755 27.950707-27.949562 0-15.449877-12.503267-27.949562-27.950707-27.949562L545.06796 902.276704l0-75.744101c0-0.303922-0.013304-0.604774-0.022514-0.906649C714.216148 811.553447 849.654226 670.981874 852.475597 500.19514c0.026607-1.720178 0.054237-143.92597 0.054237-145.646148C852.529834 339.100138 840.028614 326.59943 824.579127 326.59943zM517.116229 687.60139c106.345314 0 192.873492-85.761246 192.873492-191.146435L709.989721 254.92297c0-105.385189-86.528178-191.146435-192.873492-191.146435s-192.873492 85.761246-192.873492 191.146435l0 241.531985C324.243761 601.841168 410.770915 687.60139 517.116229 687.60139zM380.145176 254.92297c0-74.569346 61.442845-135.246287 136.971053-135.246287 75.528209 0 136.971053 60.676941 136.971053 135.246287l0 241.531985c0 74.570369-61.442845 135.246287-136.971053 135.246287-75.528209 0-136.971053-60.675918-136.971053-135.246287L380.145176 254.92297z>/path>/svg>/span>/a>/div> div classid_3f93ced55a01afcd06c8bfa5 s-item-image1 s-items-image style idid_3f93ced55a01afcd06c8bfa5> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; srchttps://s2.d2scdn.com/page/gallery/lifeofpix/Life-of-Pix-free-stock-photos-wheat-sunset-people-jordanmcqueen.jpg?imageMogr2/format/webp> /a>/div>/div> div classb_tit>div classs-item-link1 s-items-link id_f68b29a1d66a4fd3cf82505f styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(67, 67, 67); padding-bottom:6px; padding-top:10px; font-size:16px; href/event.html idid_f68b29a1d66a4fd3cf82505f target_self>音乐培训/a>/div>/div> div classb_des>div classs-items-link id_aaf3b7f54ff8ceb17b280490 s-item-link2 styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(102, 102, 102); font-size:14px; href/event.html idid_aaf3b7f54ff8ceb17b280490 target_self>小三门,声乐,器乐/a>/div>/div> /div> /li> li classclearfix b-amount-5 data-id2 style> div classb_one clearfix> div classb_icon>div classs-items-icon id_45303cd0b1945430b06813be s-item-icon1 click-iconitem.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:45px; color:#666; idid_45303cd0b1945430b06813be>svg classicon stylewidth: 1.00293em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(198, 40, 40); overflow: hidden; viewBox0 0 1027 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM1020.444444 460.8 834.844444 230.4c-19.2-25.6-57.6-25.6-76.8 0L572.444444 460.8c-12.8 19.2 0 44.8 19.2 44.8l70.4 0c0 134.4 0 307.2-243.2 448-6.4 6.4 0 12.8 6.4 12.8 454.4-70.4 492.8-377.6 492.8-460.8l76.8 0C1020.444444 505.6 1033.244444 480 1020.444444 460.8L1020.444444 460.8 1020.444444 460.8zM438.044444 518.4 361.244444 518.4c0-134.4 0-307.2 243.2-448 6.4-6.4 0-12.8-6.4-12.8C143.644444 128 105.244444 435.2 105.244444 518.4L28.444444 518.4C2.844444 518.4-9.955556 544 9.244444 563.2L194.844444 793.6c19.2 25.6 57.6 25.6 76.8 0l185.6-230.4C470.044444 544 457.244444 518.4 438.044444 518.4L438.044444 518.4 438.044444 518.4z>/path>/svg>/span>/a>/div> div classs-item-image1 s-items-image id_9d8731190d1add94f29e1ae0 style idid_9d8731190d1add94f29e1ae0> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; srchttps://s2.d2scdn.com/page/gallery/lifeofpix/Life-of-Pix-free-stock-photos-wheat-sunset-people-jordanmcqueen.jpg?imageMogr2/format/webp> /a>/div>/div> div classb_tit>div classs-item-link1 s-items-link id_773ca7ee2bce679ab653e6d1 styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(67, 67, 67); padding-bottom:6px; padding-top:10px; font-size:16px; href/product.html idid_773ca7ee2bce679ab653e6d1 target_self>考学规划/a>/div>/div> div classb_des>div classs-items-link id_93f452ab044e11d32e22f0a0 s-item-link2 styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(102, 102, 102); font-size:14px; href/product.html idid_93f452ab044e11d32e22f0a0 target_self>度身定制考学之路/a>/div>/div> /div> /li> li classclearfix b-amount-5 data-id3 style> div classb_one clearfix> div classb_icon>div classs-items-icon id_ae04e41d087a49d233699958 s-item-icon1 click-iconitem.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:45px; color:#666; idid_ae04e41d087a49d233699958>svg classicon stylewidth: 1em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(198, 40, 40); overflow: hidden; viewBox0 0 1024 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM737.106563 641.716302c10.839802 8.671842 26.738179 6.503881 35.410021-4.335921 8.671842-10.839802 6.503881-26.738179-4.335921-35.410021-15.898377-12.285109-32.519407-23.124912-49.140437-33.242061-33.964714-19.511644-70.097389-33.964714-108.398024-44.081863 72.265349-38.300635 120.683133-113.456598 120.683133-200.897671 0-125.019054-101.894143-226.913197-226.913197-226.913197S277.498941 198.729711 277.498941 323.748765c0 86.718419 49.140438 162.597036 121.405787 200.897671-155.370501 39.745942-281.112209 165.48765-315.076923 328.084686-2.890614 13.730416 5.781228 26.738179 19.511645 29.628793 1.445307 0.722653 3.613267 0.722653 5.058574 0.722654 11.562456 0 22.402258-7.949188 24.570219-20.234298 36.855328-174.159492 192.948483-301.346507 371.443895-301.346507 66.484121 0 131.522936 17.343684 189.335216 50.585745 15.175723 8.671842 29.628793 18.788991 43.359209 29.628793z m-409.021877-317.967537c0-97.558222 79.491884-176.327452 176.327452-176.327452s176.327452 79.491884 176.327453 176.327452-79.491884 176.327452-176.327453 176.327452-176.327452-78.769231-176.327452-176.327452z fill>/path>path dM911.988709 625.095272m-27.460833 0a27.460833 27.460833 0 1 0 54.921665 0 27.460833 27.460833 0 1 0-54.921665 0Z fill>/path>path dM844.05928 693.747354m-27.460833 0a27.460833 27.460833 0 1 0 54.921666 0 27.460833 27.460833 0 1 0-54.921666 0Z fill>/path>path dM776.129852 761.676782m-27.460833 0a27.460833 27.460833 0 1 0 54.921666 0 27.460833 27.460833 0 1 0-54.921666 0Z fill>/path>path dM695.915314 810.817219l-57.089626 57.089626-80.937191-80.937191c-10.117149-10.117149-26.015526-10.117149-35.410021 0-10.117149 10.117149-10.117149 26.015526 0 35.410021L621.482004 921.383204c5.058574 5.058574 11.562456 7.226535 18.066338 7.226535s13.007763-2.16796 18.066337-7.226535l75.155963-75.155963c10.117149-10.117149 10.117149-26.015526 0-36.132675-10.839802-9.394495-26.738179-9.394495-36.855328 0.722653z fill>/path>/svg>/span>/a>/div> div classs-item-image1 id_82fd1e8df2228dd5706c4592 s-items-image style idid_82fd1e8df2228dd5706c4592> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; srchttps://s2.d2scdn.com/page/gallery/lifeofpix/Life-of-Pix-free-stock-photos-wheat-sunset-people-jordanmcqueen.jpg?imageMogr2/format/webp> /a>/div>/div> div classb_tit>div classid_0f38bb1696b396efe4e2df06 s-item-link1 s-items-link styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(67, 67, 67); padding-bottom:6px; padding-top:10px; font-size:16px; href/imageset.html idid_0f38bb1696b396efe4e2df06 target_self>实景模拟/a>/div>/div> div classb_des>div classs-items-link id_c251e6e8149f2cfeeda0af71 s-item-link2 styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(102, 102, 102); font-size:14px; href/imageset.html idid_c251e6e8149f2cfeeda0af71 target_self>模拟周考,实景练习/a>/div>/div> /div> /li> li classclearfix b-amount-5 data-id4 style> div classb_one clearfix> div classb_icon>div classs-items-icon id_d7c6ea1ccd938c848da4ef7d s-item-icon1 click-iconitem.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:45px; color:#666; idid_d7c6ea1ccd938c848da4ef7d>svg classicon stylewidth: 1em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(198, 40, 40); overflow: hidden; viewBox0 0 1024 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM 480.708 907.329 l 60.5327 -31.2702 l -42.855 -198.883 l 13.9804 -24.5808 l -1.06322 -25.0997 c -26.6868 -1.54622 -34.5202 -1.54622 -61.206 0 l -1.06526 25.0997 l 13.963 24.5808 l -42.855 198.883 L 480.708 907.329 ZM 297.223 422 c 15.3557 55.5614 37.4018 97.256 64.9789 127.29 c 30.0525 32.7018 66.1956 51.2472 107.098 58.5966 l 3.67367 0.638543 l 3.67572 -0.793062 c 45.2905 -10.1717 81.4541 -29.6268 110.306 -61.9817 c 26.7277 -30.033 46.6679 -70.5866 61.3267 -124.677 c 12.4137 -7.65842 21.7176 -20.1694 28.0007 -36.7244 c 6.90527 -18.2363 10.0775 -41.7325 9.65182 -69.4845 l -0.153496 -10.9647 l -8.62647 -6.16849 c -1.0448 -0.793062 -2.05071 -1.47049 -3.07401 -2.1469 c 11.4283 -161.673 -10.0192 -254.77 -192.461 -228.799 c -61.9049 8.76155 -129.167 -10.5585 -167.534 19.3006 c -48.2131 48.3471 -51.634 120.868 -38.5612 205.978 c -2.88163 1.64343 -5.80317 3.51915 -8.68378 5.66707 l -8.606 6.16849 l -0.154519 10.9647 c -0.425695 28.3517 2.90107 52.2736 10.0959 70.5877 C 274.693 402.14 284.341 414.535 297.223 422 Z M 324.26 334.009 c 0.596588 -1.91461 1.17885 -4.13927 1.81535 -6.61363 l 0.271176 0.077771 l 0.812505 -4.5445 c 2.93894 -12.339 6.2084 -28.5635 9.16678 -40.9793 c 1.14201 -3.67469 2.39863 -7.23273 3.79237 -10.714 c 42.4457 34.3462 118.623 38.2532 183.777 -23.1482 l -11.6237 33.6494 l 11.8161 2.47538 l 13.305 -22.6847 l -1.68129 15.8971 l 12.6276 1.73962 l 7.81294 -26.0298 c 15.4315 9.43693 32.5278 22.0267 47.7853 15.2196 c 5.06844 12.2418 8.99384 25.5857 11.546 39.9345 l 3.26742 18.4492 l 5.72642 -0.347924 l 2.68618 9.57303 c 6.74973 -0.889253 12.6675 -1.00591 18.4697 -1.10312 c -0.8913 13.4411 -3.01568 24.7538 -6.38134 33.7466 c -3.51915 9.18622 -8.31436 15.2391 -14.3897 17.4822 l -9.95677 3.732 l -2.72813 10.7908 c -13.1106 51.9256 -30.6716 89.5782 -54.1871 115.938 c -22.1628 24.8899 -50.318 40.2446 -85.7469 48.7923 c -31.175 -6.2657 -58.6365 -20.81 -81.4562 -45.621 c -24.501 -26.6878 -44.0349 -65.4425 -57.6295 -118.605 l -2.9021 -11.3515 l -10.5401 -3.46184 c -6.20635 -2.04968 -11.1172 -7.98691 -14.6773 -17.1342 c -3.55906 -9.05012 -5.76224 -20.6155 -6.65251 -34.4046 C 308.09 333.197 318.921 330.276 324.26 334.009 ZM 804.208 730.746 l 96.8293 -243.746 l -23.36 -10.5012 l -65.7536 165.523 l -21.9816 53.2836 c -15.4069 -34.1539 -34.1917 -64.1296 -55.5031 -85.5433 l -6.55735 -6.5553 l -8.8383 0.290619 l -104.275 3.7893 l 0 45.6589 l 96.3842 -3.51813 c 25.0649 28.4653 46.1429 72.7315 60.7046 121.059 c 14.4839 47.8467 22.259 99.056 21.0996 142.22 L 156.3 912.706 c 1.73962 -37.7887 6.40078 -83.4486 17.4433 -128.121 c 12.2213 -49.5843 32.2966 -97.7012 65.0372 -131.175 l 87.3914 0.810459 l 0 -45.6006 l -95.5144 -0.890276 l -8.08412 -0.038886 l -6.22579 5.68549 c -43.7054 40.5147 -69.3106 99.5175 -84.2028 159.739 c -14.3488 58.4052 -18.6805 118.084 -19.493 162.044 l -0.463558 23.3211 l 21.9121 0 L 813.031 958.481 l 19.2811 0 l 2.10699 -20.46 c 5.37645 -52.9305 -3.13234 -120.017 -21.7176 -181.496 C 810.076 747.819 807.239 739.212 804.208 730.746 Z>/path>/svg>/span>/a>/div> div classs-item-image1 s-items-image id_64805e2030aad33c425a93e6 style idid_64805e2030aad33c425a93e6> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; srchttps://s2.d2scdn.com/page/gallery/lifeofpix/Life-of-Pix-free-stock-photos-wheat-sunset-people-jordanmcqueen.jpg?imageMogr2/format/webp> /a>/div>/div> div classb_tit>div classs-item-link1 s-items-link id_d996cd6dd8150a2af8b941c1 styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(67, 67, 67); padding-bottom:6px; padding-top:10px; font-size:16px; href/activity.html idid_d996cd6dd8150a2af8b941c1 target_self>名师授课/a>/div>/div> div classb_des>div classs-items-link id_6ec03e46b2b80a7586c7e8ab s-item-link2 styletext-align:inherit; > a class styletext-align:inherit; font-weight:normal; font-family:microsoft yahei; line-height:inherit; display:inline-block; color:rgb(102, 102, 102); font-size:14px; href/activity.html idid_6ec03e46b2b80a7586c7e8ab target_self>高薪聘请高校名师讲课/a>/div>/div> /div> /li> /ul>/div> /div> /div> /div> !-- load --> !-- load --> !-- load --> div classslide slide-bench1 idid_9d76ec2122d727d96c8ecba3 data-slide_settings{auto_center_type: none, auto_center_width: 1100px} data-slide-id4967146> div classs-root s-layout-a stylebackground-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; z-index:0; padding-top:19px; padding-bottom:29px; padding-left:0px; padding-right:0px; animation-duration:1s; -webkit-animation-duration:1s; animation-delay:0; -webkit-animation-delay:0; animation-iteration-count:1; -webkit-animation-iteration-count:1; > div>/div>div classs-container stylemax-width:3000px; background-size:cover; margin-left:auto; margin-right:auto; background-position:50% 50%; background-repeat:no-repeat; > div classs-bench ng-iffalse> div classs-bench-container styleheight:400px; width:1100px; > div classs-bench-object s-bench-object-c55825> div classs-bench-object-container styletransform-style:preserve-3d; height:400px; width:770px; top:0px; left:330px; overflow:visible; > !-- component:c55825 css --> div>div ng-repeatslide in value idid_9c9c3916aa9b9d65a3af0dbf> div classs-root s-layout-a id_9c9c3916aa9b9d65a3af0dbf stylez-index:0; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; background-size:cover; background-position:50% 50%; padding-left:0px; background-repeat:no-repeat; padding-right:0px; padding-top:0px; padding-bottom:0px; > div classs-container stylemargin-left:auto; max-width:770px; margin-right:auto; > div> script>(function(){ use strict var randomid id_9c9c3916aa9b9d65a3af0dbf; var slide_type 5582; var Page window.plugins.create_page_instance({ randomid: randomid, slide_type: slide_type }); Page.load(function(){ $(#id_9c9c3916aa9b9d65a3af0dbf .b-items).slick({ slidesToShow: 1, slidesToScroll: 1, speed: 800, arrows: true, dots: true, fade: true, autoplaySpeed: 4000, autoplay: true }); });})();/script>/div>div classb-items u-slick-items sc-18515411digrie> div classb-item u-slick-item data-id0 style> div classbg-img>div classid_8def4f8ac8a2c90a95bf0fe4 s-item-image1 s-items-image style idid_8def4f8ac8a2c90a95bf0fe4> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; src/images/building.webp> /a>/div>/div> div classlink01>div classs-item-link1 id_79c0f0def4512dca96ef1bb0 s-items-link styletext-align:inherit; > /div>/div> div classlink02 b-0>div classid_903ba5d6990d8a918196c9cf s-items-link s-item-link2 styletext-align:inherit; animation-delay:0; -webkit-animation-delay:0; animation-duration:1s; -webkit-animation-iteration-count:1; background-size:cover; -webkit-animation-duration:1s; background-position:50% 50%; background-repeat:no-repeat; animation-iteration-count:1; > /div>/div> /div>div classb-item u-slick-item data-id1 style> style> .sc-18515411digrie .b-itemdata-id1 .link02 a { background: -webkit-linear-gradient(transparent, transparent), url(https://s2.d2scdn.com/u/langyin/2022/02/22/9RyEAJPuzRPdAxBdd3wtWF/屏幕快照2021-02-2014.11.37副本.png?imageMogr2/format/webp) repeat 0px 0px; background: -moz-linear-gradient(transparent, transparent), url(https://s2.d2scdn.com/u/langyin/2022/02/22/9RyEAJPuzRPdAxBdd3wtWF/屏幕快照2021-02-2014.11.37副本.png?imageMogr2/format/webp) repeat 0px 0px; background: -o-linear-gradient(transparent, transparent), url(https://s2.d2scdn.com/u/langyin/2022/02/22/9RyEAJPuzRPdAxBdd3wtWF/屏幕快照2021-02-2014.11.37副本.png?imageMogr2/format/webp) repeat 0px 0px; background-size: cover; } /style> div classbg-img>div classs-item-image1 id_00f3a60076c75f0b879f9c85 s-items-image style idid_00f3a60076c75f0b879f9c85> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; srchttps://s2.d2scdn.com/u/langyin/2022/02/22/BodsQSbUYaZG69czfk4cV6/屏幕快照2021-02-2014.11.37副本.png?imageMogr2/format/webp> /a>/div>/div> div classlink01>div classs-item-link1 id_3fea48bc17ab48c69eb9251d s-items-link styletext-align:inherit; > /div>/div> div classlink02 b-1>div classs-items-link id_92da06fa4cb88f47df6d78b2 s-item-link2 styletext-align:inherit; > /div>/div> /div>div classb-item u-slick-item data-id2 style> style> .sc-18515411digrie .b-itemdata-id2 .link02 a { background: -webkit-linear-gradient(transparent, transparent), url(https://s2.d2scdn.com/u/langyin/2022/02/22/uqpFVgo6Hfs59y4PRzWrdS/WechatIMG1697.jpg?imageMogr2/format/webp) repeat 0px 0px; background: -moz-linear-gradient(transparent, transparent), url(https://s2.d2scdn.com/u/langyin/2022/02/22/uqpFVgo6Hfs59y4PRzWrdS/WechatIMG1697.jpg?imageMogr2/format/webp) repeat 0px 0px; background: -o-linear-gradient(transparent, transparent), url(https://s2.d2scdn.com/u/langyin/2022/02/22/uqpFVgo6Hfs59y4PRzWrdS/WechatIMG1697.jpg?imageMogr2/format/webp) repeat 0px 0px; background-size: cover; } /style> div classbg-img>div classid_60dad2862b826d8458fa7261 s-item-image1 s-items-image style idid_60dad2862b826d8458fa7261> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; target_self> img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; srchttps://s2.d2scdn.com/u/langyin/2022/02/22/7Qsm6SogaB477HYWRfwN2A/WechatIMG1697.jpg?imageMogr2/format/webp> /a>/div>/div> div classlink01>div classs-item-link1 s-items-link id_9281a7212a8ce902f15f10a8 styletext-align:inherit; > /div>/div> div classlink02 b-2>div classid_6f5fa0b2d1ab45f3bc702be5 s-items-link s-item-link2 styletext-align:inherit; > /div>/div> /div>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-shape1> div classs-bench-object-container styleheight:433px; top:0px; width:330px; left:0px; > div>div classs-shape1 id_d7034acbc8699332b1a1b36a s-components-shape click-shapeslide.components.shape1 styleheight:433px; width:330px; background-color:rgb(198, 40, 40); border-radius:0px; border-color:#FFFFFF; border-width:0px; border-style:solid; background-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; idid_d7034acbc8699332b1a1b36a>/div>/div> /div> /div> div classs-bench-object s-bench-object-c62872> div classs-bench-object-container styletransform-style:preserve-3d; height:30px; width:264px; top:51px; left:20px; overflow:visible; > !-- component:c62872 css --> div>div ng-repeatslide in value idid_c6b7df77857609eb06452bf0> div classs-root s-layout-a id_c6b7df77857609eb06452bf0 stylebackground-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; z-index:0; padding-left:0px; padding-right:0px; padding-top:0px; padding-bottom:0px; > div classs-container stylemargin-left:auto; max-width:264px; margin-right:auto; > div>/div>style> #id_c6b7df77857609eb06452bf0 .wrapper{ width: 264px!important; height: 30px!important; line-height: 30px; } .content_6287 { color:white; }/style>div classwrapper> div classcontent_6287>杭州全音艺术培训/div>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-text2> div classs-bench-object-container styleheight:17px; top:87px; width:202px; left:20px; > div>div classid_9b239d067bb2d93979f1912c s-text2 s-components-text styletext-align:inherit; > span stylecolor:rgb(255, 255, 255); font-size:12px; font-weight:normal; font-family:microsoft yahei; display:block; line-height:1.0; height:17px; width:202px; idid_9b239d067bb2d93979f1912c>音乐艺考:小三门、声乐、器乐/span>/div>/div> /div> /div> div classs-bench-object s-bench-object-c17131> div classs-bench-object-container styletransform-style:preserve-3d; height:192px; width:296px; top:134px; left:20px; overflow:visible; > !-- component:c17131 css --> div>div ng-repeatslide in value idid_38254feb5defd324ad06de63> div classs-root s-layout-a id_38254feb5defd324ad06de63 styleborder-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-bottom-style:solid; padding-top:0px; border-right-color:#DDD; border-top-color:#DDD; border-top-width:0px; border-bottom-width:0px; background-size:cover; z-index:0; background-position:50% 50%; border-top-style:solid; border-left-width:0px; padding-bottom:0px; background-repeat:no-repeat; border-bottom-color:#DDD; border-left-style:solid; > div classs-container stylemargin-left:auto; max-width:296px; margin-right:auto; > div> div classbox clearfix d-legacy> div classaboutb> div classb-group-text1 miaoshu> div classmi> 杭州全音艺术培训学校是专注于音乐艺考 以及音乐特长生的教学和强化训练的垂直领域。 开设课程有视唱练耳 乐理 和声等音乐理论课。 声乐 器乐 舞蹈 等表演课程。学校位于浙江省杭州市西湖区转塘街道中村272号 香山文化创意园。地铁六号线中村地铁站旁边,靠近浙江音乐学院。学校实行统一教学和管理。由上海音乐学院 浙江音乐学院 及其他音乐学院毕业的硕博毕业研究生 以及大学老师,海归毕业硕博研究生 担任 教学工作,均有多年教学经验,师资雄厚。 /div> div classanniu> div classs-components-button id_7c5af7ec615848b3702d2d34 s-button1 stylepadding-right:0px; padding-top:0px; padding-left:0px; padding-bottom:0px; > /div> /div>/div> div classclearfix>/div> div classfenlei> ul classabolis clearfix> /ul> /div> /div>/div>div classclearfix>/div>/div>/div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-shape2> div classs-bench-object-container styleheight:1px; top:114px; width:60px; left:20px; > div>div classid_bef2693ad9fc08a9b0729b89 s-components-shape s-shape2 click-shapeslide.components.shape2 styleheight:1px; width:60px; background-color:rgb(255, 255, 255); border-radius:0px; border-color:#FFFFFF; border-width:0px; border-style:solid; background-blend-mode:normal; background-size:cover; background-position:50% 50%; background-repeat:no-repeat; idid_bef2693ad9fc08a9b0729b89>/div>/div> /div> /div> script>window.plugins.bench.init(id_9d76ec2122d727d96c8ecba3);/script> /div>/div> /div>/div> /div> !-- load --> !-- load --> !-- load --> div classslide slide-bench1 idid_d451abea417ed90d8abd01ed data-slide_settings{auto_center_width: 1100px, auto_center_type: none} data-slide-id4963920> div classs-root s-layout-a stylepadding-bottom:34px; border-top-width:0px; border-left-width:0px; border-right-width:0px; background-position:50% 50%; border-top-color:#DDD; padding-right:0px; background-repeat:no-repeat; border-right-color:#DDD; border-top-style:solid; padding-left:0px; border-right-style:solid; z-index:0; border-bottom-width:0px; background-blend-mode:normal; border-bottom-style:solid; border-left-color:#DDD; border-left-style:solid; border-bottom-color:#DDD; background-size:cover; padding-top:40px; > div>/div>div classs-container stylemargin-left:auto; max-width:3000px; background-position:50% 50%; margin-right:auto; background-size:cover; background-repeat:no-repeat; > div classs-bench ng-iffalse> div>div classdlayout-bag stylemax-width:1100px; justify-content:unset; border-top-width:0px; flex-wrap:wrap; border-left-width:0px; border-right-width:0px; background-position:50% 50%; border-top-color:#DDD; background-repeat:no-repeat; border-left-style:solid; border-bottom-color:#DDD; margin-left:auto; border-right-color:#DDD; border-top-style:solid; border-right-style:solid; border-bottom-width:0px; background-blend-mode:normal; border-bottom-style:solid; border-left-color:#DDD; display:flex; margin-right:auto; background-size:cover;>div classdlayout-item data-keyc404091 styleflex-grow:1; flex-basis:100%; padding-top:10px; padding-right:10px; padding-bottom:10px; padding-left:10px; max-width:100%; overflow:unset; > div classdlayout-item-container>div classdlayout-item-component> div classdlayout-item-component-container> !-- component:c404091 css --> div>div ng-repeatslide in value idid_804b480e08c190e10bbcdaf6> div classid_804b480e08c190e10bbcdaf6 s-root s-layout-a stylepadding-bottom:0px; border-top-width:0px; border-left-width:0px; border-right-width:0px; background-position:50% 50%; border-top-color:#DDD; padding-right:0px; background-repeat:no-repeat; border-right-color:#DDD; border-top-style:solid; padding-left:0px; border-right-style:solid; z-index:0; border-bottom-width:0px; background-blend-mode:normal; border-bottom-style:solid; border-left-color:#DDD; border-left-style:solid; border-bottom-color:#DDD; background-size:cover; padding-top:10px; > div classs-container stylemax-width:850px; > div>/div>div classb_box b_box_40409 clearfix> div classb_wrap clearfix> div classb_title1>div classs-text1 id_cf79bc161d53773578a27949 s-components-text styletext-align:center; animation-delay:0; animation-duration:1s; animation-iteration-count:1; -webkit-animation-duration:1s; -webkit-animation-delay:0; -webkit-animation-iteration-count:1; > span stylecolor:rgb(0, 0, 0); font-size:42px; font-weight:bold; font-family:microsoft jhengHei; display:block; line-height:1.0; idid_cf79bc161d53773578a27949>全音 | 课程中心/span>/div>/div> div classb_line> /div> div classb_title2>div classid_7c3f9f8b55fd0821c4188010 s-text2 s-components-text styletext-align:center; > span stylecolor:rgb(153, 153, 153); font-size:14px; font-weight:normal; font-family:microsoft yahei; display:block; line-height:1.0; idid_7c3f9f8b55fd0821c4188010>Curriculum Center/span>/div>/div> /div>/div> /div> /div>/div>/div> /div> /div>/div>div classdlayout-bag styledisplay:flex; flex-wrap:wrap; justify-content:unset; >/div>/div>/div> script>window.plugins.bench.init(id_d451abea417ed90d8abd01ed);/script> /div>/div> /div>/div> /div> !-- load --> !-- load --> !-- load --> div classslide slide-bench1 idid_1dcc931adbf7c09229ada732 data-slide_settings{auto_center_type: none, auto_center_width: 1100px} data-slide-id4967356> div classs-root s-layout-a stylebackground-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; z-index:0; padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px; > div>/div>div classs-container stylemargin-left:auto; max-width:3000px; background-position:50% 50%; margin-right:auto; background-size:cover; background-repeat:no-repeat; > div classs-bench ng-iffalse> div classs-bench-container stylewidth:1100px; height:450px; > div classs-bench-object s-bench-object-51163> div classs-bench-object-container stylewidth:880px; overflow:hidden; top:0px; height:450px; transform-style:preserve-3d; left:220px; > !-- component:51163 css --> div>div ng-repeatslide in value idid_eca8390601faea6710b778ee> div classid_eca8390601faea6710b778ee s-root s-layout-a stylebackground-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; z-index:0; padding-bottom:0px; padding-right:0px; padding-left:0px; padding-top:0px; > div classs-container stylemax-width:880px; margin-left:auto; margin-right:auto; > div> ul classbox clearfix> li classb-amount-2> div classlist clearfix> a href/product/4726756/ target_blank classimg>img srchttps://s2.d2scdn.com/u/langyin/2022/03/10/s9xPTSAMgpZKLK2f6J6vME/3.png?imageMogr2/auto-orient/thumbnail/!440x520r|imageView2/1/w/440/h/520/format/webp alt艺考早知道 | 小三门上什么?>/a> div classtext-wrap> a href/product/4726756/ target_blank classtit>h3 classb-group-text1>艺考早知道 | 小三门上什么?/h3>/a> div classprice>/div> div classdescrip b-group-text2> /div> div classmore-icon clearfix> div classx-icon> div classs-icon1 id_47a52a6acaad6c7d2d8a162a r-components-icon click-iconslide.components.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:20px; color:rgb(255, 255, 255); idid_47a52a6acaad6c7d2d8a162a>svg classicon stylewidth: 1em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(102, 102, 102); overflow: hidden; viewBox0 0 1024 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM960.158485 513.027399 960.158485 513.027399c0 0.016373 0 0.039909 0 0.039909 0 2.085498-4.091178 4.155646-4.90266 6.120394-0.525979 1.298576-5.078669 2.356674-5.9055 3.462868-0.413416 0.549515-0.605797 1.186012-1.099031 1.695618l-0.14224 0.150426c-0.031722 0.031722-0.064468 0.056282-0.096191 0.079818L669.637762 812.70262c-3.183506 3.311419-7.450692 4.951779-11.715833 4.951779-4.074805 0-8.16803-1.607614-11.320836-4.665253-6.479575-6.224772-6.653537-16.715707-0.398066-23.163559L898.1185 528.780175 80.14176 528.780175c-9.011234 0-16.302291-7.299243-16.302291-16.309454 0-9.003048 7.291057-16.294105 16.302291-16.294105L898.1185 496.176616 646.235772 235.051387c-6.255471-6.479575-6.049786-17.185404 0.413416-23.441898 6.495948-6.256494 16.874319-7.378038 23.100114-0.946558l278.532691 285.514709 0.239454 0 0.635473 2.857071c0.574075 0.589424 1.750877 4.019547 2.228761 4.680603 0.733711 1.019213 3.375887 1.965771 3.869121 3.14462C956.067306 508.84003 960.158485 510.925528 960.158485 513.027399z>/path>/svg>/span>/a>/div> /div> a href/product/4726756/ target_blank classmore>More/a> /div> /div> /div> /li> li classb-amount-2> div classlist clearfix> a href/product/4726895/ target_blank classimg>img srchttps://s2.d2scdn.com/u/langyin/2022/03/10/cTezskwVvNkwr67mqBhQ8Y/2.png?imageMogr2/auto-orient/thumbnail/!440x520r|imageView2/1/w/440/h/520/format/webp alt艺考早知道 | 声乐课上什么?>/a> div classtext-wrap> a href/product/4726895/ target_blank classtit>h3 classb-group-text1>艺考早知道 | 声乐课上什么?/h3>/a> div classprice>/div> div classdescrip b-group-text2> /div> div classmore-icon clearfix> div classx-icon> div classs-icon1 id_47a52a6acaad6c7d2d8a162a r-components-icon click-iconslide.components.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:20px; color:rgb(255, 255, 255); idid_47a52a6acaad6c7d2d8a162a>svg classicon stylewidth: 1em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(102, 102, 102); overflow: hidden; viewBox0 0 1024 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM960.158485 513.027399 960.158485 513.027399c0 0.016373 0 0.039909 0 0.039909 0 2.085498-4.091178 4.155646-4.90266 6.120394-0.525979 1.298576-5.078669 2.356674-5.9055 3.462868-0.413416 0.549515-0.605797 1.186012-1.099031 1.695618l-0.14224 0.150426c-0.031722 0.031722-0.064468 0.056282-0.096191 0.079818L669.637762 812.70262c-3.183506 3.311419-7.450692 4.951779-11.715833 4.951779-4.074805 0-8.16803-1.607614-11.320836-4.665253-6.479575-6.224772-6.653537-16.715707-0.398066-23.163559L898.1185 528.780175 80.14176 528.780175c-9.011234 0-16.302291-7.299243-16.302291-16.309454 0-9.003048 7.291057-16.294105 16.302291-16.294105L898.1185 496.176616 646.235772 235.051387c-6.255471-6.479575-6.049786-17.185404 0.413416-23.441898 6.495948-6.256494 16.874319-7.378038 23.100114-0.946558l278.532691 285.514709 0.239454 0 0.635473 2.857071c0.574075 0.589424 1.750877 4.019547 2.228761 4.680603 0.733711 1.019213 3.375887 1.965771 3.869121 3.14462C956.067306 508.84003 960.158485 510.925528 960.158485 513.027399z>/path>/svg>/span>/a>/div> /div> a href/product/4726895/ target_blank classmore>More/a> /div> /div> /div> /li> li classb-amount-2> div classlist clearfix> a href/product/4726897/ target_blank classimg>img srchttps://s2.d2scdn.com/u/langyin/2022/03/10/qKjAjRRLmDCrXe4TnF785M/1.png?imageMogr2/auto-orient/thumbnail/!440x520r|imageView2/1/w/440/h/520/format/webp alt艺考早知道 | 器乐学什么?>/a> div classtext-wrap> a href/product/4726897/ target_blank classtit>h3 classb-group-text1>艺考早知道 | 器乐学什么?/h3>/a> div classprice>/div> div classdescrip b-group-text2> /div> div classmore-icon clearfix> div classx-icon> div classs-icon1 id_47a52a6acaad6c7d2d8a162a r-components-icon click-iconslide.components.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:20px; color:rgb(255, 255, 255); idid_47a52a6acaad6c7d2d8a162a>svg classicon stylewidth: 1em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(102, 102, 102); overflow: hidden; viewBox0 0 1024 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM960.158485 513.027399 960.158485 513.027399c0 0.016373 0 0.039909 0 0.039909 0 2.085498-4.091178 4.155646-4.90266 6.120394-0.525979 1.298576-5.078669 2.356674-5.9055 3.462868-0.413416 0.549515-0.605797 1.186012-1.099031 1.695618l-0.14224 0.150426c-0.031722 0.031722-0.064468 0.056282-0.096191 0.079818L669.637762 812.70262c-3.183506 3.311419-7.450692 4.951779-11.715833 4.951779-4.074805 0-8.16803-1.607614-11.320836-4.665253-6.479575-6.224772-6.653537-16.715707-0.398066-23.163559L898.1185 528.780175 80.14176 528.780175c-9.011234 0-16.302291-7.299243-16.302291-16.309454 0-9.003048 7.291057-16.294105 16.302291-16.294105L898.1185 496.176616 646.235772 235.051387c-6.255471-6.479575-6.049786-17.185404 0.413416-23.441898 6.495948-6.256494 16.874319-7.378038 23.100114-0.946558l278.532691 285.514709 0.239454 0 0.635473 2.857071c0.574075 0.589424 1.750877 4.019547 2.228761 4.680603 0.733711 1.019213 3.375887 1.965771 3.869121 3.14462C956.067306 508.84003 960.158485 510.925528 960.158485 513.027399z>/path>/svg>/span>/a>/div> /div> a href/product/4726897/ target_blank classmore>More/a> /div> /div> /div> /li> li classb-amount-2> div classlist clearfix> a href/product/4727241/ target_blank classimg>img srchttps://s2.d2scdn.com/u/langyin/2022/03/10/HqaHSeP8oqEtopMStonsW3/4.png?imageMogr2/auto-orient/thumbnail/!440x520r|imageView2/1/w/440/h/520/format/webp alt艺考早知道 | 台词表演学什么?>/a> div classtext-wrap> a href/product/4727241/ target_blank classtit>h3 classb-group-text1>艺考早知道 | 台词表演学什么?/h3>/a> div classprice>/div> div classdescrip b-group-text2> /div> div classmore-icon clearfix> div classx-icon> div classs-icon1 id_47a52a6acaad6c7d2d8a162a r-components-icon click-iconslide.components.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > a > span classr-components-icon-iconfont-span stylefont-size:20px; color:rgb(255, 255, 255); idid_47a52a6acaad6c7d2d8a162a>svg classicon stylewidth: 1em; height: 1em; vertical-align: top; display: inline-block; fill: rgb(102, 102, 102); overflow: hidden; viewBox0 0 1024 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM960.158485 513.027399 960.158485 513.027399c0 0.016373 0 0.039909 0 0.039909 0 2.085498-4.091178 4.155646-4.90266 6.120394-0.525979 1.298576-5.078669 2.356674-5.9055 3.462868-0.413416 0.549515-0.605797 1.186012-1.099031 1.695618l-0.14224 0.150426c-0.031722 0.031722-0.064468 0.056282-0.096191 0.079818L669.637762 812.70262c-3.183506 3.311419-7.450692 4.951779-11.715833 4.951779-4.074805 0-8.16803-1.607614-11.320836-4.665253-6.479575-6.224772-6.653537-16.715707-0.398066-23.163559L898.1185 528.780175 80.14176 528.780175c-9.011234 0-16.302291-7.299243-16.302291-16.309454 0-9.003048 7.291057-16.294105 16.302291-16.294105L898.1185 496.176616 646.235772 235.051387c-6.255471-6.479575-6.049786-17.185404 0.413416-23.441898 6.495948-6.256494 16.874319-7.378038 23.100114-0.946558l278.532691 285.514709 0.239454 0 0.635473 2.857071c0.574075 0.589424 1.750877 4.019547 2.228761 4.680603 0.733711 1.019213 3.375887 1.965771 3.869121 3.14462C956.067306 508.84003 960.158485 510.925528 960.158485 513.027399z>/path>/svg>/span>/a>/div> /div> a href/product/4727241/ target_blank classmore>More/a> /div> /div> /div> /li>/ul>/div>/div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-60771> div classs-bench-object-container stylewidth:220px; top:0px; height:450px; transform-style:preserve-3d; left:0px; transform:rotate(0deg); > !-- component:60771 css --> div>div ng-repeatslide in value idid_f9f83ad2cdb540f29bddb4ec> div classid_f9f83ad2cdb540f29bddb4ec s-root s-layout-a stylebackground-color:rgb(255, 249, 196); background-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; z-index:0; animation-duration:1s; padding-bottom:0px; -webkit-animation-iteration-count:1; padding-right:0px; padding-left:0px; animation-iteration-count:1; -webkit-animation-delay:0; animation-delay:0; -webkit-animation-duration:1s; padding-top:0px; > div classs-container stylemax-width:220px; margin-left:auto; margin-right:auto; > div> div classd-leagcy box> div classtab-content> div classb-items u-slick-items clearfix> div classb-item u-slick-item clearfix> div classrightpadd clearfix> div classb-group-border2>a href/product/4726897/ target_blank>img srchttps://s2.d2scdn.com/u/langyin/2022/03/10/qKjAjRRLmDCrXe4TnF785M/1.png?imageMogr2/auto-orient/thumbnail/!220x450r|imageView2/1/w/220/h/450/format/webp alt艺考早知道 | 器乐学什么?>/a>/div> div classwenben clearfix> div classbit>a classb-group-text2 href/product/4726897/ target_blank>艺考早知道 | 器乐学什么?/a>/div> div classmjiag clearfix> div classjiage b-group-text3 b-group-text4>/div> p classb-group-text5> /p> /div> /div> /div> /div> div classb-item u-slick-item clearfix> div classrightpadd clearfix> div classb-group-border2>a href/product/4726895/ target_blank>img srchttps://s2.d2scdn.com/u/langyin/2022/03/10/cTezskwVvNkwr67mqBhQ8Y/2.png?imageMogr2/auto-orient/thumbnail/!220x450r|imageView2/1/w/220/h/450/format/webp alt艺考早知道 | 声乐课上什么?>/a>/div> div classwenben clearfix> div classbit>a classb-group-text2 href/product/4726895/ target_blank>艺考早知道 | 声乐课上什么?/a>/div> div classmjiag clearfix> div classjiage b-group-text3 b-group-text4>/div> p classb-group-text5> /p> /div> /div> /div> /div> /div> /div>/div>div classclearfix>/div>script>(function(){ use strict var randomid id_f9f83ad2cdb540f29bddb4ec; var slide_type 6077; var Page window.plugins.create_page_instance({ randomid: randomid, slide_type: slide_type }); Page.load(function(){ $(#id_f9f83ad2cdb540f29bddb4ec .b-items).slick({ speed: 300, dots: true, arrows: false, infinite: true, slidesToShow:1, slidesToScroll:1, autoplay: true, autoplaySpeed:2000, cssEase: linear }); });})();/script>/div>/div> /div>/div>/div> /div> /div> script>window.plugins.bench.init(id_1dcc931adbf7c09229ada732);/script> /div>/div> /div>/div> /div> br>br> div classslide slide-bench1 idid_17a8705b75d7abd0bb671266 data-slide_settings{auto_center_width: 1100px, auto_center_type: none} data-slide-id4968557> div classs-root s-layout-a styleborder-left-color:#DDD; padding-top:0px; background-color:rgb(29, 29, 29); border-top-style:solid; background-size:cover; border-top-width:0px; border-right-color:#DDD; border-right-style:solid; z-index:0; border-bottom-style:solid; background-position:50% 50%; border-bottom-color:#DDD; border-bottom-width:0px; border-top-color:#DDD; border-left-width:0px; background-repeat:no-repeat; background-blend-mode:normal; border-right-width:0px; padding-bottom:0px; border-left-style:solid; > div classs-container stylebackground-size:cover; margin-left:auto; background-repeat:no-repeat; margin-right:auto; background-position:50% 50%; max-width:3000px; > div classs-bench ng-iffalse> div classs-bench-container styleheight:400px; width:1100px; > div classs-bench-object s-bench-object-53571> div classs-bench-object-container styletransform-style:preserve-3d; width:1920px; height:400px; top:0px; overflow:visible; left:-410px; > !-- component:53571 css --> div>div ng-repeatslide in value idid_ef1aaf10b5836bafa3a4427b> div classid_ef1aaf10b5836bafa3a4427b s-root s-layout-a style-webkit-animation-duration:1s; -webkit-animation-iteration-count:1; border-left-color:#DDD; padding-top:0px; border-top-style:solid; background-size:cover; animation-duration:1s; border-top-width:0px; -webkit-animation-delay:0; padding-right:0px; border-right-color:#DDD; border-right-style:solid; animation-delay:0; z-index:0; border-bottom-style:solid; background-position:50% 50%; animation-iteration-count:1; border-bottom-color:#DDD; border-bottom-width:0px; transform-style:preserve-3d; border-left-width:0px; border-top-color:#DDD; padding-left:0px; background-repeat:no-repeat; background-blend-mode:normal; border-right-width:0px; padding-bottom:0px; border-left-style:solid; > div classs-container stylemargin-right:auto; margin-left:auto; border-left-color:#DDD; border-top-style:solid; background-size:cover; max-width:1920px; border-top-width:0px; border-right-color:#DDD; border-right-style:solid; border-bottom-style:solid; background-position:50% 50%; border-bottom-color:#DDD; border-bottom-width:0px; border-top-color:#DDD; border-left-width:0px; background-repeat:no-repeat; background-blend-mode:normal; border-right-width:0px; border-left-style:solid; > div> style> #id_ef1aaf10b5836bafa3a4427b .box{ width: 1920px!important; height: 400px!important; line-height: 400px!important; overflow: hidden; }/style>div classbox clearfix>/div>/div>vue-render data-slide-randomidid_ef1aaf10b5836bafa3a4427b>/vue-render>script typetext/javascript>window.plugins.vue.init(id_ef1aaf10b5836bafa3a4427b);/script> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-shape1> div classs-bench-object-container styletop:0px; left:0px; height:340px; width:205px; overflow:visible; > div>div classs-shape1 s-components-shape id_613b4b9e184fb9b4c121d074 click-shapeslide.components.shape1 styleheight:340px; width:205px; background-color:rgb(183, 28, 28); border-radius:0px; border-color:#FFFFFF; border-width:0px; border-style:solid; background-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; box-shadow:none; -moz-background-image:linear-gradient(180deg, #fa709a ,#fee140 ); -o-background-image:linear-gradient(180deg, #fa709a ,#fee140 ); webkitbackground-image:linear-gradient(180deg, #fa709a ,#fee140 ); idid_613b4b9e184fb9b4c121d074>/div>/div> /div> /div> div classs-bench-object s-bench-object-56341> div classs-bench-object-container styletransform-style:preserve-3d; width:108px; height:108px; top:138px; overflow:visible; left:49px; transform:rotate(0deg); > !-- component:56341 css --> div>div ng-repeatslide in value idid_90746a8aa7e46b4cd416528d> div classid_90746a8aa7e46b4cd416528d s-root s-layout-a stylez-index:0; border-top-style:solid; border-top-width:0px; border-top-color:rgb(255, 255, 255); border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:rgb(255, 255, 255); border-left-style:solid; border-left-width:0px; border-left-color:rgb(255, 255, 255); border-right-style:solid; border-right-width:0px; border-right-color:rgb(255, 255, 255); background-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px; > div classs-container stylemax-width:108px; > vue-render data-slide-randomidid_90746a8aa7e46b4cd416528d>/vue-render>script typetext/javascript>window.plugins.vue.init(id_90746a8aa7e46b4cd416528d);/script> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-text1> div classs-bench-object-container styletop:257px; left:49px; height:15px; width:108px; > div>div classs-text1 id_1ce4d5443f05b0e01456a1d1 s-components-text styletext-align:center; > span stylecolor:rgb(255, 255, 255); font-size:12px; font-weight:normal; font-family:microsoft yahei; display:block; line-height:1.0; width:108px; height:15px; idid_1ce4d5443f05b0e01456a1d1>扫码微信咨询/span>/div>/div> /div> /div> div classs-bench-object s-bench-object-54671> div classs-bench-object-container styletransform-style:preserve-3d; width:856px; height:16px; top:55px; overflow:visible; left:244px; > !-- component:54671 css --> div>div ng-repeatslide in value idid_72e9d971fc79fa9c87fd0212> div classid_72e9d971fc79fa9c87fd0212 s-root s-layout-a stylebackground-size:cover; background-position:50% 50%; background-repeat:no-repeat; background-blend-mode:normal; border-top-style:solid; border-top-width:0px; border-top-color:#DDD; border-bottom-style:solid; border-bottom-width:0px; border-bottom-color:#DDD; border-left-style:solid; border-left-width:0px; border-left-color:#DDD; border-right-style:solid; border-right-width:0px; border-right-color:#DDD; z-index:0; padding-top:0px; padding-right:0px; padding-left:0px; padding-bottom:0px; > div classs-container stylemargin-left:auto; max-width:856px; margin-right:auto; > div>/div>style> #id_72e9d971fc79fa9c87fd0212 .box{ width: 856px!important; height: 16px!important; line-height: 16px!important; }/style>div classbox> ul classx-nav clearfix> li classsubnav> a href/ target_self classnavname> p classb-group-text1>网站首页/p> div classline>/div> /a> /li> li classsubnav> a href/about.html target_self classnavname> p classb-group-text1>关于我们/p> div classline>/div> /a> /li> li classsubnav> a href/product.html target_self classnavname> p classb-group-text1>课程类别/p> div classline>/div> /a> /li> li classsubnav> a href/service.html target_self classnavname> p classb-group-text1>招生信息/p> div classline>/div> /a> /li> li classsubnav> a href/event.html target_self classnavname> p classb-group-text1>学员优绩/p> div classline>/div> /a> /li> li classsubnav> a href/imageset.html target_self classnavname> p classb-group-text1>相册列表/p> div classline>/div> /a> /li> li classsubnav> a href/contact.html target_self classnavname> p classb-group-text1>联系我们 /p> div classline>/div> /a> /li> /ul>/div> /div> /div>/div>/div> /div> /div> div classs-bench-object s-bench-object-shape2> div classs-bench-object-container styletop:88px; left:260px; height:38px; width:840px; > div>div classid_55d9a0f17b977f2a2a781268 s-components-shape s-shape2 click-shapeslide.components.shape2 styleheight:38px; width:840px; border-radius:0px; border-color:rgb(102, 102, 102); border-width:1px; border-style:solid; background-size:cover; background-repeat:no-repeat; background-blend-mode:normal; background-position:50% 50%; idid_55d9a0f17b977f2a2a781268>/div>/div> /div> /div> div classs-bench-object s-bench-object-icon1> div classs-bench-object-container styletop:97px; left:275px; height:20px; width:20px; > div>div classid_7913b22ee12c2a02281faea0 r-components-icon s-icon1 click-iconslide.components.icon1 stylebackground-color:transparent; border-radius:0px; text-align:inherit; > style> #id_7913b22ee12c2a02281faea0 { -webkit-filter: drop-shadow(None 0 0 0); } /style> a > span classr-components-icon-iconfont-span stylefont-size:20px; color:rgb(204, 34, 34); height:20px; width:20px; idid_7913b22ee12c2a02281faea0>svg classicon stylewidth: 1.0009765625em; height: 1em;vertical-align: top; display: inline-block;fill: currentColor;overflow: hidden; viewBox0 0 1025 1024 version1.1 xmlnshttp://www.w3.org/2000/svg width100% height100%>path dM839.946482 389.336542c0-179.917116-147.043874-325.820973-328.561518-325.820973-181.460336 0-328.561518 145.903857-328.561518 325.820973 0 59.446709 16.307166 114.955546 44.308214 162.939652l-0.351011 0 284.574638 407.316894 284.690277-407.316894-0.379665 0C823.757001 504.292088 839.946482 448.783251 839.946482 389.336542M511.413617 552.215816c-90.716353 0-164.280247-72.922251-164.280247-162.907928 0-89.927346 73.563895-162.907928 164.280247-162.907928 90.802315 0 164.280247 72.980582 164.280247 162.907928C675.693865 479.293565 602.215932 552.215816 511.413617 552.215816>/path>/svg>/span>/a>/div>/div> /div> /div> div classs-bench-object s-bench-object-text2> div classs-bench-object-container styletop:96px; left:299px; height:23px; width:420px; > div>div classid_e040ace58611363eada2b32b s-text2 s-components-text styletext-align:inherit; > span stylecolor:rgb(102, 102, 102); font-size:14px; font-weight:normal; font-family:microsoft yahei; display:block; line-height:inherit; width:420px; height:23px; idid_e040ace58611363eada2b32b>地址:浙江省杭州市富阳区/span>/div>/div> /div> /div> div classs-bench-object s-bench-object-text3> div classs-bench-object-container styletop:96px; left:835px; height:23px; width:43px; > div>div classs-text3 id_25b5f18cdb5a522e9253c00e s-components-text styletext-align:inherit; > span stylecolor:rgb(102, 102, 102); font-size:14px; font-weight:normal; font-family:microsoft yahei; display:block; line-height:inherit; width:43px; height:23px; idid_25b5f18cdb5a522e9253c00e>电话:/span>/div>/div> /div> /div> div classs-bench-object s-bench-object-text4> div classs-bench-object-container styletop:96px; left:880px; height:23px; width:173px; > div>div classs-text4 id_6b86d0d796daf1c062518f19 s-components-text styletext-align:inherit; > span stylecolor:rgb(204, 34, 34); font-size:14px; font-weight:bold; font-family:microsoft yahei; display:block; line-height:1.6; width:173px; height:23px; idid_6b86d0d796daf1c062518f19>联系方式扫描二维码或者直接提交信息(何老师)/span>/div>/div> /div> /div> div classs-bench-object s-bench-object-image2> div classs-bench-object-container styletop:112px; left:31px; > div>div classs-components-image s-image2 id_a3956973ab2005da44b440c2 style idid_a3956973ab2005da44b440c2> a styledisplay:block; opacity:1; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; width:138px; height:145px; target_self > img stylefake_width:0px; fake_height:0px; width:unset; height:unset; border-radius:0px; display:block; vertical-align:top; src/images/wx.png > /a>/div>/div> /div> /div> script>window.plugins.bench.init(id_17a8705b75d7abd0bb671266);/script> /div>/div> /div>/div> /div> !-- page:render:footer --> /div> !-- keepscript -->!-- keepscript --> div classpage-copyright> style> body > .slides { min-height: 100vh; } .page-copyright { background-color: #333; color: #F1F1F1; } .page-copyright a, .page-copyright a:hover { color: #F1F1F1; } /style> span> Copyright © a href/>杭州全音艺术培训学校/a> /span> span classa-icp> a relnofollow hrefhttps://beian.miit.gov.cn/ target_blank> 浙ICP备2025164951号-1/a> /span> span classa-gongan> a relnofollow target_blank hrefhttp://www.beian.gov.cn/portal/registerSystemInfo?recordcode430528197912158237> img srchttps://s2.d2scdn.com/static/img/gongan-beian.png>430528197912158237号/a> /span> span> a classr-page-footer-terms u-cursor>使用条款/a> /span> /div> div classs-legacy-qqkf stylez-index: 1000;> style>#divQQbox.float0831 .b-ul { padding-bottom: 0px; padding-left: 10px; padding-right: 14px; padding-top: 0px; margin: 0;}#divQQbox.float0831 .b-li-span { word-break: break-all; background-position: inherit !important; padding-left: 14px; display: block; font-family: 宋体; float: left; font-size: 12px; background-repeat: no-repeat; background-image: url(https://s2.d2scdn.com/2018/4/16/b1d3f229-d2e0-4673-b793-693e5d6b1e23/phon.png) !important; background-size: contain; height: 35px;}/style> /div> !-- keepscript -->script srchttps://s2.d2scdn.com/dfront/pkg/33fae7225075b2504cb0d09eadb97ec119cddf10/page-middleware.js typetext/javascript>/script>!-- keepscript -->/body>/html>!-- ASR_TIME0.044894 -->
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]