* {
  margin: 0;
  padding: 0;
}
.logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
}
.logo img {
  width: 130px;
}
.page {
  width: 1200px;
  margin: 0 auto;
  border: 30px solid #f2f2f2;
  padding-left: 70px;
  padding-right: 70px;
}
.page header {
  background-color: #f2f2f2;
}
.page header img {
  width: 50px;
}
.page nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  height: 50px;
  align-items: center;
}
.page nav a {
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: 900;
}
.page .content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 0px;
}
.page .content .con-left {
  width: 20%;
  flex: 1;
  border: 1px solid #f2f2f2;
  margin-left: 20px;
}
.page .content .con-left ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.page .content .con-left ul li {
  text-align: center;
  font-weight: 900;
  color: #000;
  height: 16%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.page .content .con-right {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page .content .con-right .items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 60px;
}
.page .content .con-right .items .item {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page .content .con-right .items .item img {
  width: 60%;
}
.page .content .con-right .items .item h1 {
  font-size: 24px;
  font-family: "微软雅黑";
}
.page .content .con-right .items .item button {
  border: 0px;
  width: 80px;
  height: 40px;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
}
.page footer {
  border: 1px solid #f2f2f2;
  height: 70px;
  line-height: 70px;
  margin-top: 70px;
}
.page footer p {
  color: #000;
  text-align: center;
}
