* {
  box-sizing: border-box;
  outline: none;
}
img {
  display: block;
}
.pc-show {
  display: none;
}
.pc-hide {
  display: initial;
}
#app[v-clock] {
  display: none;
}
.flex-x {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}
body {
  line-height: 1.6;
  font-family: -apple-system-font, Helvetica Neue, sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #f3f3f3;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  margin: 0;
}
.container {
  width: 100%;
  padding: 0 16px;
}
.header {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  height: 60px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
  margin-bottom: 16px;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 10;
}
.header .container {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .logo {
  height: 76%;
  width: auto;
  cursor: pointer;
}
.header .search {
  border: #999 solid 1px;
  height: 36px;
  width: 160px;
  border-right-width: 0;
  border-radius: 100px 0 0 100px;
  padding: 0 4px 0 16px;
  line-height: normal;
  font-size: 14px;
}
.header .submit {
  border: #999 solid 1px;
  height: 36px;
  width: 60px;
  border-radius: 0 100px 100px 0;
  font-size: 14px;
  background-color: #eee;
}
.header .submit:active {
  background-color: #f9f9f9;
}
.header .title {
  display: none;
}
.crumb {
  margin-bottom: 16px !important;
  color: #666;
  display: flex !important;
}
.crumb a {
  color: #0190ff;
  cursor: pointer;
}
.main {
  min-height: calc(100vh - 120px);
}
.main .right {
  display: none;
}
.search-value {
  margin-bottom: 10px;
  font-size: 16px;
}
.app-list {
  list-style: none;
  margin: 0;
  padding: 16px;
  background-color: #Fff;
}
.app-list > li {
  align-content: flex-start;
}
.app-list > li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: solid 1px #e6e6e6;
}
.app-list .icon {
  width: 60px;
  height: auto;
  display: block;
}
.app-list .content {
  flex: 1 0 auto;
  width: 0;
  margin: 0 10px;
  color: #666;
  font-size: 12px;
}
.app-list .content .name {
  color: #333;
  font-size: 14px;
  margin: 0;
  font-weight: normal;
}
.app-list .button {
  width: 64px;
  height: 32px;
  border-radius: 4px;
  font-size: 14px;
  color: white;
  background-color: #4caf50;
  border: none;
}
.load-text {
  text-align: center;
  font-size: 14px;
  color: #999;
}
.footer {
  background-color: #333;
  color: #FFF;
  text-align: center;
  padding: 32px 0;
  margin-top: 16px;
}
.footer a {
  color: #FFF;
  text-decoration: none;
}
.footer p {
  margin: 0;
}
.footer p + p {
  margin-top: 8px;
}
.detail .panel {
  background-color: #fff;
  padding: 16px;
}
.detail .panel + .panel {
  margin-top: 16px;
}
.detail .panel .title {
  color: #0190ff;
  font-size: 18px;
  margin-bottom: 16px;
}
.detail .info .icon {
  width: 60px;
  height: auto;
}
.detail .info .content {
  flex: 1 0 auto;
  width: 0;
  margin: 0 10px;
  color: #666;
  font-size: 12px;
}
.detail .info .content .name {
  color: #333;
  font-size: 16px;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.detail .info .button {
  width: 64px;
  height: 32px;
  border-radius: 4px;
  font-size: 14px;
  color: white;
  background-color: #4caf50;
  border: none;
}
.detail .screenshot {
  margin: 0 -8px 16px -8px;
  overflow-x: auto;
}
.detail .screenshot > div {
  padding: 0 8px;
  width: 40%;
  flex-shrink: 0;
}
.detail .screenshot > div img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .pc-show {
    display: initial;
  }
  .pc-hide {
    display: none;
  }
  body {
    background-color: #f3f3f3;
  }
  .container {
    max-width: 80%;
    display: block;
    margin: 0 auto;
  }
  .main {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    align-items: stretch;
  }
  .main .left {
    width: 70%;
  }
  .main .right {
    display: block;
    margin-left: 16px;
    flex: 1 0 auto;
    position: relative;
  }
  .main .right > div {
    padding: 16px;
    background-color: #Fff;
    position: sticky;
    left: 0;
    top: 96px;
    z-index: 1;
    color: #999;
    text-align: center;
  }
  .header {
    height: 80px;
  }
  .header .title {
    display: block;
    flex: 1 0 auto;
    margin-left: 16px;
    font-size: 18px;
    font-weight: bold;
  }
  .header .search {
    height: 42px;
    width: 220px;
  }
  .header .submit {
    height: 42px;
    width: 80px;
  }
  .detail .info .icon {
    width: 100px;
  }
  .detail .info .content {
    margin: 0 16px;
    font-size: 14px;
  }
  .detail .info .content .name {
    font-size: 18px;
  }
  .detail .info .button {
    width: 80px;
    height: 38px;
    border-radius: 8px;
    font-size: 16px;
  }
  .detail .screenshot > div {
    width: 30%;
  }
}
