/* 版心 */
.wrap {
  width: 1250px;
  margin: 0 auto;
}
/* 头部 */
.header {
  width: 100%;
  min-width: 1250px;
  margin: 0 auto;
  background-color: #fff;
}
.header .wrap {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 15px;
}
.header .logo img {
  width: 70px;
  height: 70px;
}
.header .logo p {
  font-size: 26px;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
  margin-left: 10px;
}
.header .nav .menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header .nav .menu-item {
  margin: 0 15px;
}
.header .nav .menu-item a {
  display: block;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  padding: 0px 16px;
  height: 100px;
  line-height: 100px;
  text-decoration: none;
  box-sizing: border-box;
}

.header .nav .active a {
  color: rgb(7, 108, 224);
  border-bottom: 3px solid #076ce0;
}

.header .nav .menu-item a:hover {
  color: rgb(7, 108, 224);
  border-bottom: 3px solid #076ce0;
}

.header .nav .submenu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 100px;
  padding: 15px 0;
  border-radius: 5px;
  z-index: 2;
}

.header .nav .submenu li a {
  color: rgba(51, 51, 51, 1);
  height: 50px;
  line-height: 50px;
  padding: 0px 16px;
}

.header .nav .menu-item.dropdown:hover .submenu {
  display: block;
}

.header .nav .menu-item.dropdown:hover .submenu a {
  border-bottom: none;
}
.header .nav .menu-item .submenu:hover::before {
  width: 96px;
  height: 3px;
  background-color: #076ce0;
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
}
/* 内容1 */
.box1 {
  width: 100%;
  height: 360px;
  background: url(../images/service/box1bg.jpg) no-repeat center center / cover;
}
.box2 {
  background-color: #fff;
}
.box2 .wrap {
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
}
.box2 .list {
  width: 372px;
  height: 478px;
  background: url(../images/service/box2bg.png) no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 67px;
}
.box2 .list:nth-child(3n) {
  margin-right: 0;
}
.box2 .img {
  width: 336px;
  height: 280px;
}
.box2 .img img {
  width: 336px;
  height: 280px;
  border-radius: 15px 15px 0 0;
}
.box2 .text {
  margin-top: 30px;
  padding: 0 35px;
}
.box2 .text .h {
  font-size: 24px;
  text-align: center;
}
.box2 .text .p {
  font-size: 16px;
  text-align: center;
  color: #999;
  margin-top: 15px;
}
/* 底部 */
.footer {
  height: 150px;
  padding: 20px 0;
  color: #ccc;
  background-color: rgb(0, 0, 0, 0.7);
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
}
.footer ul li {
  margin-top: 20px;
  margin-right: 50px;
}
/* 最大1550px */
@media (max-width: 1550px) {
}
