.banner {
  width: 100%;
  position: relative;
  margin-top: 80px;
}
.banner img {
  width: 100%;
}
.banner .headline_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
.banner .headline_wrap .container {
  width: 1310px;
  height: 100%;
  margin: 0 auto;
}
.banner .headline_wrap .container span {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.list-content {
  height: 400px;
  width: 1310px;
  margin: 0 auto;
}
.list-content .table-list {
  width: 100%;
  line-height: 52px;
  margin-top: 40px;
}
.list-content .table-list th {
  background-color: #f5f5f5;
  width: calc(100% / 3);
  height: 52px;
  text-align: left;
  padding-left: 32px;
}
.list-content .table-list td {
  width: calc(100% / 3);
  height: 52px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  padding-left: 32px;
}
.page-content {
  min-height: calc(100vh - 154px);
}
.list-page {
  background-color: #FFFFFF;
}
.footer_wrap {
  background: #000;
  height: 74px;
}
.footer_wrap .footer {
  width: 1340px;
  min-width: 1116px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: #000;
}
.service {
  position: fixed;
  width: 66px;
  height: 66px;
  background-color: white;
  border-radius: 8px;
  top: 50vh;
  right: 20px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.service span {
  width: 30px;
  height: 40px;
  background: url(../images/icon_service_b.png) no-repeat center;
  background-size: 98%;
}
.service .contact_number {
  opacity: 0;
  width: 180px;
  height: 100px;
  position: absolute;
  /* margin-right: 218px; */
  transition: all 0.5s;
  left: -170px;
  top: -17px;
  /* display: flex;
    align-items: center; */
  pointer-events: none;
  background: url(../images/contact-number.png) no-repeat center;
}
.service .contact_number .shape {
  width: 0px;
  height: 0px;
  border-top: 4px solid transparent;
  border-left: 8px solid #ffffff;
  border-bottom: 4px solid transparent;
  background: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.service:hover {
  background: #2E87FF;
}
.service:hover span {
  background: url(../images/icon_service_w.png) no-repeat center;
  background-size: 98%;
}
.service:hover .contact_number {
  opacity: 1;
  pointer-events: auto;
}
