/*!
 * 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%;
}
/*
 *鍏竴鍎跨鑺傞〉闈ss
 *author:muxiaochen
 *date:2015.5.26
 */
/*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: #c6e8ff;
  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: 596px;
  background: url(http://n.7k7kimg.cn/2015/0728/1438069563912.jpg) center center no-repeat;
}
.theme .theme-cont .theme-bg-2 {
  height: 676px;
  background: url(http://i.7k7kimg.cn/zixun/2015/0728holiday/theme02.jpg) center center no-repeat;
}
.theme .theme-cont .theme-bg-3 {
  height: 421px;
  background: url(http://i.7k7kimg.cn/zixun/2015/0728holiday/theme03.jpg) center center no-repeat;
}
.theme .theme-cont .theme-bg-4 {
  height: 484px;
  background: url(http://i.7k7kimg.cn/zixun/2015/0728holiday/theme04.jpg) center center no-repeat;
}
.theme .theme-cont .theme-bg-5 {
  height: 308px;
  background: url(http://i.7k7kimg.cn/zixun/2015/0728holiday/theme05.jpg) 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: 748px;
  position: relative;
}
.banner .share-box {
  position: absolute;
  top: 11px;
  left: 50%;
  margin-left: -287px;
}
.banner .bd-share {
  float: left;
  width: 173px;
  display: inline;
  /*margin-top: 10px;*/
}
.banner .bd-share a {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-position: 0 0!important;
  padding-left: 0px;
}
.banner .bd-share span {
  padding: 0 2px 0 0;
  background-position: 0 0!important;
}
.banner .bd-share .bds_qzone {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/qq.png) no-repeat;
  margin-right: 3px;
}
.banner .bd-share .bds_tsina {
  height: 26px;
  width: 26px;
  background: url(http://i5.7k7kimg.cn/cms/cms10/20141223/144521_2873.png) no-repeat;
  margin-right: 3px;
}
.banner .bd-share .bds_tqq {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/weibo.png) no-repeat;
  margin-right: 3px;
}
.banner .bd-share .bds_renren {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/ren.png) no-repeat;
  margin-right: 3px;
}
.banner .bd-share .bds_t163 {
  height: 26px;
  width: 26px;
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/yi.png) no-repeat;
  margin-right: 3px;
}
.banner .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;
}
.banner .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;
}
.banner .bd-share .share-to {
  width: 48px;
  line-height: 37px;
  color: #AAAAAA;
  float: left;
  font-size: 12px;
}
.banner .end-share {
  padding-bottom: 0;
  width: auto;
  height: 30px;
  background: red;
}
.banner .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;
}
.banner .collect:hover {
  background: url(http://i.7k7kimg.cn/zixun/2014/1208month/collect-h.jpg) no-repeat;
}
.banner select {
  display: block;
  width: 100%;
  outline: none;
}
.banner .select {
  display: inline;
  margin-left: 8px;
  margin-top: 9px;
  float: left;
  width: 176px;
  height: 18px;
  background: #fff;
  border: 1px solid #909b93;
}
.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 {
  height: 945px;
  position: relative;
  width: 980px;
}
.box1 .left {
  width: 238px;
  height: 863px;
  margin-top: 59px;
}
.box1 .right {
  width: 680px;
}
.box1 .rank-list {
  width: 180px;
  height: 843px;
  margin: 0 auto;
  margin-top: 18px;
}
.box1 .rank-list .rank-box {
  width: 130px;
  height: 52px;
  overflow: hidden;
  margin-left: 46px;
  margin-top: 2px;
}
.box1 .rank-list .rank-box img {
  width: 42px;
  height: 42px;
  float: left;
  margin-top: 8px;
}
.box1 .rank-list .rank-box .rank-user {
  width: 75px;
  height: 42px;
  float: left;
  margin-left: 12px;
  margin-top: 10px;
}
.box1 .rank-list .rank-box .rank-user p {
  font: normal 12px/18px "Microsoft YaHei";
  color: #727171;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 75px;
  height: 18px;
}
.box1 .rank-list .rank-box .rank-user p span {
  font: normal 12px/18px "Microsoft YaHei";
  color: #f60b10;
}
.box1 .rank-list .rank-box .rank-user p span em {
  font: normal 14px/18px "Microsoft YaHei";
}
.box1 .discuss-box {
  width: 677px;
  height: 60px;
  overflow: hidden;
}
.box1 .discuss-box .discuss {
  width: 401px;
  height: 32px;
  overflow: hidden;
  margin: 0 auto;
  float: left;
  margin-left: 80px;
  margin-top: 12px;
  margin-right: 21px;
}
.box1 .discuss-box ul li {
  font-size: 12px;
  color: #020202;
  font: normal 16px/32px "SimSun";
  text-indent: 10px;
}
.box1 .discuss-box ul li span {
  color: #020202;
}
.box1 .discuss-box .speak {
  width: 140px;
  height: 42px;
  margin-top: 6px;
  float: left;
}
.box1 .discuss-box .speak-btn {
  width: 148px;
  height: 42px;
  display: block;
  cursor: pointer;
}
.box1 .discuss-box .speak-btn:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/discus-btn.jpg") no-repeat center center;
}
.box1 .main-box {
  width: 677px;
  height: 464px;
  overflow: hidden;
}
.box1 .main-box .play-box {
  width: 629px;
  height: 430px;
  margin: 0 auto;
  margin-top: 15px;
  position: relative;
}
.box1 .main-box .login-box {
  background: url("http://n.7k7kimg.cn/2015/0730/1438253094428.jpg") no-repeat center center;
}
.box1 .main-box .login-box .login-btn {
  display: block;
  width: 301px;
  height: 62px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/login-btn.jpg") no-repeat center center;
  position: absolute;
  bottom: 44px;
  left: 90px;
  cursor: pointer;
}
.box1 .main-box .login-box .login-btn:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/login-btn-hover.jpg") no-repeat center center;
}
.box1 .main-box .answer-box {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/answer-bg.jpg") no-repeat center center;
  overflow: hidden;
}
.box1 .main-box .answer-box .user-box {
  width: 520px;
  height: 200px;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}
.box1 .main-box .answer-box .user-box .user-box-left {
  width: 165px;
  height: 165px;
  position: absolute;
  top: 24px;
  left: 26px;
}
.box1 .main-box .answer-box .user-box .user-box-left img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}
.box1 .main-box .answer-box .user-box .user-box-left .login-qq {
  display: block;
  width: 165px;
  height: 30px;
  cursor: pointer;
  margin-top: 13px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/login-qq.jpg") no-repeat center center;
}
.box1 .main-box .answer-box .user-box .user-box-right {
  width: 216px;
  height: 130px;
  overflow: hidden;
  position: absolute;
  right: 0px;
  top: 17px;
  text-align: center;
}
.box1 .main-box .answer-box .user-box .user-box-right p {
  font: normal 20px/45px "SimHei";
  color: #753f04;
}
.box1 .main-box .answer-box .user-box .user-box-right .user-jf {
  margin-top: 39px;
}
.box1 .main-box .answer-box .user-box .user-box-right .user-jf em {
  font: normal 30px/45px "SimHei";
}
.box1 .main-box .answer-box .answer-btn {
  display: block;
  width: 301px;
  height: 62px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/answer-btn.jpg") no-repeat center center;
  position: absolute;
  bottom: 44px;
  left: 90px;
  cursor: pointer;
}
.box1 .main-box .answer-box .answer-btn:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/answer-btn-hover.jpg") no-repeat center center;
}
.box1 .main-box .answered-box {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/answered-bg.jpg") no-repeat center center;
  overflow: hidden;
}
.box1 .main-box .answered-box .user-box {
  width: 520px;
  height: 200px;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}
.box1 .main-box .answered-box .user-box .user-box-left {
  width: 165px;
  height: 165px;
  position: absolute;
  top: 24px;
  left: 26px;
}
.box1 .main-box .answered-box .user-box .user-box-left img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}
.box1 .main-box .answered-box .user-box .user-box-left .login-qq {
  display: block;
  width: 165px;
  height: 30px;
  cursor: pointer;
  margin-top: 13px;
}
.box1 .main-box .answered-box .user-box .user-box-right {
  width: 216px;
  height: 130px;
  overflow: hidden;
  position: absolute;
  right: 0px;
  top: 17px;
  text-align: center;
}
.box1 .main-box .answered-box .user-box .user-box-right p {
  font: normal 20px/45px "SimHei";
  color: #753f04;
}
.box1 .main-box .answered-box .user-box .user-box-right .user-jf {
  margin-top: 39px;
}
.box1 .main-box .answered-box .user-box .user-box-right .user-jf em {
  font: normal 30px/45px "SimHei";
}
.box1 .main-box .answered-box .bd-share {
  width: 173px;
  margin-top: 39px;
  margin-left: 44%;
}
.box1 .main-box .answered-box .bd-share a {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-position: 0 0!important;
  padding-left: 0px;
}
.box1 .main-box .answered-box .bd-share span {
  padding: 0 2px 0 0;
  background-position: 0 0!important;
}
.box1 .main-box .answered-box .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 .main-box .answered-box .bd-share .bds_tsina {
  height: 26px;
  width: 26px;
  background: url(http://i5.7k7kimg.cn/cms/cms10/20141223/144521_2873.png) no-repeat;
  margin-right: 3px;
}
.box1 .main-box .answered-box .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 .main-box .answered-box .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 .main-box .answered-box .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 .main-box .answered-box .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 .main-box .answered-box .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 .main-box .answered-box .bd-share .share-to {
  width: 48px;
  line-height: 37px;
  color: #AAAAAA;
  float: left;
  font-size: 12px;
}
.box1 .main-box .answered-box .result {
  width: 455px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  margin-top: 33px;
}
.box1 .main-box .answered-box .result p {
  font: normal 16px/20px "SimHei";
  color: #6f9608;
}
.box1 .main-box .answering-box {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/answering-bg.jpg") no-repeat center center;
  overflow: hidden;
}
.box1 .main-box .answering-box .userinfo-box {
  height: 66px;
}
.box1 .main-box .answering-box .userinfo-box span {
  font: normal 20px/35px "Microsoft YaHei";
  color: #753f04;
  display: inline-block;
  text-indent: 25px;
}
.box1 .main-box .answering-box .userinfo-box .user-jf {
  color: #f7a132;
  display: inline-block;
  text-indent: 31px;
}
.box1 .main-box .answering-box .userinfo-box .user-jf em {
  font: normal 30px/35px "SimHei";
}
.box1 .main-box .answering-box .tk .sd {
  position: relative;
  width: 100%;
  height: 365px;
  overflow: hidden;
}
.box1 .main-box .answering-box .tk .sd h4 {
  font: normal 20px/35px "Microsoft YaHei";
  color: #753f04;
  margin-left: 75px;
}
.box1 .main-box .answering-box .tk .sd .sdCon {
  position: absolute;
  top: 49px;
  left: 40px;
  width: 588px;
  height: 280px;
  overflow: hidden;
  zoom: 1;
}
.box1 .main-box .answering-box .tk .sd .sdCon .img {
  display: inline;
  float: left;
  margin: 26px 0 0 0;
  width: 300px;
  height: 200px;
}
.box1 .main-box .answering-box .tk .sd .sdCon .rl {
  display: inline;
  float: left;
  margin: -15px 0 0 48px;
  width: 225px;
  height: 190px;
}
.box1 .main-box .answering-box .tk .sd .sdCon .rl2 {
  display: inline;
  float: left;
  margin: 6px 0 0 48px;
  width: 225px;
  height: 190px;
}
.box1 .main-box .answering-box .tk .sd .sdCon .ture-img {
  width: 212px;
  height: 192px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/true.jpg") no-repeat center center;
}
.box1 .main-box .answering-box .tk .sd .sdCon .false-img {
  width: 212px;
  height: 192px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/false.jpg") no-repeat center center;
}
.box1 .main-box .answering-box .tk .sd .sdCon .next {
  width: 200px;
  height: 34px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/next-btn.jpg") no-repeat center center;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  cursor: pointer;
}
.box1 .main-box .answering-box .tk .sd .sdCon .next:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/next-btn-hover.jpg") no-repeat center center;
}
.box1 .main-box .answering-box .tk .sd .sdCon .tlist {
  width: 225px;
  height: 224px;
  overflow: hidden;
  zoom: 1;
}
.box1 .main-box .answering-box .tk .sd .sdCon .tlist li {
  cursor: pointer;
  width: 100%;
  float: left;
  height: 46px;
  display: inline;
  font: normal 22px/46px "Microsoft YaHei";
  color: #333;
  margin-top: 15px;
  margin-bottom: 10px;
}
.box1 .main-box .answering-box .tk .sd .sdCon .tlist li.cur {
  color: #7bba2c;
}
.box1 .main-box .answering-box .tk .sd .sdCon .submit {
  width: 200px;
  height: 34px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/submit-btn.jpg") no-repeat center center;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.box1 .main-box .answering-box .tk .sd .sdCon .submit:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/submit-btn-hover.jpg") no-repeat center center;
}
.box1 .game-box {
  width: 677px;
  height: 390px;
  margin-top: 8px;
}
.box1 .game-box .title {
  width: 677px;
  height: 53px;
}
.box1 .game-box ul {
  overflow: hidden;
}
.box1 .game-box ul li {
  display: inline;
  margin-left: 31px;
  margin-bottom: 3px;
  float: left;
  width: 76px;
}
.box1 .game-box ul li a {
  display: block;
  width: 76px;
}
.box1 .game-box ul li a:hover span {
  color: #ff6600;
}
.box1 .game-box ul li img {
  width: 76px;
  height: 77px;
}
.box1 .game-box ul li span {
  display: block;
  overflow: hidden;
  width: 76px;
  height: 26px;
  color: #3f3f3f;
  text-align: center;
  line-height: 20px;
}
/* box2 */
.box2 {
  height: 486px;
  position: relative;
  width: 980px;
}
.box2 .title {
  width: 980px;
  height: 55px;
}
.box2 .main-box2 {
  width: 955px;
  height: 390px;
  margin: 0 auto;
}
.box2 .main-box2 .vote-box {
  width: 191px;
  height: 355px;
  float: left;
}
.box2 .main-box2 .vote-main-box {
  width: 106px;
  height: 355px;
  margin: 0 auto;
  position: relative;
}
.box2 .main-box2 .vote-top {
  width: 106px;
  height: auto;
  position: absolute;
  bottom: 64px;
  margin-bottom: 4px;
}
.box2 .main-box2 .king {
  display: block;
  width: 36px;
  height: 38px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/king.png") no-repeat center center;
  position: absolute;
  bottom: 0px;
  left: -11px;
}
.box2 .main-box2 .vote-img {
  width: 106px;
  height: 80px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote1.png") no-repeat center center;
  margin: 0 auto;
  margin-bottom: 5px;
}
.box2 .main-box2 .vote-img.vote-img2 {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote2.png") no-repeat center center;
}
.box2 .main-box2 .vote-img.vote-img3 {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote3.png") no-repeat center center;
}
.box2 .main-box2 .vote-img.vote-img4 {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote4.png") no-repeat center center;
}
.box2 .main-box2 .vote-img.vote-img5 {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote5.png") no-repeat center center;
}
.box2 .main-box2 .vote-line {
  width: 44px;
  height: 90px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote-line.jpg") repeat-y center center;
  margin: 0 auto;
  transition: width 2s;
  -moz-transition: width 2s;
  -webkit-transition: width 2s;
  -o-transition: width 2s;
}
.box2 .main-box2 .vote-bottom {
  width: 110px;
  height: auto;
  margin: 0 auto;
  position: absolute;
  bottom: 0px;
}
.box2 .main-box2 .vote-amount {
  width: 110px;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  font: normal 14px/32px "Microsoft YaHei";
  color: #111;
  text-align: center;
}
.box2 .main-box2 .vote-btn {
  display: block;
  width: 78px;
  height: 32px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote-btn.jpg") no-repeat center center;
  cursor: pointer;
  margin: 0 auto;
}
.box2 .main-box2 .vote-btn:hover {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote-btn-hover.jpg") no-repeat center center;
}
.box2 .main-box2 .vote-name {
  width: 20px;
  height: 60px;
  font: normal 20px/20px "Microsoft YaHei";
  color: #ff5b56;
  position: absolute;
  right: 0px;
  bottom: 120px;
}
/* box3 */
.box3 {
  height: auto;
  position: relative;
  width: 980px;
  margin-bottom: 22px;
}
.box3 .slider-wrap {
  width: 940px;
  overflow: hidden;
  position: relative;
  height: 210px;
  margin: 0 auto;
  margin-top: 73px;
}
.box3 ul {
  overflow: hidden;
  zoom: 1;
}
.box3 ul li {
  position: relative;
  float: left;
  display: inline;
  width: 205px;
  margin: 0 15px ;
  text-align: center;
  line-height: 22px;
  color: #000;
}
.box3 ul li img {
  display: block;
  width: 205px;
  height: 124px;
  margin: 0 auto;
}
.box3 ul li a:hover span {
  color: #ff6600;
}
.box3 ul 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 ul 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 ul li .status {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 64px;
  height: 64px;
}
.box3 ul 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 ul li .time {
  height: 22px;
  overflow: hidden;
  font: normal 12px/22px "Microsoft YaHei";
  font-weight: 700;
}
.box3 ul li .s1 {
  display: block;
  background: url("http://i.7k7kimg.cn/zixun/2015/0709week/ing.png") no-repeat;
}
/* box4 */
/* box5 */
/* comment*/
.comment {
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 1174px;
  left: 9px;
}
.comment .comment-top {
  width: 1174px;
  padding-top: 128px;
  _padding-top: 100px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/iframe-top.jpg") no-repeat 0 top;
}
.comment .comment-main {
  padding: 0px 64px;
  width: 1174px;
  margin-left: 32px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/iframe-main.jpg") repeat-y 0 0;
}
.comment .comment-main iframe {
  margin-top: -50px;
  _margin-top: -5px;
  margin-left: 10px;
}
.comment .comHd-comment-wrap {
  margin: 0 auto;
}
.comment .comment-bottom {
  padding-bottom: 379px;
  width: 1174px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/iframe-bottom.jpg") no-repeat 0 bottom;
}
/* foot */
.foot {
  width: 980px;
  height: 155px;
  position: relative;
  margin: 0 auto;
}
.foot .foot-box {
  width: 980px;
  margin: 0 auto;
  line-height: 24px;
  color: #bfbfbf;
  position: absolute;
  bottom: 128px;
  color: #fff;
}
.foot .foot-box a {
  color: #fff;
}
.foot .foot-box span {
  float: right;
}
/* 寮圭獥 */
.ui-popup-modal .ui-dialog {
  box-shadow: none;
  background: none;
  border: none;
}
.pop-box {
  width: 423px;
  height: 311px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote-pop.png") no-repeat;
  position: relative;
}
.pop-box .del {
  display: block;
  width: 43px;
  height: 43px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}
.pop-box .text-box {
  width: 100%;
  height: 110px;
  margin: 0 auto;
}
.pop-box .bdshare-button-style0-16 {
  zoom: 0;
}
.pop-box .bdshare-button-style0-16 a {
  background-image: none;
}
.pop-box .share-btn {
  display: block;
  width: 156px;
  height: 115px;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote1.png") no-repeat center center;
}
.pop-box .share-btn .success-share {
  display: block;
  width: 156px;
  height: 115px;
}
.pop-box .share-box {
  width: 345px;
  height: auto;
  margin: 0 auto;
}
.pop-box .share-box p {
  font: normal 14px/22px "Microsoft YaHei";
  color: #e38a00;
}
.pop-box .sure-btn {
  display: block;
  width: 90px;
  height: 34px;
  position: absolute;
  bottom: 66px;
  right: 92px;
  cursor: pointer;
}
#vote-box1 .share-btn {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote2.png") no-repeat center center;
}
#vote-box2 .share-btn {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote3.png") no-repeat center center;
}
#vote-box3 .share-btn {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote4.png") no-repeat center center;
}
#vote-box4 .share-btn {
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/vote5.png") no-repeat center center;
}
#dati-pop {
  height: 342px;
  background: url("http://i.7k7kimg.cn/zixun/2015/0728holiday/dati-pop.png") no-repeat center center;
}
#dati-pop .del {
  width: 82px;
  height: 81px;
}
.commonHd-bind {
  width: 400px;
  margin: 50px;
}
.commonHd-bind .hd {
  width: 360px;
}
.commonHd-bind .bottom .ft {
  width: 366px;
}
.commonHd-bind .network {
  background: #f2f7f8;
  padding: 10px;
  color: #666666;
}
.commonHd-bind .network .l {
  margin-left: 110px;
  margin-right: 30px;
  cursor: pointer;
}
.commonHd-bind .network .r {
  margin-right: 110px;
  cursor: pointer;
}
.commonHd-bind .network input {
  margin-right: 10px;
}
.commonHd-bind .account {
  width: 300px;
  margin: 15px auto;
}
.commonHd-bind .account label {
  display: block;
  width: 90px;
  line-height: 20px;
  float: left;
  color: #999999;
}
.commonHd-bind .account input {
  float: left;
  display: block;
  width: 200px;
  height: 20px;
  border: 1px solid #cccccc;
}
.commonHd-bind .main .tip {
  text-align: center;
  color: #ff6600;
}
.commonHd-bind .main input.bind,
.commonHd-bind .main input.reset {
  display: block;
  width: 100px;
  height: 36px;
  float: left;
  display: inline;
  text-indent: -9999px;
  direction: ltr;
  cursor: pointer;
  background: medium none;
  border: medium none;
}
.commonHd-bind .main input.bind {
  margin: 30px 0 20px 85px;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/binding.png);
}
.commonHd-bind .main input.reset {
  margin: 30px 85px 20px 20px;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/reset.png);
}
.commonHd-block {
  text-align: left;
}
.commonHd-block .clear-float:after {
  content: ".";
  height: 0;
  visibility: hidden;
  display: block;
  clear: both;
}
.commonHd-block .clear-float {
  zoom: 1;
}
.commonHd-block .clear {
  clear: both;
}
.commonHd-block .title .hd {
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/block-top-main.png) repeat-x;
  height: 35px;
  float: left;
}
.commonHd-block .title .lt {
  float: left;
  width: 20px;
  height: 35px;
  display: inline;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/block-top-left.png) no-repeat;
}
.commonHd-block .title h5 {
  float: left;
  color: #76a9e3;
  line-height: 35px;
  font-size: 14px;
  font-weight: bold;
}
.commonHd-block .title .close {
  float: right;
  display: inline;
  width: 14px;
  height: 14px;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/btn-close.png) 0 0 no-repeat;
  text-indent: -9999px;
  direction: ltr;
  cursor: pointer;
  margin-top: 10px;
}
.commonHd-block .title .rt {
  float: left;
  width: 20px;
  height: 35px;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/block-top-right.png) no-repeat;
}
.commonHd-block .main {
  border: 1px solid #d2e5f4;
  border-bottom: 0;
  background: #ffffff;
}
.commonHd-block .bottom .ft {
  height: 16px;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/block-bottom-main.png) repeat-x;
  float: left;
}
.commonHd-block .bottom .l {
  width: 17px;
  height: 16px;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/block-bottom-left.png) no-repeat;
  float: left;
  display: inline;
}
.commonHd-block .bottom .r {
  width: 17px;
  height: 16px;
  background: url(http://n.7k7kimg.cn/themes/qike_public/commonHd/block-bottom-right.png) no-repeat;
  float: left;
}