/* 未能缩小。正在返回未缩小的内容。 (1154,2329): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1154,5061): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1154,5173): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1154,5220): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1154,5271): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1154,5392): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-color' (1154,5422): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1154,5666): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size' (1154,6217): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1154,6331): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1154,7820): run-time error CSS1039: Token not allowed after unary operator: '-swiper-pagination-color' (1154,7850): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1154,9082): run-time error CSS1039: Token not allowed after unary operator: '-swiper-pagination-color' (1154,9112): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1154,9758): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1154,9817): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1154,10948): run-time error CSS1039: Token not allowed after unary operator: '-swiper-preloader-color' (1154,10977): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color' (1154,11075): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-' (1154,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; } .daiban_banner_wrap { width: 100%; height: 377px; background: linear-gradient(270deg, #dde4ee 0%, #e8edf3 30%, #e7ecf2 49%, #dfe6ee 100%); } .daiban_banner_wrap .w1200 { height: 100%; background: rgba(0, 0, 0, 0) url('../../Images2021/jiZhang/gs_banner_icon.png') no-repeat top right; background-size: auto 344px; padding-top: 72px ; position: relative; z-index: 2; } .daiban_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; } .daiban_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; } .daiban_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; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form { width: 100%; height: 100%; background: #FFFFFF; margin: 0 auto; } .daiban_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; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li.phone_reg_form_input input { cursor: pointer; } .daiban_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; } .daiban_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; } .daiban_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; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form > li .icon { fill: #B7B7B7; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .main_hd_btn { width: 134px; height: 52px; background: #FF6A00; } .daiban_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; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .main_hd_btn input:hover { background-color: #FF8719; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form input { width: 251px; border: 0; outline: none; display: block; } .daiban_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; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box > div { width: 50%; text-align: center; } .daiban_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; } .daiban_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; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .district-select-box > div ul { height: 250px; overflow: scroll; } .daiban_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; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .zz_type_wrap > div { width: 100%; } .daiban_banner_wrap .w1200 .advisory_from_wrap .main_hd_form_wrap .main_hd_form .zz_type_wrap * { width: 100% !important; } .daiban_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; } .daiban_banner_wrap .w1200 .hot_zz_a { width: 690px; position: relative; z-index: 5; font-size: 14px; font-weight: 400; color: #484848; line-height: 20px; margin-top: 21px; text-align: right; } .daiban_banner_wrap .w1200 .hot_zz_a a { font-size: 14px; font-weight: 400; color: #484848; color: #ff6a00; text-decoration: underline; } .daiban_banner_wrap .w1200 .title { font-size: 43px; margin-bottom: 7px; font-weight: 400; color: #000000; line-height: 61px; } .daiban_banner_wrap .w1200 span { font-size: 20px; font-weight: 400; color: #000000; line-height: 28px; } .daiban_banner_wrap .w1200 .video_btn { position: absolute; top: 44px; right: 46px; width: 60px; height: 60px; z-index: 8; background: rgba(0, 0, 0, 0); color: #fff; font-size: 12px; padding-top: 13px ; text-align: center; font-weight: 500; color: #FFFFFF; line-height: 17px; cursor: pointer; } .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-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; color: #fff; font-size: 23px; } .center_nav_wrap ul li i { font-size: 38px; color: rgba(255, 255, 255, 0.6); font-style: oblique; margin-right: 15px; font-family: Helvetica-BoldOblique, Helvetica, -apple-system, emoji !important; } .jizhang_type_wrap { background: #F5F8FB; } .jizhang_type_wrap .w1200 { padding: 47px 0 67px; } .jizhang_type_wrap .title { width: 100%; text-align: center; margin-bottom: 32px; font-size: 30px; font-weight: 400; color: #000000; line-height: 42px; } .jizhang_type_wrap .jizhang_type_content_wrap { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .jizhang_type_wrap .left { height: 443px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .jizhang_type_wrap .left li { width: 264px; margin-right: 18px; padding-top: 318px; background: url('../../Images2021/jiZhang/type_list_bg.png') no-repeat; background-size: 264px; position: relative; text-align: center; } .jizhang_type_wrap .left li p { font-size: 20px; font-weight: 600; color: #FF6A00; line-height: 28px; margin-bottom: 26px; } .jizhang_type_wrap .left li .btn { display: none; margin: 0 auto; width: 82px; height: 34px; background: linear-gradient(90deg, #fe700b 0%, #ff6a00 100%); border-radius: 21px; color: #fff; text-align: center; line-height: 34px; } .jizhang_type_wrap .left li .btn .icon { font-size: 18px; fill: #fff; } .jizhang_type_wrap .left li:hover .btn { display: block; } .jizhang_type_wrap .left li::after { content: ''; display: block; position: absolute; left: 50%; top: 97px; width: 240px; height: 178px; background: url('../../Images2021/jiZhang/dz_jzhyzxfa.png') no-repeat; margin-left: -120px; } .jizhang_type_wrap .left li:first-child::after { background-image: url('../../Images2021/jiZhang/dz_xgmnsr.png'); } .jizhang_type_wrap .left li:nth-child(2)::after { background-image: url('../../Images2021/jiZhang/dz_ybnsr.png'); } .jizhang_type_wrap .right { width: 377px; height: 420px; background: #FFFFFF; box-shadow: 0 3px 9px 4px rgba(0, 0, 0, 0.03); } .jizhang_type_wrap .right .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; } .jizhang_type_wrap .right .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); } .jizhang_type_wrap .right .clue_form { margin: 43px 39px 24px 38px; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input, .jizhang_type_wrap .right .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; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .input_icon_wrap, .jizhang_type_wrap .right .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; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input input, .jizhang_type_wrap .right .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; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input input { cursor: pointer; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input { position: relative; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input input { width: 216px; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .input_arrow_icon_wrap { display: inline-block; width: 27px; text-align: left; vertical-align: top; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .input_arrow_icon_wrap svg { width: 20px; height: 14px; fill: #999; vertical-align: -3px; } .jizhang_type_wrap .right .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; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .district-select-box > div { width: 50%; text-align: center; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .district-select-box > div strong { display: block; line-height: 40px; border-bottom: 1px solid #dedede; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .district-select-box > div strong.district-on { border-bottom: 1px solid #ed6d00; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .district-select-box > div ul { height: 250px; overflow: scroll; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .district-select-box > div ul li { line-height: 34px; cursor: pointer; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_input .district-select-box > div ul li.district-select-on { color: #ed6d00; } .jizhang_type_wrap .right .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; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_list_btn input:hover { background-color: #FF8719; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_custom { font-size: 14px; font-weight: 400; color: #606179; line-height: 20px; text-align: center; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_custom span { color: #007AFF; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_custom_li { height: 40px; overflow: hidden; } .jizhang_type_wrap .right .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; } .jizhang_type_wrap .right .clue_form .clue_form_list .clue_form_custom_li p { height: 40px; line-height: 40px; } .discounts_wrap { width: 100%; height: 637px; background: #FFFFFF; } .discounts_wrap .title { height: 134px; line-height: 134px; font-size: 30px; font-weight: 400; color: #000000; } .discounts_wrap .discounts_content { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; position: relative; } .discounts_wrap .discounts_content .zeng { position: absolute; } .discounts_wrap .discounts_content > div { width: 50%; } .discounts_wrap .discounts_content > div .content_title { width: 100%; height: 76px; background: #FBFBFE; border: 1px solid #E7EBF4; font-size: 25px; text-align: center; font-weight: 600; color: #000000; line-height: 76px; position: relative; z-index: 3; } .discounts_wrap .discounts_content > div ul { overflow: hidden; } .discounts_wrap .discounts_content > div ul li { float: left; font-size: 18px; margin-bottom: 10px; font-weight: 400; color: #333333; line-height: 25px; width: 217px; margin-right: 40px; padding-left: 25px; position: relative; } .discounts_wrap .discounts_content > div ul li .icon { position: absolute; font-size: 10px; top: 8px; left: 0; } .discounts_wrap .discounts_content .left_list_all_wrap { background: #FFFFFF; } .discounts_wrap .discounts_content .left_list_all_wrap .shadow_wrap { width: 600px; height: 313px; box-shadow: 0px 11px 26px 7px rgba(0, 0, 0, 0.04); padding-left: 81px; } .discounts_wrap .discounts_content .left_list_all_wrap .shadow_wrap span { padding-top: 38px; float: left; width: 217px; margin-right: 40px; font-size: 20px; font-weight: 600; color: #333333; } .discounts_wrap .discounts_content .left_list_all_wrap .shadow_wrap ul { float: left; margin-top: 26px; width: 100%; } .discounts_wrap .discounts_content .right_list_all_wrap { background: #F7FBFF; position: relative; z-index: 3; } .discounts_wrap .discounts_content .right_list_all_wrap ul { padding-left: 69px; padding-top: 38px; } .discounts_wrap .discounts_content .right_list_all_wrap ul li { width: 170px; } .discounts_wrap .discounts_content .right_list_all_wrap ul li:nth-child(2n+1) { width: 300px; margin-right: 20px; } .discounts_wrap .btn { width: 198px; height: 40px; background: #FF6A00; text-align: center; line-height: 40px; color: #fff; margin: 38px auto 0; font-size: 15px; } .discounts_wrap .btn:hover { background: #FF8719; } .vs_wrap { height: 593px; background: #F5F8FB; } .vs_wrap .w1200 { padding-top: 46px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .vs_wrap .w1200 > div { width: 52%; } .vs_wrap .w1200 > div .title { font-size: 30px; margin-bottom: 65px; font-weight: 400; color: #000000; line-height: 42px; text-align: center; } .vs_wrap .w1200 .left { width: 48%; padding-right: 79px; } .vs_wrap .w1200 .left .content .title_p { font-size: 20px; font-weight: 600; color: #000000; line-height: 28px; margin-bottom: 10px; } .vs_wrap .w1200 .left .content p { font-size: 16px; font-weight: 400; color: #7D8092; line-height: 27px; } .vs_wrap .w1200 .my_advantage { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; position: relative; } .vs_wrap .w1200 .my_advantage::after { content: ''; display: block; position: absolute; left: 50%; top: 260px; width: 30px; height: 70px; background: linear-gradient(180deg, rgba(245, 248, 251, 0) 0%, rgba(245, 248, 251, 0) 30%, 40%, #f5f8fb 100%); margin-left: -15px; } .vs_wrap .w1200 .my_advantage > div { width: 50%; height: 328px; padding-top: 4px; padding-left: 18px; } .vs_wrap .w1200 .my_advantage > div .title_l { font-size: 22px; font-family: PingFangSC-Semibold, PingFang SC; font-weight: 600; color: #7C7C7C; line-height: 30px; text-align: center; margin-bottom: 36px; } .vs_wrap .w1200 .my_advantage > div .vs_item_wrap { width: 263px; margin-bottom: 32px; height: 96px; background: #FFFFFF; border: 1px solid #EAEBEB; padding-top: 16px; text-align: center; } .vs_wrap .w1200 .my_advantage > div .vs_item_wrap span { display: block; width: 81px; padding: 0 16px; margin: 0 auto 9px; height: 29px; background: linear-gradient(270deg, #d4dbe3 0%, #a9b4c3 100%); line-height: 29px; color: #fff; } .vs_wrap .w1200 .my_advantage .my_left { padding-left: 26px; } .vs_wrap .w1200 .my_advantage .my_left .vs_item_wrap { position: relative; } .vs_wrap .w1200 .my_advantage .my_left .vs_item_wrap::after { content: ''; display: block; position: absolute; left: -32px; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: #A9B4C3; } .vs_wrap .w1200 .my_advantage .my_left .vs_item_wrap span { width: 149px; background: linear-gradient(270deg, #ff9144 0%, #ff6a00 100%); } .vs_wrap .w1200 .my_advantage .you_left { border-right: 2px dashed #AAB5C4 ; } .vs_wrap .w1200 .my_advantage .vs { display: block; left: 50%; margin-left: -20px; top: 165px; width: 42px; height: 36px; position: absolute; background: url('../../Images2021/jiZhang/dz_jlt.png') no-repeat -313px -46px; } .vs_wrap .btn { width: 256px; height: 40px; background: #FF6A00; text-align: center; line-height: 40px; color: #fff; margin: 28px auto 0; font-size: 15px; } .vs_wrap .btn:hover { background: #FF8719; } .need_material_wrap { height: 392px; background: #F5F8FB; width: 100%; padding-top: 46px; } .need_material_wrap .title { font-size: 30px; font-weight: 400; color: #000000; line-height: 42px; text-align: center; margin-bottom: 80px; } .need_material_wrap ul { width: 100%; height: 140px; padding: 0 70px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .need_material_wrap ul li { padding-top: 116px; font-size: 18px; font-family: PingFangSC-Semibold, PingFang SC; font-weight: 600; color: #393B58; line-height: 25px; background: url('../../Images2021/jiZhang/dz_jlt.png') no-repeat -7px -39px; } .need_material_wrap ul li:nth-child(2) { background-position: -142px -31px; } .need_material_wrap ul li:nth-child(3) { background-position: -22px -179px; } .need_material_wrap ul li:nth-child(4) { background-position: -126px -179px; } .jz_flow_wrap { height: 425px; width: 100%; padding-top: 46px; background: #FFFFFF; } .jz_flow_wrap .title { font-size: 30px; font-weight: 400; color: #000000; line-height: 42px; text-align: center; margin-bottom: 80px; } .jz_flow_wrap ul { height: 257px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .jz_flow_wrap ul li { width: 174px; height: 100%; position: relative; padding-top: 4px; text-align: center; } .jz_flow_wrap ul li i { margin: 0 auto; display: block; width: 70px; height: 70px; margin-bottom: 38px; background: url('../../Images2021/jiZhang/dz_jlt.png') no-repeat -318px -139px; line-height: 70px; font-size: 34px; font-weight: 400; color: #000000; position: relative; } .jz_flow_wrap ul li i::after { content: ''; display: block; position: absolute; left: 110px; top: 50%; width: 100px; height: 0; border: 1px dashed #979797; } .jz_flow_wrap ul li i::before { content: ''; display: block; position: absolute; left: 210px; top: 50%; width: 100px; height: 0; border: 1px dashed #979797; border-radius: 50%; width: 6px; height: 6px; margin-top: -2px; background: #9FA2A8; } .jz_flow_wrap ul li:nth-child(2) i { background-position: -434px -139px; } .jz_flow_wrap ul li:nth-child(3) i { background-position: -318px -236px; } .jz_flow_wrap ul li:nth-child(4) i { background-position: -431px -236px; } .jz_flow_wrap ul li:nth-child(5) i { background: #fff; width: 70px; height: 70px; border: 10px solid #FF6A00; border-radius: 50%; line-height: 50px; } .jz_flow_wrap ul li:nth-child(5) i::after { display: none; } .jz_flow_wrap ul li:nth-child(5) i::before { display: none; } .jz_flow_wrap ul li p { margin-bottom: 5px; font-size: 16px; font-family: PingFangSC-Semibold, PingFang SC; font-weight: 600; color: #000000; line-height: 22px; } .jz_flow_wrap ul li span { font-size: 14px; font-weight: 400; color: #999999; line-height: 20px; } .user_harvest_wrap { width: 100%; height: 553px; background: #FFFFFF; padding-top: 46px; } .user_harvest_wrap .title { font-size: 30px; font-weight: 400; color: #000000; line-height: 42px; text-align: center; margin-bottom: 45px; } .user_harvest_wrap .w1200 { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; height: 269px; margin-bottom: 61px; } .user_harvest_wrap .w1200 > div { width: 548px; height: 269px; background: #FFFFFF; box-shadow: 0px 11px 26px 7px rgba(0, 0, 0, 0.04); background: url('../../Images2021/jiZhang/dz_bg2.png') no-repeat right bottom; border-top: 3px solid #FF6A00; padding-top: 29px; } .user_harvest_wrap .w1200 > div .title_p { font-size: 24px; text-align: center; font-weight: 600; color: #000000; line-height: 33px; margin-bottom: 40px; } .user_harvest_wrap .w1200 > div ul { padding-left: 89px; overflow: hidden; } .user_harvest_wrap .w1200 > div ul li { float: left; width: 200px; margin-right: 20px; margin-bottom: 10px; } .user_harvest_wrap .w1200 > div ul li .icon { fill: #FF6A00; } .user_harvest_wrap .w1200 .right { background-image: url('../../Images2021/jiZhang/dz_bg1.png'); } .user_harvest_wrap .btn { margin: 38px auto 0; font-size: 15px; width: 256px; height: 40px; background: #FF6A00; text-align: center; line-height: 40px; color: #fff; } .user_harvest_wrap .btn:hover { background: #FF8719; } /** * 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}