.contactPage .content .list {
  margin: 0 auto;
  box-sizing: border-box;
  width: 98%;
  border:1px solid #f0f0f0;
  box-shadow: 6px 2px 20px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding:30px 10px;
  margin-bottom: 25px;
}
.contactPage .content .list .listCenter {
  width: 90%;
  margin: 0 auto;
}
@media all and (max-width:1024px) {
  .contactPage .content .list .listCenter {
    width: 74vw;
    margin: 0 auto;
  }
}
@media all and (max-width:415px) {
  .contactPage .content .list .listCenter {
    width: 80vw;
    margin: 0 auto;
  }
}
.contactPage .content .list:hover {
  width: 100%;
}
.contactPage .content .list .title {
  color: red;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}
.contactPage .content .list .describe {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 24px;
  width: 60vw;
  margin-bottom: 10px;
}
.contactPage .content .list .btn {
  width: 205px;
  height: 32px;
  background-color: #F4F4F4;
  border-radius: 16px;
  line-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactPage .content .list .btn:hover {
  cursor: pointer;
  background-color: red;
  color: #FFFFFF;
}
.list a {
  color: black;
}
.contactPage .content .list .describe {
  width: 100%;
}