/* 首页样式 */

.page {
  flex: 1; /* 在Flexbox布局中占据大部分空间 */
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
  background-color: #f4f4f4;
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;

}

.row {
  display: flex;
  flex-wrap: wrap;
}
.title { color: #0CA6A1; font-size: 38px; font-weight: bold;}
.subtitle { color: #333; font-size: 24px; font-weight: bold; padding: 15px 0;}
.desc { color: #869FB4; font-size: 14px; margin-top: 10px;}


.downcard{
  position: relative;
  padding: 20px 0 20px 50px;
  margin: 30px;
  background: white;
  border-radius: 17px;
  height: 170px;
  display: flex;
  cursor: pointer;
  align-items: center;
}
.ishover{
  display: none;
  position: absolute;
  left: 0px;
  border-radius: 14px;
  height: 100%;
  width: 100%;

  font-size: 22px;
  color: #0CA6A1;
  background: white;
}
.downcard:hover .ishover{
  display: flex;
  align-items: center;
  justify-content: center;
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #333;
  font-size: 16px;
}
.footer a {
  color: #576666;
  text-decoration: none;
}

/* .footer 适配大屏和手机端都在最底下 */
@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    height: auto;
    line-height: 20px;
    text-align: center;
    margin-top: 20px;
  }
}
