/* 版心 */
.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/product/box1bg.jpg) no-repeat center center / cover;
}
.box1 .wrap {
  color: #fff;
}
.box1 .wrap ul {
  display: flex;
  justify-content: center;
  padding-top: 177px;
  font-size: 24px;
  line-height: 1;
}
.box1 .wrap li {
  padding: 0 30px;
  border-right: 1px solid #fff;
}
.box1 .wrap li:last-child {
  border-right: none;
}
.box2 {
  background-color: #fff;
}
.box2 .wrap {
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
}
.box2 .list {
  width: 271px;
  height: 356px;
  background: url(../images/product/box2bg.png) no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 55px;
}
.box2 .list:nth-child(4n) {
  margin-right: 0;
}
.box2 .title {
  width: 159px;
  height: 130px;
  background: url(../images/product/box2icon.png) no-repeat center center /
    cover;
  margin-top: 70px;
  padding: 15px 20px 46px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box2 .title .h {
  font-size: 14px;
  color: #076ce0;
  text-align: center;
}
.box2 .text {
  margin-top: 20px;
  padding: 0 35px;
}
.box2 .text .p {
  font-size: 16px;
  text-align: center;
  color: #999;
}
/* 底部 */
.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) {
}
