/*reset*/
.wrapped {
  max-width: 1200px;
  margin: 0 auto;
}
.svgIcon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
  margin-right: .2em
}
#collapse-head {
  color: #fff;
}
.am-topbar {
  margin-bottom: 0;
  border: none;
  background: #000;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.am-with-topbar-fixed-top {
  padding-top: 0;
}
.am-topbar-nav > li > a:after {
  border: none;
}
.am-nav a {
  color: inherit;
}
.am-nav a:hover {
  color: #357ed9;
}
.am-nav a:active {
  color: #6b6b6b;
}
.am-topbar-brand {
  padding: 0;
  float: left;
  line-height: 100px;
}
.am-topbar-brand img {
  max-height: 34px;
}
.am-topbar-nav {
  float: right;
}
.am-topbar-nav > li > a {
  position: relative;
  line-height: 100px;
  padding: 0 5px;
}
.am-nav > li > a:focus, .am-nav > li > a:hover, .am-nav > li > a.am-active {
  background: transparent;
  color: #1EC5EE;
}
#collapse-head ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 18px;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  #collapse-head ul {
    display: block;
    height: auto;
    float: none;
  }
  .am-topbar-brand {
    line-height: 50px;
    margin-left: 10px;
  }
  .am-topbar-brand img {
    height: 19px;
  }
  .am-topbar-nav > li > a {
    font-size: 15px;
    padding: .4em 1em;
    line-height: 1.6;
    text-align: center;
  }
  .am-btn.am-topbar-toggle {
    background: #000;
    color: #fff;
  }
}
.banner {
  min-height: 540px;
  background: url("../images/banner.png?v=1") no-repeat center top;
  background-size: contain;
}
main section.agenda {
  margin: 30px auto 65px;
}
.agenda .agenda_list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.agenda .agenda_list ul::before {
  content: '';
  width: 88%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EBC460), to(#FBB23E));
  background-image: -webkit-linear-gradient(top, #EBC460 0%, #FBB23E 100%);
  background-image: linear-gradient(180deg, #EBC460 0%, #FBB23E 100%);
}
.agenda .agenda_list {
  width: 93.277%;
  margin: 0 auto;
}
.agenda_list li {
  padding-top: 61px;
  -webkit-flex-basis: 130px;
  -ms-flex-preferred-size: 130px;
  flex-basis: 130px;
  font-size: 30px;
  color: #D3AC5A;
  text-align: center;
  position: relative;
}
.agenda_list li::before {
  content: '';
  width: 28px;
  height: 28px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD86D), to(#FBB03B));
  background-image: -webkit-linear-gradient(top, #FDD86D 0%, #FBB03B 100%);
  background-image: linear-gradient(180deg, #FDD86D 0%, #FBB03B 100%);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.agenda_list li::after {
  content: '';
  width: 2px;
  height: 43px;
  background: #FCB440;
  position: absolute;
  top: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.list_title {
  text-align: center;
}
.list_title img {
  max-height: 72px;
}
.list_title {
  margin: 100px auto;
}
#ranking .wrapped {
  min-height: 100vh;
  position: relative;
}
#ranking .svg--wrapper {
  position: absolute;
  width: 100%;
  top: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  font-size: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#ranking .svgIcon.loading {
  -webkit-animation: rotating infinite 1s linear;
  animation: rotating infinite 1s linear;
}
@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
#ranking .ranking_ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#ranking .ranking_ul > li {
  width: 380px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 60px;
  position: relative;
}
#ranking .ranking_ul > li:not(:nth-child(3n+3)) {
  margin-right: 30px;
}
#ranking .ranking_ul > li:not(:nth-child(1n+4)) {
  margin-top: 0;
}
#ranking .ranking_ul > li > .img--wrapper, #ranking .ranking_ul > li > a > .img--wrapper {
  width: 100%;
  height: 244px;
  overflow: hidden;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#242327), to(#1B1B1B));
  background: -webkit-linear-gradient(top, #242327 0%, #1B1B1B 100%);
  background: linear-gradient(180deg, #242327 0%, #1B1B1B 100%);
}
#ranking .ranking_ul > li.li-person > .img--wrapper, #ranking .ranking_ul > li.li-person > a > .img--wrapper{
  height: 342px;
}
#ranking .ranking_ul > li .img--wrapper img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#ranking .ranking_ul > li .img--wrapper img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#ranking .ranking_ul > li .img--wrapper .img--tip {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
#ranking .ranking_ul > li .tip--wrapper .tip_rank {
  height: 50px;
  background: #2C2A2A;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#ranking .ranking_ul > li .tip--wrapper .tip_rank .tip_score {
  padding-right: 12px;
  padding-left: 16px;
  font-size: 14px;
  color: #000000;
  background-image: -webkit-linear-gradient(179deg, #D3AC5A 0%, #FFE09E 100%);
  background-image: linear-gradient(-89deg, #D3AC5A 0%, #FFE09E 100%);
  border-radius: 0 34px 34px 0;
}
#ranking .ranking_ul > li .tip--wrapper .tip_rank .tip_score span {
  font-size: 30px;
}
#ranking .ranking_ul > li .tip--wrapper .tip_rank .tip_ranking {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 5px;
  font-size: 14px;
  color: #D3AC5A;
  line-height: 36px;
  text-align: center;
}
#ranking .ranking_ul > li .tip--wrapper .tip_rank .tip_ranking span {
  font-size: 36px;
}
#ranking .ranking_ul > li .tip--wrapper .tip_info {
  padding-left: 13px;
  font-size: 12px;
  color: #D3AC5A;
  line-height: 16px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#575454), to(#2C2A2A));
  background-image: -webkit-linear-gradient(top, #575454 0%, #2C2A2A 100%);
  background-image: linear-gradient(180deg, #575454 0%, #2C2A2A 100%);
}
#ranking .ranking_ul > li .li_title {
  font-size: 24px;
  font-family: PingFangSC-Semibold, PingFang SC, serif;
  font-weight: 600;
  color: #000000;
  line-height: 64px;
  text-align: center;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 1;
}
#ranking .ranking_ul > li .li_title::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-filter: blur(20px);
  filter: blur(20px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#ranking .ranking_ul > li .li_title .title-name {
  position: relative;
  z-index: 3;
}
#ranking .ranking_ul > li.li-person .li_title{
  position: absolute;
  top:278px;
  width:100%;
  z-index: 2;
}
#ranking .ranking_ul > li .vote_wrapper {
  padding: 0 16px 1px;
  background: #242327;
  margin: 4px auto 12px;
}
#ranking .ranking_ul > li .vote_total {
  height: 72px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#ranking .ranking_ul .vote_total .vote--wrapper {
  font-size: 20px;
  color: #D3AC5A;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#ranking .ranking_ul .vote--wrapper .img--wrapper {
  width: 20px;
  height: 20px;
  position: relative;
}
#ranking .ranking_ul .vote--wrapper .total_num {
  font-size: 16px;
  color: #79EBE3;
  height: 50px;
  line-height: 50px;
  margin-left: 5px;
}
#ranking .ranking_ul .vote--wrapper .total_num span {
  font-size: 36px;
}
#ranking .ranking_ul .vote_total .vote_participation {
  font-size: 16px;
  color: #79EBE3;
}
#ranking .ranking_ul .li_vote .score_list {
  padding-top: 20px;
  border-top: 1px solid #5D5D5D;
}
#ranking .ranking_ul .li_vote .score_list ul li {
  font-size: 16px;
  color: #fff;
  line-height: 22px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#ranking .ranking_ul .li_vote .vote_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#ranking .ranking_ul .li_vote .vote_list .vote_button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 183px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  color: #D3AC5A;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#ranking .ranking_ul .li_vote .vote_list .vote_button:first-child {
  margin-right: 14px;
}
#ranking .ranking_ul .li_vote .vote_list .vote_button:hover .fixModel.bshare-custom {
  visibility: visible;
}
#ranking .rank--re .ranking_ul > li .li_title {
  text-align: center;
}
#ranking .rank--re .ranking_ul > li .vote_total {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#ranking .rank--re .ranking_ul .vote_total .vote_participation {
  display: none;
}
.rules .rules_types > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.rules .rules_types > ul > li {
  -webkit-flex-basis: 382px;
  -ms-flex-preferred-size: 382px;
  flex-basis: 382px;
}
.rules .rules_types > ul > li img {
  max-width: 100%;
}
.rules .rules_types .vote_wrapper {
  background: #242327;
  margin-top: 12px;
  padding: 0 16px 1px;
}
.rules .rules_types .vote_total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.rules .rules_types .vote_total .vote--wrapper {
  font-size: 20px;
  color: #D3AC5A;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.rules .rules_types .vote--wrapper .img--wrapper {
  width: 16px;
  height: 16px;
  position: relative;
}
.rules .rules_types .vote--wrapper .img--wrapper img {
  vertical-align: super;
}
.rules .rules_types .vote--wrapper .total_num {
  font-size: 16px;
  color: #79EBE3;
  margin-left: 5px;
}
.rules .rules_types .vote--wrapper .total_num span {
  font-size: 24px;
}
.rules .rules_types .vote_total .vote_participation {
  font-size: 18px;
  color: #79EBE3;
}
.rules .rules_types .score_list {
  padding: 40px 0;
  border-top: 1px solid #5D5D5D;
}
.rules .rules_types .score_list .li-rule {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 24px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.rules .rules_types .score_list li:not(:last-child) {
  margin-bottom: 20px;
}
.rules .rules_types .score_list .li-rule::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-filter: blur(20px);
  filter: blur(20px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.rules .rules_types .score_list .li-rule .rule-name {
  font-size: 18px;
  font-family: PingFangSC-Regular, PingFang SC, serif;
  font-weight: 400;
  color: #000000;
  line-height: 64px;
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 3;
}
.footer_foot {
  border: none;
  margin-top: 0;
}
.my_alert {
  padding: 1.67em 1em;
  position: fixed;
  text-align: center;
  font-size: 18px;
  color: #fff;
  top: 35%;
  left: 50%;
  width: 70%;
  max-width: 300px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: none;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  z-index: 4;
}
/*分享弹窗*/
body .bsBox {
  width: 232px !important;
  height: 257px !important;
  text-align: center;
  background: #fff !important;
  border: solid 1px #d8d8d8;
}
body .bsTop {
  background: #fff;
  border: none;
}
.article-container .ws-left .button--share .sprite {
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.goTop li:nth-of-type(4) {
  border-color: #79EBE3;
}
.goTop li:nth-of-type(4) a {
  background: #79EBE3;
}
.mark--wrapper {
  width: 105px;
  height: 14px;
  padding: 0;
}
.mark--wrapper .b_star_1, .mark--wrapper .b_d1 {
  background: url('../images/sun_star.png') 0 0 no-repeat scroll transparent;
  background-size: 212px 100%
}
.mark--wrapper .b_star_1 {
  width: 105px;
  height: 14px;
  display: inline-block;
  vertical-align: top;
  background-position: -110px 0;
}
.mark--wrapper .b_d1 {
  width: 0;
}
.mark--wrapper .b_d1 {
  height: 14px;
  display: block;
  background-position: 0 0;
}
.fixModel.bshare-custom {
  width: 100px;
  height: 50px;
  visibility: hidden;
  position: absolute;
  right: 2%;
  bottom: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
.fixModel.bshare-custom a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #999;
}
.fixModel.bshare-custom div:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.bshare-custom a.bshare-weixin {
  background: #fff url("../images/wechat.png") no-repeat center;
  background-size: contain;
  margin-right: 2px;
}
.bshare-custom a.bshare-sinaminiblog {
  background: #fff url("../images/sina.png") no-repeat center;
  background-size: contain;
}
