html {
  background-color: #F5F5F5;
  height: 100%;
}
body {
  height: 100%;
}
.wrap_head {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
.wrap_head > ul {
  display: flex;
  min-width: 780px;
}
.wrap_head > ul > li {
  display: flex;
  align-items: center;
  margin-left: 48px;
  padding-bottom: 6px;
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  border-bottom: 4px solid transparent;
}
.wrap_head > ul > li span {
  cursor: pointer;
}
.wrap_head > ul > li.active {
  border-bottom: 4px solid #FF3851;
}
.wrap_head > ul > li.eight {
  position: relative;
  z-index: 10;
}
.wrap_head > ul > li.eight .list {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -6px;
  min-width: 128px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.wrap_head > ul > li.eight .list ol {
  padding: 15px 0;
}
.wrap_head > ul > li.eight .list ol li {
  padding: 0 10px;
  text-align: center;
  height: 44px;
  color: #333333;
  line-height: 44px;
  font-size: 16px;
  font-weight: 500;
}
.wrap_head > ul > li.eight .list ol li:hover {
  background: #eeeeee;
  font-weight: 500;
}
.wrap_head > ul > li.eight .list-none {
}
.wrap_head > ul > li .triangle {
  margin-left: 5px;
  margin-top: 4px;
  width: 0;
  height: 0;
  line-height: 0;
  border-left: 3px solid #333333;
  border-top: 3px solid #333333;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  cursor: pointer;
}
.wrap_head .search {
  margin-right: 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 276px;
  height: 36px;
  border-radius: 18px;
  background: rgba(225,225,225,0.7);
  padding-left: 17px;
  cursor: pointer;
}
.wrap_head .search img {
  width: 13px;
  height: 13px;
  margin-right: 8px;
}
.wrap_head .search span {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}
.wrap_footer {
  width: 100%;
  background-color: #fff;
  padding-bottom: 15px;
}
.wrap_footer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrap_footer ul li {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.wrap_footer ul li:nth-child(1) {
  padding-top: 24px;
  margin-bottom: 11px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.wrap_footer ul li img {
  width: 13px;
}
.screening {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 82px;
  height: 76px;
}
.screening ul {
  display: flex;
}
.screening ul li {
  margin: 0 16px;
  height: 26px;
  border-bottom: 2px solid transparent;
  color: #666666;
  cursor: pointer;
}
.screening ul li.active {
  border-bottom: 2px solid #000;
  color: #333333;
  font-weight: 500;
}
#app {
  height: 100%;
}
.container {
  max-width: 1270px;
  margin: auto;
}
.container .alink.img-inner-box {
  border-radius: 6px;
  overflow: hidden;
}
.container .card {
  padding: 15px;
  width: 224px;
}
.container .card .card-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.container .card .card-container .card-media {
  /*min-height: 226px;*/
  max-height: 540px;
  overflow: hidden;
}
.container .card .card-container .card-content {
  background-color: #fff;
}
.card-content-info {
  padding-top: 14px;
  margin: 0 14px 14px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.container .card .card-container .card-content-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 10px;
}
.container .card .card-container .card-content-user .portrait {
  margin-left: 14px;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}
.container .card .card-container .card-content-user .nickname {
  flex: 1;
  color: #999999;
  font-size: 12px;
}
.container .card .card-container .card-content-user .like {
  width: 20px;
  padding-left: 14px;
  margin-right: 4px;
  background: url(../static/icons/icon_give_the_thumbs_up.png) no-repeat left center;
  background-size: 30%;
  font-weight: 500;
  color: #999999;
  font-size: 12px;
}
.container .card .card-container .card-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  cursor: pointer;
}
.container .card .card-container .card-cover:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.container .more {
  display: flex;
  justify-content: center;
  padding: 34px 0 66px;
  font-size: 14px;
  font-weight: 600;
}
.container .more div {
  cursor: pointer;
}
.fixation {
  position: fixed;
  bottom: 190px;
  right: 20px;
  display: flex;
}
.fixation .fixation_top {
  width: 100px;
  margin-right: 12px;
}
.fixation .fixation_top img {
  width: 100%;
}
.fixation .fixation_bot {
  width: 30px;
}
.fixation .fixation_bot img {
  margin-bottom: 8px;
  width: 30px;
  cursor: pointer;
}
.masking {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.masking.masking-none {
  display: none;
}
.masking img {
  width: 200px;
}
.download-prompt{
  margin-top: 12px;color: #333333;font-size: 16px;text-align: center;
}
.download-prompts{
  margin-top: 12px;color: #333333;font-size: 12px;text-align: center;
}
.not-yet{
  position: relative;
  width: 25%;
  padding: 13.6% 37%;
}
.agreement{
  margin: 10px 10px 30px 10px;padding:5px;height: 400px;overflow-y:scroll;overflow-x: hidden;
}
