.index-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.index-container .main-header {
  background: #36c84e;
  display: flex;
  align-items: center;
  height: 80px;
}
.index-container .main-header .logo {
  width: 18px;
  height: auto;
  margin-right: 10px;
}
.index-container .main-header .name {
  flex: 1;
  font-size: 20px;
  font-weight: 550;
  color: #fff;
}
.index-container .main-header .change-s, .index-container .main-header .logout {
  font-size: 16px;
  color: #fff;
  padding: 0 10px;
}
.index-container .main-header .change-lang {
  color: #fff;
  padding: 0 10px;
}
.index-container .el-container {
  background: #ebebeb;
  flex-direction: column;
}
.index-container .el-container .greet {
  width: 100%;
  padding: 30px;
}
.index-container .el-container .greet .title {
  font-size: 20px;
  font-weight: 550;
}
.index-container .el-container .greet .text {
  font-size: 14px;
  margin-top: 20px;
}
.index-container .el-container .project-list {
  display: flex;
  padding: 0 30px 30px;
}
.index-container .el-container .project-list .project-item {
  width: 200px;
  box-shadow: 1px 2px 8px #ddd;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 30px 0;
  color: #ccc;
  transition: all 500ms;
  cursor: pointer;
}
.index-container .el-container .project-list .project-item .icon {
  font-size: 60px;
}
.index-container .el-container .project-list .project-item .name {
  font-size: 20px;
  margin-top: 20px;
}
.index-container .el-container .project-list .project-item:hover {
  color: #36c84e;
  transform: translateY(-10px);
}

/*# sourceMappingURL=index.css.map */
