/* 版心设置 */
.wrapper {
  margin: 0 auto;
  width: 960px;
}

/* 头部区域导航栏 */
.header {
  /* 固定定位新用法 sticky*/
  /* -webkit 兼容浏览器 */
  /* position:-webkit-sticky; */
  /* position:sticky; */
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 48px;
  /* 固定定位的盒子，宽度高度靠内容撑开，希望宽度100%，高度根据内容撑开 */
  /* width: 100%; */
  background: rgba(255, 255, 255, 1);
  z-index: 100;
  transition: all 0.5s;
}

.header .wrapper {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
}

/* logo图片 */
.logo a {
  display: block;
  width: 98px;
  height: 28px;
  background-image: url(../images/logo.png);
  background-size: cover;
  font-size: 0;
}

/* 导航 */
.header .nav ul {
  display: flex;
  /* width: 456px; */
  height: 48px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.header .nav ul .li-dis .a-dis {
  font-size: 16px;
  color: #222;
}

/* active 类选择器，表示默认选中的a */
.header .nav ul .li-dis .active,
.header .nav ul .li-dis .a-dis:hover {
  color: #165DFF;
  border-bottom: 3px solid #165DFF;
  padding-bottom: 11px;
}

/* 下拉菜单 */
.header .pull-down {
  position: absolute;
  top: 64px;
  left: 35%;
  width: 870px;
  height: 300px;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0px 10px 25px 0px rgba(141, 141, 141, 0.20);
  transition: all 0.5s;
  height: 0;
  overflow: hidden;

}

.header .nav .li-dis:hover .pull-down {
  height: 290px;
}

.header .nav .li-dis .pull-down h5 {
  margin-top: 34px;
  margin-left: 34px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #737373;
  font-weight: 400;
  line-height: 14px;
}

.header .nav .li-dis .pull-down .line {
  margin-left: 34px;
  margin-bottom: 30px;
  width: 804px;
  height: 1px;
  background: #DCDFE5;
}

.header .nav .li-dis .pull-down .ul-box {
  margin: 30px auto;
  /* margin-left: 34px; */
  width: 800px;
}

.header .nav .li-dis .pull-down .ul-box ol {
  display: flex;
  height: 180px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header .nav .li-dis .pull-down .ul-box ol .drop a {
  display: flex;
  align-items: center;
  width: 370px;
}

.header .nav .li-dis .pull-down .ul-box ol .drop a img {
  width: 60px;
  vertical-align: middle;
}

.header .nav .li-dis .pull-down .ul-box ol .drop .li-box {
  margin-left: 15px;
}

.header .nav .li-dis .pull-down .ul-box ol .drop .li-box h3 {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 16px;
}

.header .nav .li-dis .pull-down .ul-box ol .drop .li-box p {
  margin-top: 8px;
  font-size: 14px;
  color: #666666;
}

.header .nav .li-dis .pull-down .ul-box ol .drop a:hover .li-box h3,
.header .nav .li-dis .pull-down .ul-box ol .drop a:hover .li-box p {
  color: #165DFF;
}

/* 底部版权 */
.footer {
  height: 470px;
  background: #111111;

}

.footer .footer-nav {
  display: flex;
}

.footer .footer-nav .left img {
  margin-left: 36px;
  margin-top: 93px;
}

.footer .footer-nav .right {
  margin-left: 46px;
  margin-top: 93px;
  display: flex;
  color: #fff;
}

.footer .footer-nav .right dl {
  margin-left: 72px;
  margin-bottom: 75px;

}

.footer .footer-nav .right dt {
  font-weight: bold;
  font-size: 18px;
}

.footer .footer-nav .right dl a,
.footer .footer-nav .right dl dd {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: #828B98;
}

.footer .footer-nav .right dl a:hover {
  color: #c8cdd4;
}

.footer .line {
  margin: 0 auto;
  width: 1014px;
  border: 1px solid #393C40;
}

.footer p {
  margin-top: 40px;
  font-size: 16px;
  color: #828B98;
  text-align: center;
  line-height: 16px;
}

/* 媒体查询 */
/* banner 区域 */
.banner {
  padding-top: 48px;
  width: 100%;
  height: 433px;
  background-image: url(../uploads/Product/insurance.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .wrapper h1 {
  margin-left: 100px;
  padding-top: 88px;
  width: 463px;
  font-weight: 700;
  font-size: 37px;
  color: #232A65;
  line-height: 56px;
}

.banner .wrapper p {
  margin-left: 100px;
  padding-top: 25px;
  width: 497px;
  font-size: 14px;
  color: #4B5B76;
  line-height: 24px;
}

/* 产品菜单导航 */
.menu ul {
  display: flex;
  height: 50px;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: center;
}

.menu ul li a {
  font-size: 16px;
  color: #616872;
}

/* active 类选择器，表示默认选中的a */
.menu ul li .active,
.menu ul li a:hover {
  color: #165DFF;
  border-bottom: 3px solid #165DFF;
  padding-bottom: 14px;
}

/* 计划书 */
.project {
  height: 974px;
  background: #F2F5FA;
}

.project h2 {
  padding-top: 75px;
  padding-bottom: 60px;
  font-size: 40px;
  color: #000000;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}

.project .bd {
  display: flex;
  height: 695px;
  justify-content: space-between;
}

.project .bd .left {
  width: 705px;
  height: 695px;
  background: #FFFFFF;
}

.project .bd .left h3 {
  margin: 70px 0 34px 33px;
  font-size: 30px;
  color: #000000;
  font-weight: 400;
  line-height: 30px;
}

.project .bd .left .barre {
  margin-left: 33px;
  display: block;
  width: 71px;
  height: 6px;
  background: #165DFF;
}

.project .bd .left p {
  margin-top: 60px;
  margin-left: 33px;
  margin-right: 33px;
  width: 446px;
  font-size: 16px;
  color: #666666;
  line-height: 34px;
}

.project .bd .left button {
  margin: 60px 0 0 33px;
  width: 122px;
  height: 44px;
  background: #165DFF;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  line-height: 44px;
  color: #FFFFFF;
}

.project .bd .left button:hover {
  background: #165DFF;
  opacity: 0.85;
}

.project .bd .left button:active {
  background: #002781;
  opacity: 0.85;
}

.project .bd .right {
  width: 792px;
  height: 695px;
  background: #EAEEFD;
  border: 1px solid #D6DEF0;
  overflow: hidden;
}

.project .bd .right img {
  margin: 90px auto;
  width: 100%;
  height: 59%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}

.project .bd .right:hover img {
  transform: scale(1.1);
}

/* 联系演示弹窗 */
.project .bd .left .pop {
  position: absolute;
  left: 7%;
  bottom: 20%;
  width: 230px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

.project .bd .left .pop img {
  display: block;
  margin: 10px auto;
  width: 90%;
}

.project .bd .left .pop span {
  margin: 5px auto 20px auto;
  display: block;
  color: #666666;
  font-size: 14px;
  text-align: center;
}

/* 功能特色 */
.feature h2 {
  padding-top: 75px;
  padding-bottom: 60px;
  font-size: 40px;
  color: #000000;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}

.feature .ul-box {
  height: 825px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}



.feature .ul-box li .box-img1 {
  position: relative;
  width: 305px;
  height: 163px;
  background-image: url(../uploads/Product/project/feature1.jpg);
}

.feature .ul-box li .box-img2 {
  position: relative;
  width: 305px;
  height: 163px;
  background-image: url(../uploads/Product/project/feature2.jpg);
}

.feature .ul-box li .box-img3 {
  position: relative;
  width: 305px;
  height: 163px;
  background-image: url(../uploads/Product/project/feature3.jpg);
}

.feature .ul-box li .box-img4 {
  position: relative;
  width: 305px;
  height: 163px;
  background-image: url(../uploads/Product/project/feature4.jpg);
}

.feature .ul-box li .box-img5 {
  position: relative;
  width: 305px;
  height: 163px;
  background-image: url(../uploads/Product/project/feature5.jpg);
}

.feature .ul-box li .box-img6 {
  position: relative;
  width: 305px;
  height: 163px;
  background-image: url(../uploads/Product/project/feature6.jpg);
}

.feature .ul-box li .box-img1 .center,
.feature .ul-box li .box-img2 .center,
.feature .ul-box li .box-img3 .center,
.feature .ul-box li .box-img4 .center,
.feature .ul-box li .box-img5 .center,
.feature .ul-box li .box-img6 .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature .ul-box li .box-img1 .center .iconfont,
.feature .ul-box li .box-img2 .center .iconfont,
.feature .ul-box li .box-img3 .center .iconfont,
.feature .ul-box li .box-img4 .center .iconfont,
.feature .ul-box li .box-img5 .center .iconfont,
.feature .ul-box li .box-img6 .center .iconfont {
  margin-bottom: 30px;
  display: block;
  font-size: 44px;
  color: #FFFFFF;
  line-height: 44px;
  text-align: center;
}

.feature .ul-box li .box-img1 h4,
.feature .ul-box li .box-img2 h4,
.feature .ul-box li .box-img3 h4,
.feature .ul-box li .box-img4 h4,
.feature .ul-box li .box-img5 h4,
.feature .ul-box li .box-img6 h4 {
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: center;
}

.feature .ul-box li .text-p {
  width: 305px;
  height: 226px;
  background: #FFFFFF;
  border: 1px solid #DFDFDF;
}

.feature .ul-box li .text-p p {
  margin: 18px auto;
  width: 255px;
  font-size: 14px;
  color: #666666;
  line-height: 27px;
}

.feature .ul-box li {
  height: 389px;
  transition: all 0.5s;
}

.feature .ul-box li:hover {
  box-shadow: 0px 10px 25px 0px rgba(141, 141, 141, 0.20);
  transform: translateY(-13px);
}


/* 应用场景 */
.map {
  margin-top: 80px;
  height: 687px;
  background-image: url(../uploads/Product/guarantee/new-bj.jpg);
}

.map .content h2 {
  padding-top: 75px;
  padding-bottom: 60px;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}

.map .content .con-box {
  display: flex;
  justify-content: center;
}

.map .content .con-box .left .img-box {
  width: 494px;
  overflow: hidden;
}

.map .content .con-box .left .img-box img {
  vertical-align: middle;
  transition: all 0.5s;
}

.map .content .con-box .left .img-box:hover img {
  transform: scale(1.1);
}

.map .content .con-box .left .text-one {
  width: 494px;
  height: 122px;
  background: linear-gradient(-90deg, #165DFF, #0032A5);
  font-size: 20px;
  color: #FFFFFF;
  line-height: 122px;
  text-align: center;
}