/*!
 * ui-dialog.css
 * Date: 2014-07-03
 * https://github.com/aui/artDialog
 * (c) 2009-2014 TangBin, http://www.planeArt.cn
 *
 * This is licensed under the GNU LGPL, version 2.1 or later.
 * For details, see: http://www.gnu.org/licenses/lgpl-2.1.html
 */
.ui-dialog {
  *zoom: 1;
  _float: left;
  position: relative;
  background-color: #FFF;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  outline: 0;
  background-clip: padding-box;
  font-family: Helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
  border-radius: 19px;
}
.ui-popup-show .ui-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ui-popup-focus .ui-dialog {
  box-shadow: 0 0 4px #dcdcdc;
}
.ui-popup-modal .ui-dialog {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1), 0 0 256px rgba(255, 255, 255, 0.3);
}
.ui-dialog-grid {
  width: auto;
  margin: 0;
  border: 0 none;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
}
.ui-dialog-header,
.ui-dialog-body,
.ui-dialog-footer {
  padding: 0;
  border: 0 none;
  text-align: left;
  background: transparent;
}
.ui-dialog-header {
  white-space: nowrap;
  border-bottom: 1px solid #E5E5E5;
}
.ui-dialog-close {
  position: relative;
  _position: absolute;
  float: right;
  top: 13px;
  right: 13px;
  _height: 26px;
  padding: 0 4px;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #FFF;
  opacity: .2;
  filter: alpha(opacity=20);
  cursor: pointer;
  background: transparent;
  _background: #FFF;
  border: 0;
  -webkit-appearance: none;
}
.ui-dialog-close:hover,
.ui-dialog-close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.ui-dialog-title {
  margin: 0;
  line-height: 1.428571429;
  min-height: 16.428571429px;
  padding: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  cursor: default;
}
.ui-dialog-body {
  text-align: center;
}
.ui-dialog-content {
  position: relative;
  vertical-align: middle;
  *zoom: 1;
  *display: inline;
  text-align: left;
}
.ui-dialog-footer {
  padding: 0 20px 20px 20px;
}
.ui-dialog-statusbar {
  float: left;
  margin-right: 20px;
  padding: 6px 0;
  line-height: 1.428571429;
  font-size: 14px;
  color: #888;
  white-space: nowrap;
}
.ui-dialog-statusbar label:hover {
  color: #333;
}
.ui-dialog-statusbar input,
.ui-dialog-statusbar .label {
  vertical-align: middle;
}
.ui-dialog-button {
  float: right;
  white-space: nowrap;
}
.ui-dialog-footer button + button {
  margin-bottom: 0;
  margin-left: 5px;
}
.ui-dialog-footer button {
  width: auto;
  overflow: visible;
  display: inline-block;
  padding: 6px 12px;
  _margin-left: 5px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.ui-dialog-footer button:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.ui-dialog-footer button:hover,
.ui-dialog-footer button:focus {
  color: #333333;
  text-decoration: none;
}
.ui-dialog-footer button:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.ui-dialog-footer button[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui-dialog-footer button {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.ui-dialog-footer button:hover,
.ui-dialog-footer button:focus,
.ui-dialog-footer button:active {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.ui-dialog-footer button:active {
  background-image: none;
}
.ui-dialog-footer button[disabled],
.ui-dialog-footer button[disabled]:hover,
.ui-dialog-footer button[disabled]:focus,
.ui-dialog-footer button[disabled]:active {
  background-color: #ffffff;
  border-color: #cccccc;
}
.ui-dialog-footer button.ui-dialog-autofocus {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
}
.ui-dialog-footer button.ui-dialog-autofocus:hover,
.ui-dialog-footer button.ui-dialog-autofocus:focus,
.ui-dialog-footer button.ui-dialog-autofocus:active {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.ui-dialog-footer button.ui-dialog-autofocus:active {
  background-image: none;
}
.ui-popup-top-left .ui-dialog,
.ui-popup-top .ui-dialog,
.ui-popup-top-right .ui-dialog {
  top: -8px;
}
.ui-popup-bottom-left .ui-dialog,
.ui-popup-bottom .ui-dialog,
.ui-popup-bottom-right .ui-dialog {
  top: 8px;
}
.ui-popup-left-top .ui-dialog,
.ui-popup-left .ui-dialog,
.ui-popup-left-bottom .ui-dialog {
  left: -8px;
}
.ui-popup-right-top .ui-dialog,
.ui-popup-right .ui-dialog,
.ui-popup-right-bottom .ui-dialog {
  left: 8px;
}
.ui-dialog-arrow-a,
.ui-dialog-arrow-b {
  position: absolute;
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
  _color: #FF3FFF;
  _filter: chroma(color=#ff3fff);
  border: 8px dashed transparent;
}
.ui-popup-follow .ui-dialog-arrow-a,
.ui-popup-follow .ui-dialog-arrow-b {
  display: block;
}
.ui-popup-top-left .ui-dialog-arrow-a,
.ui-popup-top .ui-dialog-arrow-a,
.ui-popup-top-right .ui-dialog-arrow-a {
  bottom: -16px;
  border-top: 8px solid #dcdcdc;
}
.ui-popup-top-left .ui-dialog-arrow-b,
.ui-popup-top .ui-dialog-arrow-b,
.ui-popup-top-right .ui-dialog-arrow-b {
  bottom: -15px;
  border-top: 8px solid #fff;
}
.ui-popup-top-left .ui-dialog-arrow-a,
.ui-popup-top-left .ui-dialog-arrow-b {
  left: 15px;
}
.ui-popup-top .ui-dialog-arrow-a,
.ui-popup-top .ui-dialog-arrow-b {
  left: 50%;
  margin-left: -8px;
}
.ui-popup-top-right .ui-dialog-arrow-a,
.ui-popup-top-right .ui-dialog-arrow-b {
  right: 15px;
}
.ui-popup-bottom-left .ui-dialog-arrow-a,
.ui-popup-bottom .ui-dialog-arrow-a,
.ui-popup-bottom-right .ui-dialog-arrow-a {
  top: -16px;
  border-bottom: 8px solid #dcdcdc;
}
.ui-popup-bottom-left .ui-dialog-arrow-b,
.ui-popup-bottom .ui-dialog-arrow-b,
.ui-popup-bottom-right .ui-dialog-arrow-b {
  top: -15px;
  border-bottom: 8px solid #fff;
}
.ui-popup-bottom-left .ui-dialog-arrow-a,
.ui-popup-bottom-left .ui-dialog-arrow-b {
  left: 15px;
}
.ui-popup-bottom .ui-dialog-arrow-a,
.ui-popup-bottom .ui-dialog-arrow-b {
  margin-left: -8px;
  left: 50%;
}
.ui-popup-bottom-right .ui-dialog-arrow-a,
.ui-popup-bottom-right .ui-dialog-arrow-b {
  right: 15px;
}
.ui-popup-left-top .ui-dialog-arrow-a,
.ui-popup-left .ui-dialog-arrow-a,
.ui-popup-left-bottom .ui-dialog-arrow-a {
  right: -16px;
  border-left: 8px solid #7C7C7C;
}
.ui-popup-left-top .ui-dialog-arrow-b,
.ui-popup-left .ui-dialog-arrow-b,
.ui-popup-left-bottom .ui-dialog-arrow-b {
  right: -15px;
  border-left: 8px solid #fff;
}
.ui-popup-left-top .ui-dialog-arrow-a,
.ui-popup-left-top .ui-dialog-arrow-b {
  top: 15px;
}
.ui-popup-left .ui-dialog-arrow-a,
.ui-popup-left .ui-dialog-arrow-b {
  margin-top: -8px;
  top: 50%;
}
.ui-popup-left-bottom .ui-dialog-arrow-a,
.ui-popup-left-bottom .ui-dialog-arrow-b {
  bottom: 15px;
}
.ui-popup-right-top .ui-dialog-arrow-a,
.ui-popup-right .ui-dialog-arrow-a,
.ui-popup-right-bottom .ui-dialog-arrow-a {
  left: -16px;
  border-right: 8px solid #7C7C7C;
}
.ui-popup-right-top .ui-dialog-arrow-b,
.ui-popup-right .ui-dialog-arrow-b,
.ui-popup-right-bottom .ui-dialog-arrow-b {
  left: -15px;
  border-right: 8px solid #fff;
}
.ui-popup-right-top .ui-dialog-arrow-a,
.ui-popup-right-top .ui-dialog-arrow-b {
  top: 15px;
}
.ui-popup-right .ui-dialog-arrow-a,
.ui-popup-right .ui-dialog-arrow-b {
  margin-top: -8px;
  top: 50%;
}
.ui-popup-right-bottom .ui-dialog-arrow-a,
.ui-popup-right-bottom .ui-dialog-arrow-b {
  bottom: 15px;
}
@-webkit-keyframes ui-dialog-loading {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes ui-dialog-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ui-dialog-loading {
  vertical-align: middle;
  position: relative;
  display: block;
  *zoom: 1;
  *display: inline;
  overflow: hidden;
  width: 32px;
  height: 32px;
  top: 50%;
  margin: -16px auto 0 auto;
  font-size: 0;
  text-indent: -999em;
  color: #666;
}
.ui-dialog-loading {
  width: 100%\9;
  text-indent: 0\9;
  line-height: 32px\9;
  text-align: center\9;
  font-size: 12px\9;
}
.ui-dialog-loading::after {
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  margin: 14.5px 0 0 14.5px;
  border-radius: 100%;
  box-shadow: 0 -10px 0 1px #cccccc, 10px 0px #cccccc, 0 10px #cccccc, -10px 0 #cccccc, -7px -7px 0 0.5px #cccccc, 7px -7px 0 1.5px #cccccc, 7px 7px #cccccc, -7px 7px #cccccc;
  -webkit-transform: rotate(360deg);
  -webkit-animation: ui-dialog-loading 1.5s infinite linear;
  transform: rotate(360deg);
  animation: ui-dialog-loading 1.5s infinite linear;
  display: none\9;
}
body .pop-box .share-btn a.bds_more {
  display: block;
  background: none;
  width: 100%;
  height: 100%;
}
/*
 *周精选css
 *author:muxiaochen
 *date:2015.7.01
 */
/*css resets*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-size: 62.5%;
  line-height: 1;
  font-family: Arial, Tahoma, sans-serif;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  border: 0;
  max-width: 100%;
}
p {
  font-size: 1.2em;
  line-height: 1.0em;
  color: #333;
}
body {
  background: #fdfdfd;
  height: auto;
  overflow-x: hidden;
}
/*backgrund*/
.theme {
  position: relative;
  width: 100%;
  height: 0;
  z-index: -1;
}
.theme .theme-cont {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
.theme .theme-cont div {
  width: 100%;
}
.theme .theme-cont .theme-bg-1 {
  height: 243px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/theme01.png") center center no-repeat;
}
.wrap {
  width: 980px;
  height: auto;
  margin: 0 auto;
}
.bdshare-button-style0-16 a,
.bdshare-button-style0-16 .bds_more {
  float: left;
  font-size: 12px;
  line-height: 16px;
  padding-left: 0px;
  height: 16px;
  /*background-image: url(../http://i.7k7kimg.cn/zixun/2014/1208month/share/icons_0_16.png?v=d754dcc0.png);*/
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 6px 6px 6px 0;
}
/* banner */
.banner {
  height: 243px;
  position: relative;
}
.banner .date-box {
  height: 22px;
  width: 340px;
  position: absolute;
  bottom: 29px;
  left: 50%;
  margin-left: -188px;
}
.banner .date-box h1 {
  font: normal 22px/22px "Microsoft YaHei";
  color: #fff;
  text-align: center;
}
.banner .discuss-box {
  width: 204px;
  height: 186px;
  position: absolute;
  top: 12px;
  right: 74px;
}
.banner .discuss-box .discuss {
  width: 170px;
  height: 137px;
  overflow: hidden;
  margin: 0 auto;
}
.banner .discuss-box ul li {
  font-size: 12px;
  color: #efeeee;
  border-bottom: 1px dashed #e4bf28;
  font: normal 12px/24px "SimSun";
}
.banner .discuss-box ul li span {
  color: #ffd53b;
}
.banner .discuss-box .speak {
  width: 140px;
  height: 31px;
  margin: 0 auto;
  margin-top: 8px;
}
.banner .discuss-box .speak-btn {
  width: 140px;
  height: 31px;
  display: block;
  cursor: pointer;
}
.banner .discuss-box .speak-btn:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/speak-btn.png") no-repeat center center;
}
.lt {
  float: left;
}
.rt {
  float: right;
}
.title-box {
  width: 980px;
  height: 48px;
}
.title-box .more {
  width: 53px;
  height: 22px;
  display: block;
  float: right;
  margin-right: 30px;
  margin-top: 20px;
}
/* box1 */
.box1 {
  width: 980px;
  height: 160px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box1-bg2.png") no-repeat center center;
}
.box1 .xigua {
  width: 303px;
  height: 153px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/xigua-bg.png") no-repeat center center;
  float: left;
  margin-top: 3px;
  position: relative;
}
.box1 .xigua a {
  display: block;
  width: 84px;
  height: 22px;
  position: absolute;
  top: 53px;
  right: 27px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/join.gif") no-repeat center center;
}
.box1 .box1-main {
  width: 654px;
  height: 155px;
  float: left;
  margin-top: 1px;
  margin-left: 20px;
  position: relative;
}
.box1 .box1-main .box1-top {
  overflow: hidden;
  margin-top: 10px;
}
.box1 .box1-main .box1-top i {
  display: block;
  float: left;
  width: 91px;
  height: 33px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/current.png") no-repeat center center;
  margin-right: 14px;
}
.box1 .box1-main .box1-top span {
  display: block;
  font: normal 12px/12px "SimSun";
  color: #636363;
  vertical-align: bottom;
  float: left;
  margin-right: 78px;
  padding-top: 19px;
}
.box1 .box1-main .box1-top form {
  float: left;
  margin-top: 11px;
}
.box1 .box1-main p {
  width: 640px;
  font: normal 14px/22px "SimSun";
  color: #3e3e3e;
  text-indent: 2em;
  margin-top: 10px;
}
.box1 .share-box {
  position: absolute;
  bottom: 5px;
  right: 22px;
}
.box1 .bd-share {
  float: left;
  width: 173px;
  display: inline;
  /*margin-top: 10px;*/
}
.box1 .bd-share a {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-position: 0 0!important;
  padding-left: 0px;
}
.box1 .bd-share span {
  padding: 0 2px 0 0;
  background-position: 0 0!important;
}
.box1 .bd-share .bds_qzone {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/qq.png) no-repeat;
  margin-right: 3px;
}
.box1 .bd-share .bds_tsina {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/sina.png) no-repeat;
  margin-right: 3px;
}
.box1 .bd-share .bds_tqq {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/weibo.png) no-repeat;
  margin-right: 3px;
}
.box1 .bd-share .bds_renren {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/ren.png) no-repeat;
  margin-right: 3px;
}
.box1 .bd-share .bds_t163 {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/yi.png) no-repeat;
  margin-right: 3px;
}
.box1 .bd-share .bds_more {
  padding-left: 0;
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/jia.png) no-repeat;
  margin-right: 3px;
}
.box1 .bd-share .bds_count {
  height: 26px;
  width: 52px;
  color: #135dbe;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/count.jpg) center bottom no-repeat;
  vertical-align: middle;
}
.box1 .bd-share .share-to {
  width: 48px;
  line-height: 37px;
  color: #AAAAAA;
  float: left;
  font-size: 12px;
}
.box1 .end-share {
  padding-bottom: 0;
  width: auto;
  height: 30px;
  background: red;
}
.box1 .collect {
  display: inline;
  margin-top: 8px;
  float: left;
  width: 72px;
  height: 22px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/collect.jpg) no-repeat;
}
.box1 .collect:hover {
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/collect-h.jpg) no-repeat;
}
/* main-box */
.main-box {
  overflow: hidden;
}
.box-left {
  float: left;
  width: 252px;
  height: auto;
  margin-right: 6px;
}
.box-left .title-box {
  width: 100%;
  height: 50px;
}
.box-left .title-box h2 {
  font: normal 20px/50px "Microsoft YaHei";
  color: #333;
  text-indent: 29px;
  float: left;
}
.box-left .title-box a {
  font: normal 12px/12px "SimSun";
  color: #aaa;
  float: right;
  margin-top: 23px;
  margin-right: 12px;
}
.box-left .box-left1 {
  width: 252px;
  height: 860px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box-left1.png") no-repeat center center;
  margin-top: 5px;
  overflow: hidden;
}
.box-left .box-left1 .title-box {
  width: 100%;
  height: 43px;
}
.box-left .box-left1 .title-box h2 {
  font: normal 20px/43px "Microsoft YaHei";
  color: #333;
  text-indent: 29px;
  float: left;
}
.box-left .box-left1 .tab {
  width: 250px;
  margin: 0 auto;
  overflow: hidden;
}
.box-left .box-left1 .tab li {
  cursor: pointer;
  width: 125px;
  _width: 124px;
  height: 38px;
  float: left;
  border: 1px solid #bed7e8;
  background: #def3fc;
  font: normal 16px/38px "Microsoft YaHei";
  color: #494949;
  text-align: center;
}
.box-left .box-left1 .tab li.cur {
  border: none;
  border-top: 3px solid #bed7e8;
  background: #fff;
  font: normal 16px/34px "Microsoft YaHei";
}
.box-left .box-left1 .rank-box {
  width: 238px;
  height: 769px;
  margin: 0 auto;
  margin-top: 6px;
  overflow: hidden;
}
.box-left .box-left1 .rank-box .wx img {
  width: 238px;
  height: 164px;
}
.box-left .box-left1 .rank-box .rank-list {
  width: 238px;
  height: 597px;
  margin: 0 auto;
  margin-top: 6px;
  _margin-top: 0px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/rank.png") no-repeat center center;
  display: none;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box {
  width: 185px;
  height: 86px;
  margin-left: 53px;
  overflow: hidden;
  position: relative;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box.rank-list-h {
  height: 83px;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box .popularity {
  width: 54px;
  height: 54px;
  display: block;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/popularity.png") no-repeat center center;
  position: absolute;
  top: 1px;
  right: 1px;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box .popularity.reputation {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/reputation.png") no-repeat center center;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box img {
  width: 70px;
  height: 70px;
  float: left;
  margin-right: 10px;
  margin-top: 7px;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box ul {
  float: left;
  width: 90px;
  margin-top: 20px;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box ul p {
  font: normal 12px/22px "Microsoft YaHei";
  color: #333;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box ul span {
  font: normal 12px/22px "Microsoft YaHei";
  color: #747474;
}
.box-left .box-left1 .rank-box .rank-list .rank-list-box ul span i {
  color: #ed6b32;
}
.box-left .box-left2 {
  width: 252px;
  height: 337px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box-left2.png") no-repeat center center;
  margin-top: 5px;
}
.box-left .box-left2 .huodong {
  width: 238px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.box-left .box-left2 .huodong img {
  width: 238px;
  height: 109px;
}
.box-left .box-left2 .huodong .shade {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 238px;
  height: 109px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/238X109.png") no-repeat center center;
}
.box-left .box-left2 .huodong:hover .shade {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/238X109-shade.png") no-repeat center center;
}
.box-left .box-left2 .huodong p {
  font: normal 14px/30px "Microsoft YaHei";
  color: #747474;
  text-align: center;
}
.box-left .box-left3 {
  width: 252px;
  height: 258px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box-left3.png") no-repeat center center;
  margin-top: 5px;
}
.box-left .box-left4 {
  width: 252px;
  height: 367px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box-left4.png") no-repeat center center;
  margin-top: 4px;
}
.box-left .box-left6 {
  width: 252px;
  height: 274px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box-left6.png") no-repeat center center;
  margin-top: 5px;
}
.box-left .box-left6 .cartoon ul {
  overflow: hidden;
  margin-left: -3px;
  margin-top: 17px;
}
.box-left .box-left6 .cartoon ul li {
  width: 100px;
  height: auto;
  float: left;
  margin-left: 20px;
  display: inline-block;
  _margin-left: 13px;
}
.box-left .box-left6 .cartoon ul li img {
  width: 100px;
  height: 140px;
}
.box-left .box-left6 .cartoon ul li p {
  font: normal 14px/28px "Microsoft YaHei";
  color: #464646;
}
.box-left .img-list {
  overflow: hidden;
  float: left;
}
.box-left .img-list li {
  position: relative;
  font-size: 12px;
  display: -moz-inline-stack;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 70px;
  overflow: hidden;
  margin-left: 10px;
  _margin-left: 8px;
  float: left;
}
.box-left .img-list li a {
  color: #3f3f3f;
  text-decoration: none;
}
.box-left .img-list li img {
  width: 70px;
  height: 70px;
  display: inline-block;
  vertical-align: top;
}
.box-left .img-list li .ui-li-name {
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 32px;
  cursor: pointer;
  height: 32px;
}
.box-right {
  float: left;
  width: 722px;
  height: auto;
  overflow: hidden;
}
.box-right .content {
  width: 980px;
  height: 297px;
  overflow: hidden;
}
.box-right .content .left {
  width: 325px;
  height: auto;
}
.box-right .box-right1 {
  width: 722px;
  height: 351px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box-right1.png") no-repeat center center;
  margin-top: 5px;
}
.box-right .box-right2 {
  width: 722px;
  height: 351px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box-right2.png") no-repeat center center;
  margin-top: 5px;
}
.box-right .box-right2 .right .btn-box a {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/stare-blue-btn.png") no-repeat center center;
}
.box-right .box-right2 .right .btn-box a:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/stare-blue-btn-hover.png") no-repeat center center;
}
.box-right .title {
  height: 49px;
  width: 722px;
  overflow: hidden;
}
.box-right .title span {
  display: inline-block;
  width: 25px;
  height: 27px;
  vertical-align: middle;
  font: normal 16px/26px "Microsoft YaHei";
  _line-height: 49px;
  color: #fff;
  text-indent: 8px;
  margin-right: 10px;
  margin-left: 10px;
  margin-top: -4px;
  _margin-top: 0px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/title-circle.png") no-repeat center center;
}
.box-right .title a {
  font: normal 20px/49px "Microsoft YaHei";
  color: #333;
}
.box-right .title h2 {
  font: normal 20px/49px "Microsoft YaHei";
  color: #333;
  width: 500px;
  height: 49px;
  float: left;
}
.box-right .title .score-box {
  width: 166px;
  height: 40px;
  float: right;
}
.box-right .title .score-box ul {
  overflow: hidden;
  margin-top: 10px;
}
.box-right .title .score-box ul li {
  width: 26px;
  height: 33px;
  float: left;
  margin-left: 5px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/score0.png") no-repeat center center;
}
.box-right .title .score-box ul li.score1 {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/score1.png") no-repeat center center;
}
.box-right .title .score-box ul li.score2 {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/score2.png") no-repeat center center;
}
.box-right .title .score-box ul li.score0 {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/score0.png") no-repeat center center;
}
.box-right .left {
  width: 328px;
  height: 287px;
  float: left;
  overflow: hidden;
}
.box-right .left .J-focus-box-img {
  display: none;
}
.box-right .left .img-box {
  width: 307px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.box-right .left .img-box img {
  width: 307px;
  height: 189px;
}
.box-right .left .img-box i {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 307px;
  height: 189px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/307X189.png") no-repeat center center;
}
.box-right .left ul {
  overflow: hidden;
  margin: 0 auto;
  margin-left: 2px;
  margin-top: 10px;
  _margin-left: 0px;
}
.box-right .left ul li {
  width: 96px;
  height: 72px;
  float: left;
  position: relative;
  display: inline-block;
  margin-left: 9px;
  _margin-left: 7px;
  cursor: pointer;
}
.box-right .left ul li img {
  width: 96px;
  height: 67px;
  margin-top: 5px;
}
.box-right .left ul li i {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 96px;
  height: 72px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/96X67.png") no-repeat center center;
}
.box-right .left ul li.hover i {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/96X67_hover.png") no-repeat center center;
}
.box-right .right {
  width: 392px;
  height: 287px;
  float: left;
  overflow: hidden;
}
.box-right .right .introduce {
  width: 100%;
  height: 123px;
}
.box-right .right .introduce h3 {
  font: normal 14px/22px "Microsoft YaHei";
  color: #549eff;
  font-weight: 700;
}
.box-right .right .introduce p {
  font: normal 12px/24px "Microsoft YaHei";
  color: #747474;
}
.box-right .right .introduce span {
  width: 3px;
  height: 5px;
  display: inline-block;
  margin-right: 4px;
  margin-top: -3px;
  vertical-align: middle;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/title-arrows.png") no-repeat center center;
}
.box-right .right .btn-box {
  overflow: hidden;
}
.box-right .right .btn-box a {
  display: inline-block;
  width: 150px;
  height: 41px;
  float: left;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/stare-red-btn.png") no-repeat center center;
  margin-right: 11px;
}
.box-right .right .btn-box a:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/stare-red-btn-hover.png") no-repeat center center;
}
.box-right .right .btn-box span {
  display: inline-block;
  width: 166px;
  height: 41px;
  float: left;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/like-btn.png") no-repeat center center;
  cursor: pointer;
  font: normal 12px/41px "Microsoft YaHei";
  color: #8c8b8b;
  text-indent: 70px;
  overflow: hidden;
}
.box-right .right .btn-box span:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/like-btn-hover.png") no-repeat center center;
}
.box-right .right .btn-box span i {
  font: normal 12px/41px "Microsoft YaHei";
  color: #ff731d;
}
.box-right .right .kind-box {
  width: auto;
  height: 105px;
  overflow: hidden;
  margin-top: 17px;
}
.box-right .right .kind-box .kind {
  width: 30px;
  height: 91px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/kind.png") no-repeat center center;
  float: left;
  display: inline-block;
}
.box-right .right .kind-box ul {
  overflow: hidden;
  float: left;
}
.box-right .right .kind-box ul li {
  position: relative;
  font-size: 12px;
  display: -moz-inline-stack;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 70px;
  overflow: hidden;
  margin-left: 8px;
  _margin-left: 6px;
  float: left;
}
.box-right .right .kind-box ul li a {
  color: #3f3f3f;
  text-decoration: none;
}
.box-right .right .kind-box ul li img {
  width: 70px;
  height: 70px;
  display: inline-block;
  vertical-align: top;
}
.box-right .right .kind-box ul li .ui-li-name {
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 28px;
  cursor: pointer;
  height: 28px;
}
.box-right .right .kind-box .more {
  width: 20px;
  height: 59px;
  display: inline-block;
  float: left;
  margin-top: 16px;
  margin-left: 10px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/more.png") no-repeat center center;
}
.box-right .right .kind-box .more:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/more-hover.png") no-repeat center center;
}
/* box3 */
.box3 {
  width: 980px;
  height: 274px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/box3-bg.png") no-repeat center center;
  margin-top: 6px;
}
.box3 .title-box {
  width: 100%;
  height: 50px;
}
.box3 .title-box h2 {
  font: normal 20px/50px "Microsoft YaHei";
  color: #333;
  text-indent: 29px;
  float: left;
}
.box3 .title-box a {
  font: normal 12px/12px "SimSun";
  color: #aaa;
  float: right;
  margin-top: 23px;
  margin-right: 12px;
}
.box3 .img-box {
  position: relative;
  width: 970px;
  height: 210px;
  margin: 0 auto;
}
.box3 .img-box .slider-wrap {
  width: 916px;
  overflow: hidden;
  position: relative;
  height: 210px;
  margin: 0 auto;
  left: 0px;
}
.box3 .img-box .pic {
  overflow: hidden;
  zoom: 1;
  width: 9999px;
  position: absolute;
  left: 0;
  top: 0;
}
.box3 .img-box .pic li {
  position: relative;
  float: left;
  display: inline;
  width: 205px;
  margin: 15px 12px 0;
  text-align: center;
  line-height: 22px;
  color: #000;
}
.box3 .img-box .pic li img {
  display: block;
  width: 205px;
  height: 124px;
  margin: 0 auto;
}
.box3 .img-box .pic li .tit {
  position: relative;
  display: block;
  height: 22px;
  line-height: 22px;
  margin: 6px auto 0;
  padding-left: 8px;
  overflow: hidden;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/tit.png") no-repeat left top;
}
.box3 .img-box .pic li span {
  display: block;
  height: 22px;
  line-height: 22px;
  padding-right: 8px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/tit.png") no-repeat right top;
}
.box3 .img-box .pic li .status {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 64px;
  height: 64px;
}
.box3 .img-box .pic li .mask {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 205px;
  height: 124px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/w_z.png") no-repeat;
}
.box3 .img-box .pic li .time {
  height: 22px;
  overflow: hidden;
  font: normal 12px/22px "Microsoft YaHei";
  font-weight: 700;
}
.box3 .img-box .pic li .s1 {
  display: block;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/ing.png") no-repeat;
}
.box3 .prev,
.box3 .next {
  width: 29px;
  height: 65px;
  position: absolute;
  top: 63px;
  left: 6px;
  border: 0px;
  cursor: pointer;
}
.box3 .next {
  right: 6px;
  left: auto;
}
/* comment*/
.comment {
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 980px;
  margin-top: 6px;
}
.comment .comment-top {
  width: 980px;
  padding-top: 184px;
  _padding-top: 100px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/iframe-top.png") no-repeat 0 top;
}
.comment .comment-main {
  padding: 0px 15px;
  width: 986px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/iframe-main.png") repeat-y 0 0;
}
.comment .comment-main iframe {
  margin-top: -100px;
  _margin-top: -5px;
  margin-left: 10px;
}
.comment .comment-bottom {
  padding-bottom: 30px;
  width: 980px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/iframe-bottom.png") no-repeat 0 bottom;
}
/* foot */
.foot {
  width: 100%;
  height: 155px;
  position: relative;
  margin: 0 auto;
  background: #fff;
  margin-top: 15px;
  border-top: 1px solid #efefef;
}
.foot .foot-box {
  width: 980px;
  margin: 0 auto;
  line-height: 24px;
  bottom: 128px;
  color: #bfbfbf;
}
.foot .foot-box a {
  color: #bfbfbf;
  margin-left: 10px;
}
.foot .foot-box span {
  float: right;
}
/* 弹窗 */
.pop-box {
  width: 387px;
  height: 235px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/pop-bg.png") no-repeat;
  position: relative;
}
.pop-box .del {
  display: block;
  width: 43px;
  height: 34px;
  position: absolute;
  top: 0px;
  right: 0px;
}
.pop-box .text-box {
  width: 170px;
  height: auto;
  margin: 0 auto;
  padding-top: 46px;
  text-align: center;
}
.pop-box .text-box h3 {
  font: normal 20px/48px "Microsoft YaHei";
  color: #333;
}
.pop-box .text-box p {
  font: normal 14px/24px "Microsoft YaHei";
  color: #666;
}
.pop-box .share-btn {
  display: block;
  width: 111px;
  height: 34px;
  position: absolute;
  bottom: 66px;
  left: 76px;
  cursor: pointer;
}
.pop-box .sure-btn {
  display: block;
  width: 90px;
  height: 34px;
  position: absolute;
  bottom: 66px;
  right: 92px;
  cursor: pointer;
}
/* scroll-top */
.scroll-top-box {
  position: absolute;
  left: 50%;
  margin-left: 505px;
  top: 80px;
  width: 78px;
  z-index: 9999;
}
.scroll-return-top {
  width: 78px;
  height: 78px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/return-top.png") no-repeat 0 0;
  /*_background: none;
    _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://i.7k7kimg.cn/zixun/2014/1128aweek/return-top.png");*/
  cursor: pointer;
  position: absolute;
  left: -5px;
}
.scroll-item-ul {
  width: 60px;
  height: 300px;
  background: #fff;
  position: absolute;
  top: 78px;
}
.scroll-item-ul a {
  display: block;
  height: 55px;
  width: 59px;
  border: 1px solid #e3e3e3;
  font-size: 16px;
  font-family: "Microsoft YaHei";
  color: #b4b4b4;
  text-align: center;
  margin: 0 auto;
  border-bottom: none;
  padding-top: 10px;
}
.scroll-item-ul a .iphone {
  display: none;
  width: 138px;
  height: 188px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/iphone.png") no-repeat center center;
  position: absolute;
  top: 0px;
  right: -143px;
}
.scroll-item-ul a.return {
  border-bottom: 1px solid #e3e3e3;
}
.scroll-item-ul a:hover p {
  color: #494949;
}
.scroll-item-ul a:hover .iphone {
  display: block;
}
.scroll-item-ul a p {
  font: normal 14px/18px "Microsoft YaHei";
  color: #b4b4b4;
}
.scroll-item-ul a:hover,
.scroll-item-ul a.hover {
  background: #f5f5f5;
  color: #494949;
}
