body {
  margin: 0 0;
  font-family: "微软雅黑";
  background-color: #fff;
}

.clear {
  clear: both;
}

/*内容部分*/
.content {
  width: 100%;
}

/*标题部分*/
.contest-tittle {
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  background-color: #fff;
  height: 40px;
}

.contest-tittle .logo {
  width: 28%;
  float: left;
  margin-left: 5px;
  padding-top: 12px;
}

.contest-tittle span {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  background-color: #A3D99F;
  margin-top: 11px;
  margin-left: 5px;
  padding: 2px;
  border-radius: 4px;
}

.contest-tittle .nine {
  width: 6%;
  float: right;
  margin-right: 5px;
  padding-top: 10px;
}

/*顶部标题部分*/
.topTittle {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  height: 48px;
  z-index: 1000;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom: 1px solid #efefef;
}

.topTittle .logo {
  float: left;
  margin-left: 10px;
  height: 22px;
  margin-top: 13px;
}

.topTittle .right-opera {
  float: right;
  height: 48px;
}

.topTittle .right-opera img {
  padding: 12px;
  height: 48px;
  width: 48px;
  box-sizing: border-box;
}

.topTittle span {
  display: block;
  width: 50%;
  margin: 0 auto;
  text-align: left;
  height: 48px;
  line-height: 48px;
  margin-left: 130px;
}

/*占位图片*/
.picBox {
  width: 100%;
  height: 90px;
}

.picBox img {
  width: 100%;
  height: 100%;
}

/*更多内容*/
.moreTittleHidden {
  display: none;
}

.moreTittle {
  width: 100%;
  margin: 0 auto;
  color: #666;
  height: 100%;
  position: fixed;
  background-color: #999999;
  z-index: 1000;
  opacity: 0.5;
}

.moreList {
  background: #fff;
  position: fixed;
  z-index: 1000;
  margin-top: 12px;
  padding-bottom: 8px;
}

.moreList .listTittle {
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  padding: 8px 0;
  color: #666;
}

.listTittle::before {
  content: "";
  position: absolute;
  margin-left: 90%;
  margin-top: -24px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.topicList {
  margin-top: 4px;
  width: 95%;
  margin: 0 auto;
  max-height: 400px;
  overflow: auto;
}

.topicList span {
  display: block;
  float: left;
  width: 22.5%;
  border: 1px solid #eee;
  border-radius: 4px;
  line-height: 30px;
  text-align: center;
  margin-top: 10px;
  margin-right: 6px;
  color: #666;
  font-size: 14px;
}

.topicList span a {
  color: #666;
  text-decoration: none;
}

/*关闭按钮*/
.closeButton {
  text-align: center;
  margin-top: 15px;
}

.closeButton img {
  width: 6%;
}

/*更多内容部分*/
.main {
  width: 100%;
  font-size: 14px;
  color: #666;
  overflow-y: auto;
}

.mainBox {
  width: 95%;
  margin: 0 auto;
  display: block;
}

.mainBox .hidden-row {
  display: none;
}

.mainList {
  width: 100%;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.mainList img {
  width: 60px;
  height: 60px;
  float: left;
  border-radius: 5px;
}

.mainList .mainDetail {
  width: 58%;
  float: left;
  margin-left: 2%;
}

.mainList .typename {
  display: inline-block;
  color: #fff;
  background-color: #A3D99F;
  margin-top: 7px;
  margin-right: 5px;
  padding: 3px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.1;
}

.mainDetail span {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mainDetail p {
  padding: 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 8px;
}

.mainList .button {
  width: 18%;
  float: right;
  background-color: #FFF;
  outline: none;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-top: 14px;
  line-height: 24px;
  padding-top: 4px;
  color: #666;
  font-size: 14px;
}

/*蒙版*/

/*蒙版层*/
.panel {
  position: fixed;
  top: 0;
  background-color: #999999;
  opacity: 0.5;
  width: 100%;
  z-index: 1000;
  transition: all 1s;
  animation-duration: 0.5s;
}

/*蒙版内容*/
.panelContent {
  background-color: #fff;
  width: 100%;
  padding-bottom: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  overflow-y: scroll;
  z-index: 999999;
  transition: all 0.6s;
  animation-duration: 0.6s;
  animation-name: fadeInUpBig;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }

}

.slideInUp {
  animation-name: slideInUp;
}

.panelList {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.panelList img {
  margin: 3px 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.panelList .panelShare {
  color: #333;
  font-size: 14px;
  text-align: center;  /*margin-left:37.5%;*/
  margin: 0 auto; /* background-color:#C8C8C8;*/
  margin-top: 6px;
}

.panelList .panelTip {
  color: #E82201;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 16px;
}

.codeImg {
  margin-top: 10px;
  text-align: center;
  padding: 10px 0;
}

.codeImg img {
  width: 35%;
}