/* 未能缩小。正在返回未缩小的内容。
(2305,2329): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2305,5061): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2305,5173): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size'
(2305,5220): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size'
(2305,5271): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size'
(2305,5392): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-color'
(2305,5422): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color'
(2305,5666): run-time error CSS1039: Token not allowed after unary operator: '-swiper-navigation-size'
(2305,6217): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2305,6331): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2305,7820): run-time error CSS1039: Token not allowed after unary operator: '-swiper-pagination-color'
(2305,7850): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color'
(2305,9082): run-time error CSS1039: Token not allowed after unary operator: '-swiper-pagination-color'
(2305,9112): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color'
(2305,9758): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2305,9817): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2305,10948): run-time error CSS1039: Token not allowed after unary operator: '-swiper-preloader-color'
(2305,10977): run-time error CSS1039: Token not allowed after unary operator: '-swiper-theme-color'
(2305,11075): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2305,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;
}
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  overflow-x: hidden;
}
.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/daiBan/zzdb_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: 779px;
}
.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: #e7ecf2;
}
.daiban_banner_wrap .w1200 .hot_zz_a {
  font-size: 14px;
  font-weight: 400;
  color: #484848;
  line-height: 20px;
  margin-top: 21px;
}
.daiban_banner_wrap .w1200 .hot_zz_a a {
  font-size: 14px;
  font-weight: 400;
  color: #484848;
}
.daiban_banner_wrap .w1200 .hot_zz_a a:hover {
  color: #ff6a00;
}
.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;
}
@-moz-keyframes go_bg_wrap {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  49% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
  100% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
}
@-o-keyframes go_bg_wrap {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  49% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
  100% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
}
@-webkit-keyframes go_bg_wrap {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  49% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
  100% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
}
@keyframes go_bg_wrap {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  49% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
  100% {
    background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
    background-size: 90px;
  }
}
@-moz-keyframes go {
  0% {
    transform: scale(1.1);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@-o-keyframes go {
  0% {
    transform: scale(1.1);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes go {
  0% {
    transform: scale(1.1);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes go {
  0% {
    transform: scale(1.1);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.db_img_bg_go {
  width: 100%;
  height: 199px;
  background: #F5F8FB;
  padding-top: 26px;
}
.db_img_bg_go .w1200 {
  position: relative;
  height: 145px;
  background: url('../../Images2021/daiBan/zzdb_bm.png') no-repeat center center;
  background-size: 1200 auto;
  cursor: pointer;
}
.db_img_bg_go .w1200 .ani_wrap {
  position: absolute;
  width: 84px;
  height: 84px;
  top: 31px;
  right: 33px;
  background: url(../../Images2021/daiBan/zzdb_yuan.png) no-repeat -3px -3px;
  background-size: 90px;
  -webkit-animation: go_bg_wrap 0.5s linear 0s infinite normal;
  -moz-animation: go_bg_wrap 0.5s linear 0s infinite normal;
  -o-animation: go_bg_wrap 0.5s linear 0s infinite normal;
  animation: go_bg_wrap 0.5s linear 0s infinite normal;
}
.db_img_bg_go .w1200 .ani_wrap .text_wrap {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../../Images2021/daiBan/GO.png') no-repeat center center;
  -webkit-animation: go 1s linear 0s infinite normal;
  -moz-animation: go 1s linear 0s infinite normal;
  -o-animation: go 1s linear 0s infinite normal;
  animation: go 1s linear 0s infinite normal;
}
.db_jwfw_wrap {
  width: 100%;
  background: #fff;
  height: 757px;
}
.db_jwfw_wrap .w1200 {
  height: 757px;
  padding-top: 46px;
  cursor: pointer;
}
.db_jwfw_wrap .w1200 .title {
  text-align: center;
}
.db_jwfw_wrap .w1200 .title p {
  font-size: 30px;
  font-weight: 400;
  color: #000000;
  line-height: 42px;
}
.db_jwfw_wrap .w1200 .title span {
  font-size: 17px;
  margin-top: 7px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}
.db_jwfw_wrap .db_jwfw_content_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 509px;
  margin-top: 19px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap {
  width: 794px;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #E7EBF4;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list {
  width: 100%;
  height: 143px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list .on {
  color: #fff;
  background: #ff6a00;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list .on::after {
  background-position-y: -102px !important;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li {
  width: 25%;
  height: 100%;
  border-left: 1px solid #E7EBF4;
  padding: 87px 0 0 28px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #515F7B;
  line-height: 28px;
  cursor: pointer;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li::after {
  content: '';
  display: block;
  position: absolute;
  left: 25px;
  top: 39px;
  width: 39px;
  height: 39px;
  background: url('../../Images2021/daiBan/db_jlt.png') no-repeat -371px -41px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:first-child {
  border-left: 0;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:first-child::after {
  background-position: -137px -41px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:nth-child(2) {
  border-left: 1px solid #E7EBF4;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:nth-child(2)::after {
  background-position: -213px -41px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:nth-child(3) {
  border-left: 1px solid #E7EBF4;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:nth-child(3)::after {
  background-position: -293px -41px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:hover {
  color: #fff;
  background: #ff6a00;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_nav_list li:hover::after {
  background-position-y: -102px !important;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content {
  width: 100%;
  height: 364px;
  border-top: 1px solid #E7EBF4;
  background: #FBFBFE;
  position: relative;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zcb_wrap,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .sjzz_wrap,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .qtzz_wrap,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zycb_wrap {
  width: 100%;
  height: 299px;
  padding: 30px 0 0 26px;
  overflow: hidden;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zcb_wrap .on,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .sjzz_wrap .on,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .qtzz_wrap .on,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zycb_wrap .on {
  color: #ff6a00;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zcb_wrap li,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .sjzz_wrap li,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .qtzz_wrap li,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zycb_wrap li {
  width: 33%;
  height: 25px;
  line-height: 25px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
  color: #515F7B;
  float: left;
  cursor: pointer;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zcb_wrap li .icon,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .sjzz_wrap li .icon,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .qtzz_wrap li .icon,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zycb_wrap li .icon {
  fill: #b2bac8;
  font-size: 18px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zcb_wrap li:hover,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .sjzz_wrap li:hover,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .qtzz_wrap li:hover,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zycb_wrap li:hover {
  color: #ff6a00;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zcb_wrap li:hover .icon,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .sjzz_wrap li:hover .icon,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .qtzz_wrap li:hover .icon,
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zycb_wrap li:hover .icon {
  fill: #ff6a00;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zx_2-2_btn_wrap {
  font-size: 20px;
  text-align: right;
  font-weight: 600;
  color: #515F7B;
  line-height: 28px;
  right: 56px;
  position: absolute;
  bottom: 43px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zx_2-2_btn_wrap span {
  cursor: pointer;
  color: #ff6a00;
}
.db_jwfw_wrap .db_jwfw_content_wrap .zz_list_wrap .zz_list_content .zx_2-2_btn_wrap span .icon {
  fill: #ff6a00;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap {
  width: 377px;
  height: 509px;
  background: #FFFFFF;
  box-shadow: 0px 3px 9px 4px rgba(0, 0, 0, 0.03);
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .title {
  height: 61px;
  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;
  font-weight: 500;
  color: #fff;
  text-shadow: 2px 3px 4px rgba(131, 54, 5, 0.26), -2px -3px 4px #ffede1;
  text-align: center;
  font-size: 19px;
  line-height: 61px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .jsq_user_opt {
  margin-top: 44px;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  color: #515F7B;
  line-height: 28px;
  margin-bottom: 46px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .text {
  position: relative;
  text-align: center;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
  color: #333333;
  line-height: 20px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .text::after,
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .text::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 104px;
  height: 0;
  border: 1px dashed #EAEAEA;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .text::after {
  left: 30px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .text::before {
  left: 240px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .price {
  color: #ff6a00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 91px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .price span {
  font-size: 28px;
  font-weight: bold;
  line-height: 15px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .price i {
  font-size: 14px;
  font-weight: 600;
  color: #ff6a00;
  line-height: 25px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .db_go_details {
  display: block;
  margin: 91px auto 36px;
  width: 6em;
  font-size: 18px;
  text-decoration: underline;
  font-weight: 600;
  color: #ff6a00;
  line-height: 25px;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .btn {
  width: 319px;
  height: 55px;
  background: #ff6a00;
  margin: 0 auto;
  line-height: 55px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}
.db_jwfw_wrap .db_jwfw_content_wrap .jsq_wrap .btn:hover {
  background-color: #ff8719;
}
.db_jwzz_wrap {
  width: 100%;
  height: 642px;
  background: #F5F8FB;
  padding-top: 48px;
}
.db_jwzz_wrap .title {
  font-size: 30px;
  font-weight: 400;
  color: #000000;
  line-height: 42px;
  text-align: center;
  margin-bottom: 15px;
}
.db_jwzz_wrap .w1200 {
  height: 500px;
}
.db_jwzz_wrap .w1200 .nav {
  width: 100%;
  height: 64px;
  border-bottom: 4px solid rgba(151, 151, 151, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.db_jwzz_wrap .w1200 .nav .swiper-pagination-bullet-active,
.db_jwzz_wrap .w1200 .nav .swiper-active-switch {
  position: relative;
  color: #FF6A00;
}
.db_jwzz_wrap .w1200 .nav .swiper-pagination-bullet-active::after,
.db_jwzz_wrap .w1200 .nav .swiper-active-switch::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 61px;
  width: 100%;
  height: 4px;
  background: #ff6a00;
}
.db_jwzz_wrap .w1200 .nav .swiper-pagination-bullet,
.db_jwzz_wrap .w1200 .nav .swiper-pagination-switch {
  cursor: pointer;
  width: 25%;
  line-height: 62px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap {
  width: 100%;
  height: 470px;
  overflow: hidden;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper_slide {
  width: 100%;
  height: 100%;
  padding-top: 16px;
  padding-left: 27px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper_slide .bg {
  width: 495px;
  height: 419px;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper_slide ul {
  padding-top: 80px;
  width: 459px;
  height: 419px;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper_slide ul li {
  line-height: 25px;
  color: #666;
  margin-bottom: 24px;
  font-size: 18px;
  padding-left: 17px;
  position: relative;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper_slide ul li .icon {
  font-size: 10px;
  line-height: 25px;
  position: absolute;
  top: 7px;
  left: 0;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper_slide .btn {
  cursor: pointer;
  width: 190px;
  height: 40px;
  background: #ff6a00;
  left: 741px;
  top: 346px;
  color: #fff;
  text-align: center;
  position: absolute;
  font-size: 15px;
  line-height: 40px;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper_slide .btn:hover {
  background: #ff8719;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper0 .bg {
  background: url('../../Images2021/daiBan/zzdb_pinpaiyoushi.png') no-repeat center center;
  background-size: 100%;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper1 .bg {
  background: url('../../Images2021/daiBan/zzdb_zhegnshuyoushi.png') no-repeat center center;
  background-size: 100%;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper2 .bg {
  background: url('../../Images2021/daiBan/zzdb_renyuanzhuanye.png') no-repeat center center;
  background-size: 100%;
}
.db_jwzz_wrap .w1200 .db_jwzz_swiper_wrap .db_jwzz_swiper3 .bg {
  background: url('../../Images2021/daiBan/zzdb_cailiaozhuanye.png') no-repeat center center;
  background-size: 100%;
}
.db_order_form_evaluate {
  width: 100%;
  height: 550px;
  background: #fff;
}
.db_order_form_evaluate .w1200 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 75px;
}
.db_order_form_evaluate .title {
  font-size: 30px;
  margin-bottom: 15px;
  height: 42px;
  font-weight: 400;
  color: #000000;
  line-height: 42px;
}
.db_order_form_evaluate .news_order_form {
  width: 605px;
  height: 100%;
}
.db_order_form_evaluate .news_order_form ul {
  width: 100%;
}
.db_order_form_evaluate .news_order_form ul li {
  width: 100%;
  border-bottom: 1px solid #F1F1F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding-right: 7px;
}
.db_order_form_evaluate .news_order_form ul li span {
  height: 18px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 18px;
}
.db_order_form_evaluate .news_order_form ul li span .icon {
  font-size: 10px;
}
.db_order_form_evaluate .news_order_form ul li span:first-child {
  width: 100px;
}
.db_order_form_evaluate .news_order_form ul li span:nth-child(2) {
  width: 92px;
  white-space: nowrap;
}
.db_order_form_evaluate .news_order_form ul li span:nth-child(3) {
  width: 19em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.db_order_form_evaluate .news_order_form ul li span:nth-child(4) {
  width: 9em;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #606179;
}
@-moz-keyframes sy_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  50% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  70% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  85% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  100% {
    transform: translateY(-261px);
    -ms-transform: translateY(-261px);
    -moz-transform: translateY(-261px);
    -webkit-transform: translateY(-261px);
    -o-transform: translateY(-261px);
  }
}
@-o-keyframes sy_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  50% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  70% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  85% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  100% {
    transform: translateY(-261px);
    -ms-transform: translateY(-261px);
    -moz-transform: translateY(-261px);
    -webkit-transform: translateY(-261px);
    -o-transform: translateY(-261px);
  }
}
@-webkit-keyframes sy_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  50% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  70% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  85% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  100% {
    transform: translateY(-261px);
    -ms-transform: translateY(-261px);
    -moz-transform: translateY(-261px);
    -webkit-transform: translateY(-261px);
    -o-transform: translateY(-261px);
  }
}
@keyframes sy_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  50% {
    transform: translateY(-87px);
    -ms-transform: translateY(-87px);
    -moz-transform: translateY(-87px);
    -webkit-transform: translateY(-87px);
    -o-transform: translateY(-87px);
  }
  70% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  85% {
    transform: translateY(-174px);
    -ms-transform: translateY(-174px);
    -moz-transform: translateY(-174px);
    -webkit-transform: translateY(-174px);
    -o-transform: translateY(-174px);
  }
  100% {
    transform: translateY(-261px);
    -ms-transform: translateY(-261px);
    -moz-transform: translateY(-261px);
    -webkit-transform: translateY(-261px);
    -o-transform: translateY(-261px);
  }
}
@-moz-keyframes logo_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  50% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  70% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  85% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  100% {
    transform: translateY(-138px);
    -ms-transform: translateY(-138px);
    -moz-transform: translateY(-138px);
    -webkit-transform: translateY(-138px);
    -o-transform: translateY(-138px);
  }
}
@-o-keyframes logo_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  50% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  70% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  85% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  100% {
    transform: translateY(-138px);
    -ms-transform: translateY(-138px);
    -moz-transform: translateY(-138px);
    -webkit-transform: translateY(-138px);
    -o-transform: translateY(-138px);
  }
}
@-webkit-keyframes logo_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  50% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  70% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  85% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  100% {
    transform: translateY(-138px);
    -ms-transform: translateY(-138px);
    -moz-transform: translateY(-138px);
    -webkit-transform: translateY(-138px);
    -o-transform: translateY(-138px);
  }
}
@keyframes logo_bg_wrap {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  50% {
    transform: translateY(-46px);
    -ms-transform: translateY(-46px);
    -moz-transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
    -o-transform: translateY(-46px);
  }
  70% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  85% {
    transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    -moz-transform: translateY(-92px);
    -webkit-transform: translateY(-92px);
    -o-transform: translateY(-92px);
  }
  100% {
    transform: translateY(-138px);
    -ms-transform: translateY(-138px);
    -moz-transform: translateY(-138px);
    -webkit-transform: translateY(-138px);
    -o-transform: translateY(-138px);
  }
}
@-moz-keyframes text_content {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  50% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  70% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  85% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  100% {
    transform: translateY(-537px);
    -ms-transform: translateY(-537px);
    -moz-transform: translateY(-537px);
    -webkit-transform: translateY(-537px);
    -o-transform: translateY(-537px);
  }
}
@-o-keyframes text_content {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  50% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  70% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  85% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  100% {
    transform: translateY(-537px);
    -ms-transform: translateY(-537px);
    -moz-transform: translateY(-537px);
    -webkit-transform: translateY(-537px);
    -o-transform: translateY(-537px);
  }
}
@-webkit-keyframes text_content {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  50% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  70% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  85% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  100% {
    transform: translateY(-537px);
    -ms-transform: translateY(-537px);
    -moz-transform: translateY(-537px);
    -webkit-transform: translateY(-537px);
    -o-transform: translateY(-537px);
  }
}
@keyframes text_content {
  0% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  15% {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
  }
  35% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  50% {
    transform: translateY(-179px);
    -ms-transform: translateY(-179px);
    -moz-transform: translateY(-179px);
    -webkit-transform: translateY(-179px);
    -o-transform: translateY(-179px);
  }
  70% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  85% {
    transform: translateY(-358px);
    -ms-transform: translateY(-358px);
    -moz-transform: translateY(-358px);
    -webkit-transform: translateY(-358px);
    -o-transform: translateY(-358px);
  }
  100% {
    transform: translateY(-537px);
    -ms-transform: translateY(-537px);
    -moz-transform: translateY(-537px);
    -webkit-transform: translateY(-537px);
    -o-transform: translateY(-537px);
  }
}
.db_order_form_evaluate .db_evaluate_animation_wrap {
  width: 533px;
  height: 100%;
  position: relative;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .mask_0_5 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  background: linear-gradient(#ffffff 0, rgba(255, 255, 255, 0.4) 10%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, #ffffff 100%);
}
.db_order_form_evaluate .db_evaluate_animation_wrap .sy_bg_wrap {
  width: 328px;
  height: 87px;
  position: absolute;
  overflow: hidden;
  top: -16px;
  left: 50%;
  margin-left: -164px;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .sy_bg_wrap ul {
  width: 100%;
  -webkit-animation: sy_bg_wrap 20s linear 0s infinite normal;
  -moz-animation: sy_bg_wrap 20s linear 0s infinite normal;
  -o-animation: sy_bg_wrap 20s linear 0s infinite normal;
  animation: sy_bg_wrap 20s linear 0s infinite normal;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .sy_bg_wrap ul li {
  width: 100%;
  height: 87px;
  opacity: .03;
  background: url('http://www.zizhiguanjia.net/images/hzkh3.jpg') no-repeat center;
  background-size: 603px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .sy_bg_wrap ul li:nth-child( 1) {
  background: #eef0f4 url('http://www.zizhiguanjia.net/images/hzkh3.jpg') no-repeat center center;
  background-size: 580px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .sy_bg_wrap ul li:nth-child( 2) {
  background: #eef0f4 url('http://www.zizhiguanjia.net/images/hzkh4.jpg') no-repeat center center;
  background-size: 580px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .sy_bg_wrap ul li:nth-child( 3) {
  background: #eef0f4 url('http://www.zizhiguanjia.net/images/hzkh5.jpg') no-repeat center center;
  background-size: 580px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .logo_bg_wrap {
  width: 154px;
  height: 46px;
  margin: 30px auto 13px;
  overflow: hidden;
  position: relative;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .logo_bg_wrap ul {
  -webkit-animation: logo_bg_wrap 20s linear 0s infinite normal;
  -moz-animation: logo_bg_wrap 20s linear 0s infinite normal;
  -o-animation: logo_bg_wrap 20s linear 0s infinite normal;
  animation: logo_bg_wrap 20s linear 0s infinite normal;
  width: 100%;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .logo_bg_wrap ul li {
  width: 154px;
  height: 46px;
  background: url('http://www.zizhiguanjia.net/images/hzkh3.jpg') no-repeat center;
  background-size: 280px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .logo_bg_wrap ul li:nth-child( 1) {
  background: #eef0f4 url('http://www.zizhiguanjia.net/images/hzkh3.jpg') no-repeat center center;
  background-size: 280px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .logo_bg_wrap ul li:nth-child( 2) {
  background: #eef0f4 url('http://www.zizhiguanjia.net/images/hzkh4.jpg') no-repeat center center;
  background-size: 280px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .logo_bg_wrap ul li:nth-child( 3) {
  background: #eef0f4 url('http://www.zizhiguanjia.net/images/hzkh5.jpg') no-repeat center center;
  background-size: 280px auto;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .mask_0_6 {
  position: absolute;
  width: 450px;
  height: 177px;
  left: 21px;
  top: 71px;
  z-index: 5;
  background: linear-gradient(#ffffff 0, rgba(255, 255, 255, 0.4) 10%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, #ffffff 100%);
}
.db_order_form_evaluate .db_evaluate_animation_wrap .text_content_wrap {
  width: 100%;
  height: 320px;
  padding: 70px 20px;
  position: relative;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .text_content_wrap span {
  display: block;
  width: 59px;
  height: 40px;
  background: url('../../Images2021/daiBan/db_jlt.png') no-repeat -23px -169px;
  position: absolute;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .text_content_wrap .douhao_top {
  top: 0;
  left: 0;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .text_content_wrap .douhao_bottom {
  right: 37px;
  bottom: 9px;
  background-position: -119px -169px;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .text_content_wrap .text_content_all {
  width: 100%;
  width: 452px;
  height: 179px;
  background: #FCFCFC;
  border: 1px solid #F1F1F1;
  overflow: hidden;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .text_content_wrap .text_content {
  width: 100%;
  -webkit-animation: text_content 20s linear 0s infinite normal;
  -moz-animation: text_content 20s linear 0s infinite normal;
  -o-animation: text_content 20s linear 0s infinite normal;
  animation: text_content 20s linear 0s infinite normal;
}
.db_order_form_evaluate .db_evaluate_animation_wrap .text_content_wrap .text_content li {
  height: 179px;
  padding: 22px 35px 29px;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 32px;
}
.db_success_wrap {
  width: 100%;
  height: 504px;
  background: linear-gradient(49deg, rgba(242, 106, 86, 0.97) 0%, rgba(255, 131, 67, 0.98) 23%, rgba(255, 149, 74, 0.98) 46%, rgba(255, 159, 96, 0.99) 82%, rgba(243, 152, 118, 0.97) 100%);
}
.db_success_wrap .w1498 {
  width: 1498px;
  margin: 0 auto;
  position: relative;
  padding-top: 44px;
}
.db_success_wrap .w1498 .title {
  margin-bottom: 7px;
  height: 42px;
  font-size: 30px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
}
.db_success_wrap .w1498 .title_hint {
  font-size: 17px;
  margin-bottom: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
  text-align: center;
}
.db_success_wrap .w1498 #persons {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.db_success_wrap .w1498 #persons .swiper-slide {
  width: 614px;
  height: 368px;
  background: #FFFFFF;
  box-shadow: 0px 1px 46px 0px rgba(227, 80, 0, 0.25);
  overflow: hidden;
}
.db_success_wrap .w1498 .swiper_right,
.db_success_wrap .w1498 .swiper_left {
  width: 445px;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0);
  top: 0;
  z-index: 9;
  cursor: pointer;
}
.db_success_wrap .w1498 .swiper_right {
  right: 0;
}
.db_success_wrap .w1498 .swiper_left {
  left: 0;
}
.db_success_wrap .w1498 .db_success_item_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.db_success_wrap .w1498 .db_success_item_wrap .item_img_wrap {
  width: 262px;
  height: 100%;
}
.db_success_wrap .w1498 .db_success_item_wrap .item_img_wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap {
  width: 350px;
  height: 100%;
  position: relative;
  padding: 34px 30px 0 21px ;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap .company_name {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  line-height: 30px;
  margin-bottom: 8px;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap .dian {
  margin-bottom: 20px;
  width: 20px;
  height: 4px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap .dian i {
  width: 4px;
  height: 4px;
  display: block;
  background: #ff6a00;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap p {
  margin-bottom: 4px;
  font-size: 16px;
  color: #330300;
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap p span {
  font-weight: 600;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap .btn {
  width: 133px;
  height: 40px;
  background: #FF6A00;
  color: #fff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  position: absolute;
  bottom: 16px;
  left: 21px;
}
.db_success_wrap .w1498 .db_success_item_wrap .success_text_wrap .btn:hover {
  background: #ff8719;
}
.db_success_wrap .w1498 .swiper-button-next {
  right: 298px;
}
.db_success_wrap .w1498 .swiper-button-prev {
  left: 1130px;
}
.db_success_wrap .w1498 .swiper-button-next,
.db_success_wrap .w1498 .swiper-button-prev {
  position: absolute;
  top: 80px;
  color: #fe964c;
  width: 28px;
  height: 43px;
  background: rgba(255, 255, 255, 0.6);
  line-height: 43px;
  text-align: center;
}
.db_success_wrap .w1498 .swiper-button-next:hover,
.db_success_wrap .w1498 .swiper-button-prev:hover {
  background: #ffffff;
}
.db_success_wrap .w1498 .swiper-button-next::after,
.db_success_wrap .w1498 .swiper-button-prev::after {
  font-size: 25px;
}
.db_advertising_scroll_wrap {
  width: 100%;
  height: 163px;
  padding: 24px;
}
.db_advertising_scroll_wrap .w1200 {
  height: 100%;
}
.advertising_scroll_wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  height: 115px;
  background: #fff;
}
.advertising_scroll_wrap .advertising_scroll {
  height: 100%;
  width: 10000px;
}
.advertising_scroll_wrap .advertising_scroll:hover ul {
  animation-play-state: paused;
}
.advertising_scroll_wrap .advertising_scroll ul {
  -webkit-animation: widthScroll 30s linear 0s infinite normal;
  -moz-animation: widthScroll 30s linear 0s infinite normal;
  -o-animation: widthScroll 30s linear 0s infinite normal;
  animation: widthScroll 30s linear 0s infinite normal;
  float: left;
  overflow: hidden;
  height: 100%;
}
.advertising_scroll_wrap .advertising_scroll ul li {
  float: left;
  width: 200px;
  height: 100%;
  position: relative;
}
.advertising_scroll_wrap .advertising_scroll ul li img {
  max-width: 100%;
  max-height: 100%;
  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%);
}
.db_question_wrap {
  width: 100%;
  height: 427px;
}
.db_question_wrap .w1200 {
  height: 100%;
  padding-top: 68px;
  position: relative;
}
.db_question_wrap .title {
  font-size: 30px;
  margin-bottom: 35px;
  font-weight: 400;
  color: #000000;
  line-height: 42px;
}
.db_question_wrap .db_question_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.db_question_wrap .db_question_list li {
  width: 50%;
  padding-left: 45px;
  position: relative;
  margin-bottom: 34px;
}
.db_question_wrap .db_question_list li i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(152deg, #ffab6e 0%, #ff5d35 100%);
  box-shadow: 0px 2px 4px 0px rgba(255, 100, 58, 0.83);
  color: #fff;
  font-size: 19px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
}
.db_question_wrap .db_question_list li p {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 400;
  color: #333333;
  line-height: 25px;
}
.db_question_wrap .db_question_list li span {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  line-height: 20px;
}
.db_question_wrap .btn {
  position: absolute;
  width: 220px;
  height: 40px;
  background: #FF6A00;
  left: 600px;
  bottom: 68px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.db_question_wrap .btn:hover {
  background: #ff8719;
}
.db_flow_wrap {
  width: 100%;
  height: 340px;
  background: #FFFFFF;
}
.db_flow_wrap .w1200 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 91px;
}
.db_flow_wrap .w1200 .text_wrap {
  width: 356px;
}
.db_flow_wrap .w1200 .text_wrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 32px;
  font-weight: 300;
  color: #000000;
  line-height: 55px;
}
.db_flow_wrap .w1200 .text_wrap p span {
  color: #ff6a00;
  font-size: 47px;
  font-weight: bold;
}
.db_flow_wrap .w1200 .flow_wrap {
  width: 844px;
  padding-top: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.db_flow_wrap .w1200 .flow_wrap li {
  width: 94px;
  height: 110px;
  padding-top: 5px;
  position: relative;
}
.db_flow_wrap .w1200 .flow_wrap li::after {
  content: '';
  display: block;
  position: absolute;
  left: 79px;
  top: 37px;
  width: 58px;
  height: 0px;
  border: 1px dashed #ff6a00;
}
.db_flow_wrap .w1200 .flow_wrap li::before {
  content: '';
  display: block;
  position: absolute;
  left: 106px;
  top: 33px;
  width: 0px;
  height: 0px;
  border: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid #ff6a00;
}
.db_flow_wrap .w1200 .flow_wrap li:last-child::after,
.db_flow_wrap .w1200 .flow_wrap li:last-child::before {
  display: none;
}
.db_flow_wrap .w1200 .flow_wrap li:last-child span {
  background-position: -588px -159px;
}
.db_flow_wrap .w1200 .flow_wrap li:nth-child(2) span {
  background-position: -255px -159px;
}
.db_flow_wrap .w1200 .flow_wrap li:nth-child(3) span {
  background-position: -327px -162px;
}
.db_flow_wrap .w1200 .flow_wrap li:nth-child(4) span {
  background-position: -397px -159px;
}
.db_flow_wrap .w1200 .flow_wrap li:nth-child(5) span {
  background-position: -460px -159px;
}
.db_flow_wrap .w1200 .flow_wrap li:nth-child(6) span {
  background-position: -525px -161px;
}
.db_flow_wrap .w1200 .flow_wrap li span {
  display: block ;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  background: #FFFFFF;
  box-shadow: 0px 4px 9px 4px rgba(36, 105, 244, 0.05);
  margin: 0 auto 15px;
  background: url('../../Images2021/daiBan/db_jlt.png') no-repeat -192px -159px;
}
.db_flow_wrap .w1200 .flow_wrap li i {
  display: block;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
}
.db_user_need_wrap {
  width: 100%;
  height: 567px;
  background: url('../../Images2021/daiBan/zzdb_nknhxyyxfw_bg.png') no-repeat;
  background-size: 100% 567px ;
  padding-top: 66px;
}
.db_user_need_wrap .title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 43px;
  font-weight: 400;
  color: #000000;
  line-height: 42px;
}
.db_user_need_wrap .user_need_list {
  width: 100%;
  height: 390px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.db_user_need_wrap .user_need_list li {
  width: 20%;
  margin-bottom: 5px;
  height: 190px;
}
.db_user_need_wrap .user_need_list li:nth-child(5n+2) a::after {
  background-position: -117px -260px;
}
.db_user_need_wrap .user_need_list li:nth-child(5n+3) a::after {
  background-position: -208px -260px;
}
.db_user_need_wrap .user_need_list li:nth-child(5n+4) a::after {
  background-position: -310px -263px;
}
.db_user_need_wrap .user_need_list li:nth-child(5n+5) a::after {
  background-position: -411px -261px;
}
.db_user_need_wrap .user_need_list li:nth-child(n+6) a::after {
  background-position-y: -357px;
}
.db_user_need_wrap .user_need_list li a {
  display: block;
  width: 100%;
  height: 190px;
  position: relative;
  padding-top: 123px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 25px;
  text-align: center;
}
.db_user_need_wrap .user_need_list li a::after {
  content: '';
  display: block;
  position: absolute;
  left: 89px;
  top: 35px;
  width: 61px;
  height: 61px;
  background: url('../../Images2021/daiBan/db_jlt.png') -26px -260px;
}
.db_user_need_wrap .user_need_list li a:hover {
  color: #ff6a00;
  box-shadow: 0px 3px 9px 4px rgba(0, 0, 0, 0.03);
}
.video_mask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translateZ(19);
  -ms-transform: translateZ(19);
  -moz-transform: translateZ(19);
  -webkit-transform: translateZ(19);
  -o-transform: translateZ(19);
  margin: auto;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1999;
  display: none;
}
.video_mask .video_wrap {
  width: 1200px;
  height: auto;
  position: absolute;
  top: 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%);
  left: 50%;
}
.video_mask .video_wrap video {
  width: 100%;
  height: 1000%;
}
.video_mask .close_video {
  width: 30px;
  height: 30px;
  position: absolute;
  font-size: 30px;
  top: 10px;
  right: 10px;
  color: #fff;
  cursor: pointer;
}

/**
 * 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, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') 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}
