@charset "utf-8";

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,body,.container {
  height: 100%;
  background-color: #FFFFFF;
}
.container {
  min-width: 840px;
}

.header {
  display: flex;
  align-items: center;
  height: 60px;
  background-color: #F6F6F6;
}

.header-logo {
  padding:0 10px 0 20px;
}

.header-logo-title {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  line-height: 60px;
}

.user {
  flex: 1;
  text-align: right;
}

.avatar {
  transform: translate(-50px);
}

.arrow {
  display: inline-block;
  transform: rotate(90deg) translate(-10px,40px);
}



.main {
  display: flex;
  height: calc(100vh - 120px);
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

@media screen and (max-width: 400px){
  .main {
    height: 100vh;
  }
}

.main > div {
  flex: 1;
  display: inline-block;
  text-align: center;

}

.index-title {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  margin-top: 10px;
  margin-left: 20px;
}

.title {
  font-size: 24px;
  color: #5d5d5d;
  margin: 0 0 4px;
  font-weight: 700;
}

.description {
  padding-top: 5px;
  font-size: 14px;
  color: #8e8e8e;
}

.index-description {
  width: 50%;
  max-width: 600px;
  font-size: 14px;
  color: rgba(56, 56, 56, 1);
  line-height: 22px;
}

.index-logo-title {
  text-align: left;
}
.index-description-detail {
  width: 415px;
  margin-top: 35px;
  margin-bottom: 30px;
  text-align: left;
  color: rgba(44, 60, 89, 1);
}

.download-button-logo {
  text-align: left;
  margin-top: 30px;
}

.download-btn {
  width: 150px;
  height: 50px;
  line-height: 50px;
  border: none;
  outline: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  margin-right: 15px;
}

footer {
  text-align: center;
  padding-top: 20px;
  color: rgba(142, 142, 142, 1);
  font-size: 12px;
}

footer > a {
  padding-left: 10px;
  color: rgba(142, 142, 142, 1);
  text-decoration: none;
}

footer > a:hover {
  text-decoration: underline;
  color: rgba(142, 142, 142, 1);
}
