/* 未能缩小。正在返回未缩小的内容。 (1250,2329): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1250,5061): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1250,5173): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1250,5220): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1250,5271): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1250,5392): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-color' (1250,5422): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1250,5666): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1250,6217): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1250,6331): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1250,7820): run-time error CSS1039: Token not allowed after unary operator: '-swiper-pagination-color' (1250,7850): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1250,9082): run-time error CSS1039: Token not allowed after unary operator: '-swiper-pagination-color' (1250,9112): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1250,9758): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1250,9817): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1250,10948): run-time error CSS1039: Token not allowed after unary operator: '-swiper-preloader-color' (1250,10977): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1250,11075): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1250,11134): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' */ /* flex 兼容处理 设置在弹性容器上的属性 */ /*flex-direction属性决定主轴的方向(即项目的排列方向)。*/ /*默认情况下,项目都排在一条线(又称"轴线")上。flex-wrap属性定义,如果一条轴线排不下,如何换行。*/ /*justify-content属性定义了项目在主轴上的对齐方式。*/ /*align-items属性定义项目在交叉轴上如何对齐。*/ /*align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。*/ /* 设置在弹性项目上的属性 */ /* flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。 以下是兼容样式写法示例,可根据需要修改属性值。 */ /*align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。*/ /* 以上是对系统的样式做兼容处理函数 以下是自定义公共函数 */ /*order属性定义项目的排列顺序。数值越小,排列越靠前,默认为0。以下是兼容样式写法示例,可根据需要修改属性值。*/ /*flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。以下是兼容样式写法示例,可根据需要修改属性值。*/ /*flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。以下是兼容样式写法示例,可根据需要修改属性值。*/ .position_center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); } /* 自有版面常用类 */ /* 资质管家首页获取用户填写的地址和手机号板块 */ /* banner */ .zzdb_top_section_nav_wrap { height: 124px; width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 25px 0; } .zzdb_top_section_nav_wrap a { width: 362px; height: 76px; background: url('../../Images2021/home/bg1.png') no-repeat; color: #333; font-size: 18px; padding-left: 137px; line-height: 76px; position: relative; } .zzdb_top_section_nav_wrap a::after { content: ''; display: block; position: absolute; left: 83px; top: 18px; width: 38px; height: 38px; background: url('../../Images2021/home/jlt.png') no-repeat -20px -19px; } .zzdb_top_section_nav_wrap a:nth-child(2) { background: url('../../Images2021/home/bg2.png') no-repeat; } .zzdb_top_section_nav_wrap a:nth-child(2)::after { background: url('../../Images2021/home/jlt.png') no-repeat -18px -86px; } .zzdb_top_section_nav_wrap a:nth-child(3) { background: url('../../Images2021/home/bg3.png') no-repeat; } .zzdb_top_section_nav_wrap a:nth-child(3)::after { background: url('../../Images2021/home/jlt.png') no-repeat -18px -147px; } .zzdb_top_section_nav_wrap a:nth-child(4) { background: url('../../Images2021/home/bg4.png') no-repeat; } .zzdb_top_section_nav_wrap a:nth-child(4)::after { background: url('../../Images2021/home/jlt.png') no-repeat -17px -206px; } .zzdb_top_section_nav_wrap a:hover { background: url('../../Images2021/home/bg_hover.png') no-repeat; color: #fff; } .zzdb_top_section_nav_wrap a:hover::after { background-position-x: -85px; } @-moz-keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } @-o-keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } @-webkit-keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } @keyframes widthScroll { 0% { transform: translateX(0); -ms-transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -o-transform: translateX(0); } 100% { transform: translateX(-1600px); -ms-transform: translateX(-1600px); -moz-transform: translateX(-1600px); -webkit-transform: translateX(-1600px); -o-transform: translateX(-1600px); } } body { width: 100%; overflow-x: hidden; } .m_wrap { width: 7.1rem; background: #FFFFFF; border-radius: 0.18rem; margin: .2rem auto; } .m_wrap .title { font-size: 0.34rem; font-weight: 600; color: #333333; line-height: 0.48rem; } html { width: 100%; overflow-x: hidden; } body { width: 100%; overflow-x: hidden; } .btn { cursor: pointer; } .w1200 { width: 1200px; margin: 0 auto; } .banner_wrap { width: 100%; height: 377px; background: linear-gradient(270deg, #dde4ee 0%, #e8edf3 30%, #e7ecf2 49%, #dfe6ee 100%); } .banner_wrap .w1200 { height: 100%; position: relative; background: rgba(0, 0, 0, 0) url('../../Images2021/business/shuiChou/shuichou_banner_bg.png') no-repeat top right; background-size: auto 344px; padding-top: 72px ; z-index: 2; } .banner_wrap .w1200 .banner_bg { width: 100%; min-width: 1920px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); -ms-transform: translateX(-50%); -moz-transform: translateX(-50%); -webkit-transform: translateX(-50%); -o-transform: translateX(-50%); height: 100%; background: url('../../Images2021/daiBan/zzdb_banner_bgjn.png') no-repeat; background-size: 100%; z-index: -1; } .banner_wrap .w1200 .advisory_from_wrap { margin-top: 88px; width: 766px; height: 52px; background: #FFFFFF; box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.14); width: 690px; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .input_icon_wrap { display: inline-block; width: 56px; text-align: center; position: relative; top: -6px; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form { width: 100%; height: 100%; background: #FFFFFF; margin: 0 auto; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li { box-sizing: border-box; float: left; width: 316px; line-height: 83px; border-right: 1px solid #e4e4e4; position: relative; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li.phone_reg_form_input input { cursor: pointer; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li input { width: 100%; height: 52px; line-height: 52px; display: block; padding-left: 45px; font-size: 16px; font-weight: 600; color: #484848; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li .input_icon_wrap { font-size: 23px; position: absolute; top: 15px; line-height: 52px; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li .input_arrow_icon_wrap { position: absolute; top: 19px; right: 23px; height: 16px; width: 15px; font-size: 16px; line-height: 16px; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li .icon { fill: #B7B7B7; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .main_hd_btn { width: 134px; height: 52px; background: #FF6A00; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .main_hd_btn input { width: 100%; height: 100%; padding-left: 0; text-align: center; background: #FF6A00; line-height: 53px; font-size: 16px; color: #fff; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .main_hd_btn input:hover { background-color: #FF8719; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form input { width: 251px; border: 0; outline: none; display: block; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box { background-color: #fff; position: absolute; left: -1px; right: -1px; border: 1px solid #e4e4e4; font-size: 14px; transition: all .3s; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box > div { width: 50%; text-align: center; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box > div strong.district-on { border-bottom: 1px solid #ed6d00; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box > div strong { display: block; line-height: 40px; border-bottom: 1px solid #dedede; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box > div ul { height: 250px; overflow: scroll; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box > div ul li { line-height: 34px; text-align: center; cursor: pointer; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .zz_type_wrap > div { width: 100%; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .zz_type_wrap * { width: 100% !important; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_btn input { line-height: 52px; padding: 0; } .banner_wrap .w1200 .advisory_from_wrap .main_hd_btn::after { content: ''; display: block; position: absolute; left: -14px; top: -25px; width: 14px; height: 220%; background: #e5eaf1; } .banner_wrap .w1200 .title { font-size: 43px; margin-bottom: 7px; font-weight: 400; color: #000000; line-height: 61px; } .banner_wrap .w1200 span { font-size: 20px; font-weight: 400; color: #000000; line-height: 28px; } .banner_wrap .w1200 span i { color: #FF6A00; font-weight: 700; } .center_nav_wrap { width: 100%; height: 76px; background: #FF6A00; } .center_nav_wrap ul { height: 76px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .center_nav_wrap ul li { width: 25%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .center_nav_wrap ul li:hover { background: rgba(255, 255, 255, 0.15); } .center_nav_wrap ul li > i { height: 38px; width: 38px; display: block; background: url('../../Images2021/business/shuiChou/sprite.png') no-repeat -18px -16px; margin-right: 23px; text-align: left; } .center_nav_wrap ul li div { height: 53px; text-align: center; } .center_nav_wrap ul li div > span { display: block; color: #FFFFFF; text-align: left; font-size: 23px; font-weight: 600; line-height: 32px; } .center_nav_wrap ul li div i { display: block; font-size: 12px; letter-spacing: 2px; font-weight: 400; color: #FFFFFF; line-height: 17px; text-align: left; } .center_nav_wrap ul li:nth-child(2) > i { background-position: -93px -14px; } .center_nav_wrap ul li:nth-child(3) > i { background-position: -171px -14px; } .center_nav_wrap ul li:nth-child(4) > i { background-position: -252px -15px; } .difficulty_list_wrap { background: #F5F8FB; padding-top: 46px; padding-bottom: 70px; } .difficulty_list_wrap .w1200 .title { font-size: 30px; font-weight: 400; text-align: center; color: #000000; line-height: 42px; margin-bottom: 72px; } .difficulty_list_wrap .w1200 .difficulty_list { display: -webkit-box; display: -ms-flexbox; display: flex; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item { width: 25%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: relative; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_icon_wrap { width: 88px; height: 89px; background: #F2F2F2; box-shadow: 0px 12px 37px 0px rgba(0, 0, 0, 0.11); border-radius: 11px; border: 3px solid #FFFFFF; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_icon_wrap svg { width: 37px; height: 37px; fill: #ff6a00; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_title { font-size: 20px; font-weight: 600; color: #393B58; line-height: 28px; margin: 58px 0 21px 0; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_desc { text-align: center; font-size: 16px; font-weight: 400; color: #5C6070; line-height: 22px; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item:hover .difficulty_item_icon_wrap { background: linear-gradient(180deg, #fe6f51 0%, #f77e20 100%); box-shadow: 0px 12px 37px 0px rgba(237, 36, 0, 0.2); } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item:hover .difficulty_item_icon_wrap svg { fill: #ffffff; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_line { width: 148px; height: 21px; overflow: hidden; position: absolute; right: -74px; top: 20px; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_line:after { content: ''; display: block; width: 270px; height: 270px; margin-left: -63px; border: 2px dashed #FCB398; border-radius: 50%; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_line.line_down { top: 50px; } .difficulty_list_wrap .w1200 .difficulty_list .difficulty_item .difficulty_item_line.line_down:after { content: ''; display: block; width: 270px; height: 270px; margin-left: -63px; margin-top: -253px; border: 2px dashed #FCB398; border-radius: 50%; } .recommended_solution_wrap { width: 100%; background: #fff; } .recommended_solution_wrap .w1200 { padding: 46px 0 68px 0; } .recommended_solution_wrap .title { text-align: center; font-size: 30px; margin-bottom: 93px; font-weight: 400; color: #000000; line-height: 42px; } .recommended_solution_wrap ul { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; display: -webkit-box; display: -ms-flexbox; display: flex; } .recommended_solution_wrap ul li.recommended_solution_item { width: 360px; height: 455px; background: #FFFFFF; box-shadow: 0px 11px 26px 7px rgba(0, 0, 0, 0.04); background: url("../../Images2021/business/shuiChou/recommended_solution_item_bg1.png") no-repeat left 0 top 113px; background-size: 100% auto; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .recommended_solution_wrap ul li.recommended_solution_item .recommended_item_icon_wrap { width: 165px; height: 208px; margin-top: -59px; background: url("../../Images2021/business/shuiChou/recommended_solution_item_top1.png") no-repeat; background-size: 100% 100%; } .recommended_solution_wrap ul li.recommended_solution_item .recommended_item_title { font-size: 22px; font-weight: 400; color: #000000; line-height: 30px; } .recommended_solution_wrap ul li.recommended_solution_item .recommended_item_content { height: 106px; padding-top: 18px; font-size: 16px; font-weight: 400; color: #999999; line-height: 22px; } .recommended_solution_wrap ul li.recommended_solution_item .recommended_item_desc { height: 83px; font-size: 18px; font-weight: 400; color: #FF6A00; line-height: 25px; } .recommended_solution_wrap ul li.recommended_solution_item .btn { width: 200px; border-radius: 28px; background: #FF6A00; text-align: center; line-height: 55px; color: #fff; font-size: 16px; font-weight: 400; } .recommended_solution_wrap ul li.recommended_solution_item .btn svg { width: 20px; height: 20px; vertical-align: -5px; margin-right: 5px; } .recommended_solution_wrap ul li.recommended_solution_item .btn:hover { background: #FF8719; } .recommended_solution_wrap ul li.recommended_solution_item:last-child { background: url("../../Images2021/business/shuiChou/recommended_solution_item_bg3.png") no-repeat left 0 top 113px; background-size: 100% auto; } .recommended_solution_wrap ul li.recommended_solution_item:last-child .recommended_item_icon_wrap { background: url("../../Images2021/business/shuiChou/recommended_solution_item_top3.png") no-repeat; background-size: 100% 100%; } .recommended_solution_wrap ul li.recommended_solution_item.center { width: 439px; background: url("../../Images2021/business/shuiChou/recommended_solution_item_bg2.png") no-repeat left 0 top 113px; background-size: 100% auto; } .recommended_solution_wrap ul li.recommended_solution_item.center .recommended_item_icon_wrap { background: url("../../Images2021/business/shuiChou/recommended_solution_item_top2.png") no-repeat; background-size: 100% 100%; } .recommended_solution_wrap ul li.recommended_solution_item:before { content: ''; display: block; border: 1px solid #FF6A00; border-bottom: none; width: 100%; height: 3px; } .operator-schema_list_wrap { background: #F5F8FB; padding-top: 46px; padding-bottom: 41px; } .operator-schema_list_wrap .w1200 .title { font-size: 30px; font-weight: 400; text-align: center; color: #000000; line-height: 42px; margin-bottom: 53px; } .operator-schema_list_wrap .w1200 .operator-schema_list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .operator-schema_list_wrap .w1200 .operator-schema_list .operator-schema_item { margin-top: 24px; width: 377px; height: 82px; background: #FFFFFF; border: 1px solid #FEE5DA; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .operator-schema_list_wrap .w1200 .operator-schema_list .operator-schema_item .item_icon_wrap { width: 45px; height: 53px; background: url("../../Images2021/business/shuiChou/sprite.png") no-repeat left -336px top -11px; margin-left: 82px; margin-right: 30px; } .operator-schema_list_wrap .w1200 .operator-schema_list .operator-schema_item .item_icon_wrap svg { width: 21px; height: 21px; margin: 13px 0 0 13px; fill: #FF6A00; } .operator-schema_list_wrap .w1200 .operator-schema_list .operator-schema_item:nth-child(5) .item_icon_wrap svg { margin: 14px 0 0 13px; } .operator-schema_list_wrap .w1200 .operator-schema_list .operator-schema_item:hover { background: linear-gradient(270deg, #f77e22 0%, #fe7050 100%); border: 1px solid #FFFFFF; color: #fff; } .operator-schema_list_wrap .w1200 .operator-schema_list .operator-schema_item:hover .item_icon_wrap { background: url("../../Images2021/business/shuiChou/sprite.png") no-repeat left -354px top -77px; } .operator-schema_list_wrap .w1200 .operator-schema_list .operator-schema_item:hover .item_icon_wrap svg { fill: #fff; } .operator-schema_list_wrap .w1200 .btn { width: 283px; background: #FF6A00; font-size: 15px; font-weight: 400; color: #FFFFFF; line-height: 40px; text-align: center; margin: 64px auto 0; } .operator-schema_list_wrap .w1200 .btn:hover { background-color: #FF8719; } .advantage_pk_wrap { padding: 46px 0; background-color: #fff; } .advantage_pk_wrap .w1200 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; text-align: center; } .advantage_pk_wrap .w1200 .title { font-size: 30px; font-weight: 400; color: #000000; line-height: 42px; } .advantage_pk_wrap .w1200 .subtitle { font-size: 16px; font-weight: 400; color: #5C6070; line-height: 22px; margin: 25px 0 17px 0; } .advantage_pk_wrap .w1200 .pk_content_wrap { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table { width: 542px; height: 273px; background: #F4F8FF; border: 1px solid #E4EAF6; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table thead th, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table thead th { background: linear-gradient(90deg, #3360ed 0%, #3fa4f1 100%); font-size: 25px; font-weight: 600; color: #FFFFFF; line-height: 76px; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr:last-child td, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr:last-child td { border-bottom: none; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr:first-child td, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr:first-child td { font-size: 16px; font-weight: 600; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr td, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr td { font-size: 14px; font-weight: 400; color: #000000; line-height: 39px; border-right: 1px solid #E4EAF6; border-bottom: 1px solid #E4EAF6; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr td:last-child, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr td:last-child { border-right: none; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr td:first-child, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr td:first-child { width: 181px; text-align: left; padding-left: 55px; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr td i, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr td i { font-weight: 600; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr td i.orange, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr td i.orange { color: #FF6A00; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr td i.num, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr td i.num { font-size: 16px; font-family: DINAlternate-Bold, DINAlternate, PingFangSC-Regular, 'PingFang SC', Microsoft Yahei, arial, verdana, helvetica, 'HanHei SC', STHeitiSC-Light, sans-serif; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_before_wrap table tbody tr td i.units, .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table tbody tr td i.units { font-size: 12px; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table { background: #FEF9FA; } .advantage_pk_wrap .w1200 .pk_content_wrap .schema_after_wrap table thead th { background: linear-gradient(270deg, #f54027 0%, #fd7543 100%); } .advantage_pk_wrap .w1200 .pk_content_wrap .vs { width: 66px; height: 55px; display: block; margin-top: 137px; background: url('../../Images2021/business/gs_jlt.png') no-repeat -725px -13px; } .advantage_pk_wrap .w1200 .schema-data_compare { margin: 25px 0 66px 0; font-size: 16px; font-weight: 400; color: #5C6070; line-height: 22px; } .advantage_pk_wrap .w1200 .schema-data_compare i { font-size: 18px; font-weight: bold; color: #FF6A00; line-height: 21px; } .advantage_pk_wrap .w1200 .schema-data_compare i.small { font-size: 12px; font-weight: 400; color: #FF6A00; line-height: 17px; } .advantage_pk_wrap .w1200 .schema-data_compare .schema-data_compare_less, .advantage_pk_wrap .w1200 .schema-data_compare .schema-data_compare_ratio { margin-left: 44px; } .advantage_pk_wrap .w1200 .btn { width: 253px; background: #FF6A00; font-size: 15px; font-weight: 400; color: #FFFFFF; line-height: 40px; margin: 0 auto; text-align: center; } .advantage_pk_wrap .w1200 .btn:hover { background-color: #FF8719; } .service_flow_wrap { padding: 46px 0 71px 0; background: #F5F8FB; } .service_flow_wrap .title { font-size: 30px; font-weight: 400; color: #000000; line-height: 42px; text-align: center; margin-bottom: 80px; } .service_flow_wrap ul { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; position: relative; } .service_flow_wrap ul:after { content: ''; display: block; width: 1032px; height: 2px; position: absolute; left: 103px; top: 40px; background-color: #FF6A00; } .service_flow_wrap ul li { width: 174px; text-align: center; } .service_flow_wrap ul li i { display: block; position: relative; z-index: 1; width: 79px; height: 79px; padding: 19px; border-radius: 50%; box-shadow: 0px 4px 9px 4px rgba(36, 105, 244, 0.05); margin: 0 0 33px 48px; background: #ffffff url('../../Images2021/business/shuiChou/sprite.png') no-repeat 10px -60px; } .service_flow_wrap ul li:nth-child(2) i { background-position: -63px -59px; } .service_flow_wrap ul li:nth-child(3) i { background-position: -134px -59px; } .service_flow_wrap ul li:nth-child(4) i { background-position: -208px -57px; } .service_flow_wrap ul li:nth-child(5) i { background-position: -278px -57px; } .service_flow_wrap ul li p { margin-bottom: 5px; font-size: 16px; font-weight: 600; color: #000000; line-height: 22px; } .service_flow_wrap ul li span { font-size: 14px; font-weight: 400; color: #999999; line-height: 20px; } .other_service_wrap { background: #fff; padding: 46px 0 60px 0; } .other_service_wrap .w1200 .title { text-align: center; font-size: 30px; font-weight: 400; color: #000000; line-height: 42px; margin-bottom: 55px; } .other_service_wrap .w1200 .other_service_content_wrap { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap { width: 781px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_nav_list { display: -webkit-box; display: -ms-flexbox; display: flex; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_nav_list li { width: 210px; text-align: center; padding: 20px 0 6px 0; font-size: 14px; font-weight: 400; line-height: 20px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_nav_list li i { width: 48px; height: 48px; margin: 0 auto; display: block; margin-bottom: 13px; background: url("../../Images2021/business/shuiChou/sprite.png") no-repeat left -12px top -150px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_nav_list li.active { border-bottom: 2px solid #FF6A00; color: #FF6A00; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_nav_list li:nth-child(2) i { background-position: left -101px top -150px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_nav_list li:last-child i { background-position: left -185px top -150px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content { width: 781px; height: 303px; margin-top: 17px; background: #FBFBFE; border: 1px solid #E7EBF4; padding: 33px 27px; position: relative; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content .other_service_list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content .other_service_list .other_service_item { width: 33%; font-size: 18px; font-weight: 500; color: #515F7B; line-height: 25px; margin-bottom: 24px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content .other_service_list .other_service_item svg { width: 23px; height: 23px; margin-right: 15px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content .other_service_list .other_service_item i { display: block; width: 37px; margin-left: 3px; background: #FA705C; text-align: center; font-size: 13px; font-weight: 600; color: #FFFFFF; line-height: 18px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content .btn { width: 154px; background: #FF6A00; text-align: center; line-height: 55px; color: #fff; font-size: 16px; font-weight: 400; position: absolute; left: 27px; bottom: 27px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content .btn svg { width: 20px; height: 20px; vertical-align: -5px; margin-right: 5px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_list_wrap .other_service_list_content .btn:hover { background: #FF8719; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form { width: 377px; height: 420px; background: #FFFFFF; box-shadow: 0 3px 9px 4px rgba(0, 0, 0, 0.03); height: auto; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form_title { height: 65px; width: 100%; background: linear-gradient(90deg, #ffac6e, #ff5b33); box-shadow: 0 2px 10px 0 rgba(232, 120, 79, 0.62), inset -1px -1px 0 0 #cc5907, inset 1px 1px 0 0 #ffb988; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form_title > p { font-size: 19px; font-weight: 500; color: #FFFFFF; text-align: center; line-height: 65px; text-shadow: 2px 3px 4px rgba(131, 54, 5, 0.26), -2px -3px 4px rgba(255, 237, 225, 0.26); } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form { margin: 43px 39px 24px 38px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input, .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_phone { box-sizing: border-box; width: 304px; height: 57px; line-height: 57px; margin-top: 30px; background: #F5F5F5; border: 1px solid #D4D4D4; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .input_icon_wrap, .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_phone .input_icon_wrap { display: inline-block; width: 48px; text-align: center; height: 20px; fill: #999; vertical-align: -5px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input input, .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_phone input { outline: none; height: 34px; font-size: 14px; width: 220px; border: none; background-color: #f5f5f5; color: #333; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input input { cursor: pointer; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input { position: relative; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input input { width: 216px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .input_arrow_icon_wrap { display: inline-block; width: 27px; text-align: left; vertical-align: top; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .input_arrow_icon_wrap svg { width: 20px; height: 14px; fill: #999; vertical-align: -3px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .district-select-box { background-color: #fff; position: absolute; z-index: 1; left: -1px; right: -1px; margin-top: -2px; border: 1px solid #e4e4e4; font-size: 14px; transition: all .3s; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .district-select-box > div { width: 50%; text-align: center; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .district-select-box > div strong { display: block; line-height: 40px; border-bottom: 1px solid #dedede; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .district-select-box > div strong.district-on { border-bottom: 1px solid #ed6d00; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .district-select-box > div ul { height: 250px; overflow: scroll; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .district-select-box > div ul li { line-height: 34px; cursor: pointer; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_input .district-select-box > div ul li.district-select-on { color: #ed6d00; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_btn input { margin: 55px auto 14px auto; width: 304px; height: 55px; background: #ED6D00; line-height: 55px; text-align: center; font-size: 20px; font-weight: 400; color: #FFFFFF; border: none; outline-color: #ed9345; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_list_btn input:hover { background-color: #FF8719; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_custom { font-size: 14px; font-weight: 400; color: #606179; line-height: 20px; text-align: center; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_custom span { color: #007AFF; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_custom_li { height: 40px; overflow: hidden; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_custom_li div { -webkit-animation: heightScrollPC 7s linear 0s infinite normal; -moz-animation: heightScrollPC 7s linear 0s infinite normal; -o-animation: heightScrollPC 7s linear 0s infinite normal; animation: heightScrollPC 7s linear 0s infinite normal; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .clue_form_list .clue_form_custom_li p { height: 40px; line-height: 40px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form { margin-top: 18px; } .other_service_wrap .w1200 .other_service_content_wrap .other_service_form .clue_form .tips { font-size: 18px; font-weight: 400; color: #FF6A00; line-height: 25px; text-align: center; margin-bottom: -7px; } /** * Swiper 6.4.15 * Most modern mobile touch slider and framework with hardware accelerated transitions * https://swiperjs.com * * Copyright 2014-2021 Vladimir Kharlampidi * * Released under the MIT License * * Released on: February 18, 2021 */ @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}