﻿/* https://www.xd.com
 *
 * v4 2013-09-22
 *
 * 2014-12-04 按钮代码见: button.css
 */

/* Base Styles */
@font-face {
    font-family: 'Flat-UI-Icons';
    src: url('../font/icon.eot');
    src: url('../font/icon.eot')
            format('embedded-opentype'),
        url('../font/icon.woff') format('woff'),
        url('../font/icon.ttf') format('truetype'),
        url('../font/icon.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

.font-icon {
    font-family: 'Flat-UI-Icons', Arial, sans-serif;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, 'sans-serif', 'PingFang SC';
    background-color: #f2f2f2;
    color: #999;
}
a {
    color: #333;
    transition: color 0.3s ease;
}
a:hover,
a.hover {
    color: #ff6600;
    transition: color 0.3s ease;
}

#noscript {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    background: url(../image/noscript.png) repeat-x;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #dbd9d9;
    vertical-align: middle;
}
input:-moz-placeholder,
textarea::-webkit-input-placeholder {
    color: #dbd9d9;
    vertical-align: middle;
}
.placeholder {
    color: #dbd9d9;
    font-size: 12px;
    white-space: nowrap;
}

.relative {
    position: relative;
}

.text-base {
    color: #666;
}
.text-danger {
    color: #e74c3c;
}
.text-warning {
    color: #f39c12;
}
.text-success {
    color: #1abc9c;
}

.text-strong {
    color: #ff6600;
}
.text-lead {
    color: #333333;
}
.text-low {
    color: #b1b1b1;
}

.bold {
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: normal;
    line-height: 1.1;
}

h1,
.h1 {
    font-size: 32px;
}
h2,
.h2 {
    font-size: 26px;
}
h3,
.h3 {
    font-size: 24px;
}
h4,
.h4 {
    font-size: 18px;
}
h5,
.h5 {
    font-size: 14px;
}
h6,
.h6 {
    font-size: 13px;
}

.size-base {
    font-size: 14px;
}
.size-small {
    font-size: 12px;
}
.size-big {
    font-size: 15px;
}
.size-large {
    font-size: 16px;
}
.size-xlarge {
    font-size: 18px;
}

/* 字体对齐方式 */
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.valign-top {
    vertical-align: top;
}
.no-break {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 浮动方式 */
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.float-none {
    float: none;
}

/* 隐藏元素 */
.hide {
    display: none;
}
.hide-text {
    text-indent: -9999px;
}

/* 输入框 */
.input-text {
    border: 2px solid #dee1e3;
    font-size: 14px;
    color: #34495e;
    height: 21px;
    line-height: 21px;
    padding: 8px 5px;
    text-indent: 6px;
    border-radius: 6px;
    background: #ffffff;
    _text-indent: 0;
    _padding-left: 11px;
}
input.focus,
.input-text:focus {
    border-color: #ff6600;
    outline: none;
    transition: border 0.25s linear, color 0.25s linear;
}

/* 输入块 */
textarea.input-textarea {
    border: 2px solid #dee1e3;
    font-size: 14px;
    color: #34495e;
    height: 63px;
    line-height: 21px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #ffffff;
    _text-indent: 0;
    _padding-left: 11px;
    resize: none;
}
textarea.focus,
textarea.input-textarea:focus {
    border-color: #ff6600;
    outline: none;
    transition: border 0.25s linear, color 0.25s linear;
}

.input-group {
    width: 230px;
    overflow: hidden;
    position: relative;
}
.input-group .input-text {
    padding: 5px 30px 5px 6px;
    height: 20px;
    line-height: 20px;
    width: 190px;
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    transition: none;
}
.input-group input.focus,
.input-group .input-text:focus {
    background-color: #fff;
    transition: none;
    border-color: #ff6600;
}
.input-group .btn {
    font-family: 'Flat-UI-Icons', Arial, sans-serif;
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #a6a6a6;
    top: 2px;
    right: 2px;
    padding: 0;
}
.input-group input::-webkit-input-placeholder {
    color: #a6a6a6;
    vertical-align: middle;
}
.input-group input:-moz-placeholder {
    color: #a6a6a6;
    vertical-align: middle;
}
.input-group .placeholder {
    color: #a6a6a6;
    font-size: 12px;
    white-space: nowrap;
}

.input-group-large {
    width: 330px;
    font-size: 18px;
}
.input-group-large .input-text {
    padding: 10px 40px 10px 6px;
    height: 20px;
    line-height: 20px;
    width: 280px;
    font-size: 18px;
}
.input-group-large .btn {
    height: 40px;
    line-height: 40px;
    width: 40px;
}

.modal {
    display: none;
    color: #333;
    width: 500px;
    border-radius: 5px;
    padding-bottom: 30px;
    color: #999;
    position: relative;
    background: #fff;
}
.modal .modal-header {
    height: 30px;
    padding: 0 5px;
}
.modal .modal-header .close {
    width: 20px;
    height: 20px;
    background: url(../image/widget_close.gif) no-repeat
        center 0;
    margin-top: 5px;
    text-indent: -9999px;
    float: right;
}
.modal .modal-header .close:hover {
    background-position: 5px -20px;
}

.modal-dialog {
    padding-bottom: 0;
    width: 640px;
    color: #333333;
}
.modal-dialog .modal-header {
    height: 60px;
    padding: 0 24px;
    font-size: 24px;
}
.modal-dialog .modal-header .title {
    line-height: 60px;
    float: left;
}
.modal-dialog .modal-header .close {
    background: none;
    text-indent: 0;
    width: auto;
    height: auto;
    line-height: 24px;
    margin-top: 18px;
}
.modal-dialog .modal-body {
    border-top: 2px solid #ecf0f1;
    padding: 30px 24px;
}
.modal-dialog .modal-footer {
    background: #f0f0f0;
    text-align: right;
    padding: 20px 24px;
    border-radius: 0 0 5px 5px;
}
.modal-dialog .modal-footer .btn {
    min-width: 154px;
    _width: 154px;
    margin-left: 12px;
}

/* 进度条基本样式 */
.progress {
    background: #ececec;
    height: 20px;
    border-radius: 8px/12px;
    overflow: hidden;
    margin-bottom: 10px;
}
.progress .progress-bar {
    height: 100%;
    float: left;
    height: 20px;
    line-height: 20px;
    position: relative;
    text-align: center;
    color: #a6a6a6;
}
.progress .progress-bar-danger {
    background-color: #e74c3c;
}
.progress .progress-bar-success {
    background-color: #1abc9c;
}
.progress .progress-bar-warning {
    background-color: #f39c12;
}
.progress .progress-bar .progress-bar-divider {
    color: #d7dcde;
    display: none;
    position: absolute;
    left: -4px;
    top: 0;
    z-index: 3;
    height: 20px;
    line-height: 20px;
    line-height: 18px\0;
    *line-height: 18px;
    _line-height: 20px;
    _left: -4px;
    _font-size: 8px;
}
.progress .progress-bar .progress-bar-divider-danger {
    color: #e74c3c;
}
.progress .progress-bar .progress-bar-divider-success {
    color: #1abc9c;
}
.progress .progress-bar .progress-bar-divider-warning {
    color: #f39c12;
}
.progress .progress-bar .progress-bar-divider-active {
    color: #ff6600;
}
.progress-divider .progress-bar .progress-bar-divider {
    display: block;
}
.progress-step .progress-bar {
    cursor: default;
}
.progress-step .progress-bar-active {
    cursor: pointer;
}
.progress-step .progress-bar-step {
    background-color: #ff6600;
    color: #ffffff;
}

.well {
    border: 2px solid #e8e8e8;
    background: #fff;
    padding: 10px 20px;
    border-radius: 4px;
}
.well-default {
    background-color: #f9fafb;
    border-color: #edf1f2;
}
.well-danger {
    background-color: #faf8f7;
    border-color: #f2eeed;
}
.well-warning {
    background-color: #faf9f7;
    border-color: #f2f1ed;
}
.well-success {
    background-color: #f2faf8;
    border-color: #e2edeb;
}
.well-inline {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.form-group {
    margin-bottom: 10px;
}
.form-group .input-text {
    width: 216px;
    _width: 210px;
}
.form-group .password-strangth {
    width: 186px;
    _width: 180px;
}
.form-group .input-captcha {
    width: 126px;
    _width: 120px;
}
.form-control {
    display: block;
}
.form-control-inline {
    display: block;
    *height: 100%;
}
.form-control-inline:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}
.form-control-inline .form-control {
    float: left;
    margin-right: 10px;
}
.form-control-inline .password-strangth {
    margin-right: 40px;
}
.form-control-inline textarea.input-textarea {
    width: 216px;
    _width: 210px;
}
.has-error input.form-control,
.has-error .help-block,
.has-error .password-strangth-level {
    border-color: #e74c3c;
    color: #e74c3c;
}
.has-error textarea.form-control,
.has-error .help-block {
    border-color: #e74c3c;
    color: #e74c3c;
}
.form-control-inline .help-block {
    float: left;
    margin-left: 10px;
    line-height: 20px;
    padding: 10px 0;
}
.form-inline .form-control {
    display: inline-block;
}
.form-horizontal .form-group .control-label {
    float: left;
    text-align: right;
    width: 80px;
}
.form-group .btn-block {
    width: 230px;
}
.form-group .captcha-img {
    margin-top: 6px;
    cursor: pointer;
    width: 80px;
    height: 28px;
}
.form-group-well {
    margin: 15px 0;
}
.form-group-submit {
    margin-top: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    height: 20px;
    line-height: 20px;
}

.pagination li {
    padding: 8px 12px;
}
.pagination li a {
    line-height: 16px;
    color: #ff6600;
    display: block;
    text-align: center;
    white-space: nowrap;
}
.pagination li.next a {
    border-radius: 0 4px 4px 0;
}
.pagination li.active a {
    color: #bdc3c7;
    cursor: default;
}

.pagination-btn li {
    padding: 0;
}
.pagination-btn li a {
    padding: 10px 10px;
    line-height: 20px;
    min-width: 20px;
    _width: 20px;
    background: #d7dcde;
    border-right: 2px solid #ebeeef;
    color: #ffffff;
}
.pagination-btn li a:hover {
    background: #ff6600;
    transition: 0.2s ease-out;
    color: #ffffff;
}
.pagination-btn li.active a {
    background: #ff6600;
    cursor: default;
    color: #ffffff;
}
.pagination-btn li.end a {
    border-right: 0;
    border-radius: 0 4px 4px 0;
}
.pagination-btn li.start a {
    border-radius: 4px 0 0 4px;
}

.nav-tabs {
    border-bottom: 2px solid #d7dcde;
    margin-bottom: 20px;
    display: block;
    *height: 100%;
}
.nav-tabs:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}
.nav-tabs li {
    margin-bottom: -2px;
    position: relative;
    float: left;
    line-height: 20px;
}
.nav-tabs li a {
    padding: 9px 23px 10px;
    color: #34495e;
    display: block;
}
.nav-tabs li a:hover {
    color: #ff6600;
}
.nav-tabs li.active {
    z-index: 2;
}
.nav-tabs li.active a {
    border: 2px solid #d7dcde;
    padding: 7px 21px 8px;
    cursor: default;
    border-bottom-color: #ffffff;
    border-radius: 6px 6px 0 0;
}
.nav-tabs li.active a:hover {
    color: #34495e;
}

.alert {
    border: 2px solid;
    border-radius: 4px;
    width: 100%;
    min-width: 335px;
    position: relative;
}
.alert .alert-body {
    padding: 30px 48px 30px 30px;
}
.alert .close {
    position: absolute;
    top: 32px;
    right: 15px;
    color: #34495e;
    opacity: 0.2;
    filter: alpha(opacity=20);
    height: 18px;
    line-height: 18px;
}
.alert .close:hover {
    color: #34495e;
    opacity: 0.4;
    filter: alpha(opacity=20);
}
.alert-default {
    background-color: #f9fafb;
    border-color: #edf1f2;
    color: #a6a6a6;
}
.alert-danger {
    background-color: #faf8f7;
    border-color: #f2eeed;
    color: #e74c3c;
}
.alert-warning {
    background-color: #faf9f7;
    border-color: #f2f1ed;
    color: #f39c12;
}
.alert-success {
    background-color: #f2faf8;
    border-color: #e2edeb;
    color: #1abc9c;
}

/* 铅笔标志 */
i.icon-pencil {
    background: url(../image/edit_white.gif) no-repeat 0 0;
    width: 14px;
    height: 14px;
    display: none;
    cursor: pointer;
    margin-left: 7px;
    vertical-align: text-top;
}

/* fancybox 兼容IE6 遮罩半透明 */
body .fancybox-overlay {
    _background: #000;
    _filter: alpha(opacity=70);
}

.kefu-qq-link {
    width: 92px;
    height: 22px;
    text-indent: -9999px;
    line-height: 22px;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    *display: block;
    *zoom: 1;
    background-repeat: no-repeat;
    background: transparent url(../image/qq_kefu-1517203137.png);
}
.password-strangth {
    border-right: 0;
    border-radius: 6px 0 0 6px;
}
.password-strangth-level {
    position: absolute;
    left: 198px;
    width: 32px;
    top: 0px;
    _top: 1px;
    border: 2px solid #dee1e3;
    border-left: 0;
    padding: 8px 0;
    border-radius: 0 6px 6px 0;
}
.password-strangth-level.focus {
    transition: border 0.25s linear;
    border-color: #ff6600;
}
.password-strangth-level span {
    float: left;
    display: block;
    width: 3px;
    height: 21px;
    margin-left: 3px;
    background: #dadada;
}

/**********************************    基本布局    **************************************************/
.block {
    margin-top: 50px;
    margin-bottom: 50px;
}
.block-sub {
    margin-top: 30px;
    margin-bottom: 30px;
}
.layout {
    width: 980px;
    margin: 0 auto;
}

#header {
    *z-index: 3;
}
#header .header-login {
    height: 55px;
}
#header .header-login .layout {
    padding-top: 12px;
}
#header .header-login .layout .add-favorite {
    margin-right: 26px;
}
#header .header-login .layout .xdmini-dropdown .xdmini-dropdown-header .arrow {
    display: block;
    position: absolute;
    right: -12px;
    top: 8px;
    width: 0;
    height: 0;
    line-height: 0;
    border: 4px solid transparent;
    _border: 4px solid #f2f2f2;
    border-top-color: #666;
    transition: border-top-color 0.3s;
}
#header
    .header-login
    .layout
    .xdmini-dropdown
    .xdmini-dropdown-header:hover
    .arrow,
#header .header-login .layout .open .xdmini-dropdown-header .arrow {
    border-top-color: #f60;
}
#header .header-login .layout .open .xdmini-dropdown-header {
    color: #f60;
}
#header .header-login .layout .xdmini-dropdown .xdmini-dropdown-body {
    display: none;
    min-width: 130px;
    padding: 4px 0;
    border: 1px solid #e6e6e6;
    border-bottom-width: 3px;
    background-color: #ffffff;
    font-size: 13px;
    position: absolute;
    z-index: 10;
    border-radius: 5px;
    left: -24px;
    top: 24px;
}
#header .header-login .layout .open .xdmini-dropdown-body {
    display: block;
}
#header .header-login .layout .xdmini-dropdown .xdmini-dropdown-body a {
    display: block;
    margin: 0;
    padding: 0 10px;
    white-space: nowrap;
    line-height: 26px;
    transition: 0;
}
#header .header-login .layout .xdmini-dropdown .xdmini-dropdown-body a:hover {
    background-color: #f60;
    color: #fff;
}
#header
    .header-login
    .layout
    .xdmini-dropdown
    .xdmini-dropdown-body
    a
    .recommend {
    width: 24px;
    height: 24px;
    background: url(../image/btn.png) -74px -194px no-repeat;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: baseline;
    *background-position: -71px -189px;
}
#header .header-login .layout .xdmini-dropdown .xdmini-dropdown-body .arrow {
    border: 9px #f2f2f2 solid;
    border-top-width: 0;
    border-bottom-color: #e6e6e6;
    position: absolute;
    top: -9px;
    left: 40px;
    font-size: 0;
}
#header
    .header-login
    .layout
    .xdmini-dropdown
    .xdmini-dropdown-body
    .arrow
    .inside {
    border: 8px #f2f2f2 solid;
    border-top-width: 0;
    border-bottom-color: #ffffff;
    position: absolute;
    top: 1px;
    left: -8px;
}
#header .header-login .layout .my-profile {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    position: relative;
    z-index: 10;
}
#header .header-login .layout .my-profile .xdmini-dropdown-body {
    left: auto;
    right: -28px;
    _width: 130px;
}
#header .header-login .layout .my-profile .xdmini-dropdown-body a {
    text-indent: 5px;
}
#header .header-login .layout .yes-login .admin-link {
    margin-right: 6px;
}

#header .header-nav {
    background: url(../image/btn.png) no-repeat center top;
}
#header .header-no-bg {
    background-image: none;
}
#header .header-nav .layout {
    height: 98px;
}
#header .header-nav .layout .header-logo-xd {
    width: 205px;
    height: 50px;
    background-image: url(../image/btn.png);
    background-image: -webkit-image-set(
        url(../image/btn.png) 1x,
        url(../../imgs/v4/layout/btn_2x.png) 2x
    );
    background-repeat: no-repeat;
    background-position: 15px -220px;
    margin-top: 24px;
}

#header .header-no-bg .layout .header-logo-xd {
    background-position: -191px -220px;
}
#header .header-nav .layout p {
    line-height: 98px;
}
#header .header-nav .layout .primary-title {
    font-size: 26px;
    border-left: 2px solid #a8a8a8;
    height: 32px;
    line-height: 32px;
    margin-top: 34px;
    margin-left: 10px;
    padding-left: 10px;
}
#header .header-nav .layout .nav-list {
    padding: 34px 0 34px 15px;
}
#header .header-nav .layout .nav-list .btn-link {
    width: 75px;
    text-indent: 0;
    padding: 0;
    _display: inline;
    line-height: 30px;
}
#header .header-nav .layout .search {
    margin-top: 32px;
    margin-right: 15px;
}
#header .header-nav .layout .search .input-text {
    display: block;
}

#header .header-poster {
    position: absolute;
    height: 40px;
    overflow: hidden;
    width: 1021px;
    left: 50%;
    margin-left: -510px;
    z-index: 9;
}
#header .header-poster a {
    display: none;
    width: 1020px;
}
#header .header-poster .item {
    display: none;
}
#header .header-poster .item.active {
    display: block;
}
#header .header-poster .img {
    width: 1020px;
    height: 324px;
    display: block;
}

@font-face {
    font-family: xdicon;
    src: url(../font/xdicon-1617004318.eot);
    src: url(../font/xdicon-1617004318.eot)
            format('embedded-opentype'),
        url(../font/xdicon-1617004318.woff) format('woff'),
        url(../font/xdicon-1617004318.ttf) format('truetype'),
        url(../font/xdicon-1617004318.svg)
            format('svg');
    font-weight: normal;
    font-style: normal;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #ff6600;
    background-color: transparent;
}

#header2 .xdicon,
#footer2 .xdicon,
#goTopContainer .xdicon,
#topnav .xdicon {
    position: relative;
    font-family: xdicon;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images /headers/ hIEfix.png, sizingMethod=crop) \9;
    text-align: center;
}
#header2 a.xdicon:hover,
a.xdicon:focus,
a.xdicon:active {
    text-decoration: none;
}
#footer2 .xdicon-wechat:before {
    content: 'f';
}
#footer2 .xdicon-sina:before {
    content: '一';
}
#footer2 .xdicon-mail2:before {
    content: 'F';
}
#goTopContainer .xdicon-go-top:before {
    content: 'D';
}

#header2 .xdicon-search:before {
    content: 'q';
}

#header2 .xdicon-xdlogo:before,
#topnav .xdicon-xdlogo:before {
    content: '\e901';
    color: #ff6600;
}
#header2 .xdicon-salary:before {
    content: 't';
}
#header2 .xdicon-admin:before {
    content: '贰';
}
#header2 .xdicon-vip:before {
    content: '叁';
}
#header2 .xdicon-user:before {
    content: '肆';
}
#header2 .xdicon-service:before {
    content: '伍';
}
#header2 .xdicon-realname:before {
    content: 'T';
}
#header2 .xdicon-quit:before {
    content: '十';
}
#header2 .for-dropdown-item-icon {
    position: absolute;
    font-size: 17px;
}
#header2 .xdicon-xdlogo:after,
#topnav .xdicon-xdlogo:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    content: '🗹';
    color: #231815;
}

#header2 .xdicon-cog:before {
    content: 'j';
}

#header2 .xdicon-avatar:before {
    content: 'A';
}

#header2 .xdicon-ir:before {
    content: ' ';
}

#header2 .btn-default {
    color: #878787;
    background-color: #fff;
    border-color: #ccc;
}

#header2 .btn-default:active {
    color: #ff6600;
}
#header2 .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: border 0.25s linear, color 0.25s linear,
        background-color 0.25s linear;
    transition: border 0.25s linear, color 0.25s linear,
        background-color 0.25s linear;
}

#header2 .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    top: inherit;
}

#header2 .sr-only,
#topnav .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#header2 {
    position: relative;
    z-index: 1;
    height: 80px;
    min-height: 60px;
    -webkit-transition: -webkit-margin 0.3s linear;
    transition: -webkit-margin 0.3s linear;
    transition: margin 0.3s linear;
    transition: margin 0.3s linear, -webkit-margin 0.3s linear;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -icab-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#header2.when-scroll-down {
    margin-top: -80px;
}
#header2.navbar-fixed-top {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 1030;
    top: 0;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -icab-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#header2 .container,
#footer2 .container,
#goTopContainer .container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 1170px;
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
}
#header2 .container:before,
#footer2 .container:before,
#header2 .container:after #footer2 .container:after {
    content: ' ';
    display: table;
}

#header2 .container:after,
#footer2 .container:after {
    clear: both;
}
#midBreadcrumb {
    background-color: #fff;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -icab-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-bottom: 1px;
}
#midBreadcrumb .breadcrumb {
    margin-bottom: 0;
    line-height: 40px;
}
#midBreadcrumb .container {
    width: 1170px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    -webkit-transition: margin 0.3s linear, width 0.3s linear,
        height 0.3s linear;
    transition: margin 0.3s linear, width 0.3s linear, height 0.3s linear;
}
#midBreadcrumb .breadcrumb > li {
    display: inline-block;
}
a.text-default {
    color: #888888;
}
a.text-default:hover {
    color: #333;
}
#midBreadcrumb .breadcrumb {
    padding: 0 0;
    list-style: none;
    background-color: #fff;
    border-radius: 4px;
}
#midBreadcrumb .breadcrumb > li {
    display: inline-block;
    color: #5c5c5c;
}
#midBreadcrumb .breadcrumb > li + li:before {
    content: '> ';
    padding: 0 5px;
    color: #5c5c5c;
}
#midBreadcrumb .breadcrumb > .active {
    color: #5c5c5c;
}

@media (max-width: 1200px) {
    #header2 .container,
    #footer2 .container,
    #goTopContainer .container,
    #midBreadcrumb .container {
        width: 970px;
    }
}

#header2 .navbar-header {
    float: left;
}
#header2 .navbar-header:before,
.navbar-header:after {
    content: ' ';
    display: table;
}

#header2 .navbar-header:after {
    clear: both;
}
#header2 .navbar-header .navbar-brand {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    width: 97px;
    -webkit-transition: margin 0.3s linear, width 0.3s linear,
        height 0.3s linear;
    transition: margin 0.3s linear, width 0.3s linear, height 0.3s linear;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 27px;
    line-height: 80px;
    height: 80px;
    padding: 0;
    float: left;
    color: #878787;
    text-align: inherit;
}

@media (max-width: 1199px) {
    #header2 .navbar-header .navbar-brand {
        width: 79px;
        font-size: 22px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

#header2 .navbar-collapse {
    max-height: 100%;
    padding: 0;
    margin: 0;
    border-color: #f0f0f0;
    overflow-x: visible;
    border-top: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}
#header2 .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
}
#header2 .navbar-collapse:after {
    clear: both;
}
#header2 .navbar-collapse:before,
.navbar-collapse:after {
    content: ' ';
    display: table;
}
#header2 .navbar-nav .nav-more {
    display: none;
}

#header2 .navbar-nav {
    float: left;
    padding-left: 0;
    list-style: none;
}

#header2 .navbar-nav .link-ir .xdicon-ir {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 28px;
    line-height: 24px;
    font-size: 16px;
    color: #333;
}

#header2 .navbar-nav .link-ir > a {
    padding-left: 40px;
}
#header2 .navbar-nav .link-ir > a:before {
    content: '';
    width: 1px;
    height: 24px;
    background-color: #e6e6e6;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 0;
}
#header2 .navbar-nav .link-ir > a:hover .xdicon-ir {
    color: #ff6600;
}

#header2 .navbar-nav > li {
    float: left;
    position: relative;
    display: block;
}

#header2 .navbar-nav > li > a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    font-size: 16px;
    -webkit-transition: padding 0.3s linear, font-size 0.3s linear;
    transition: padding 0.3s linear, font-size 0.3s linear;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 20px;
    position: relative;
    display: block;
}
@media (max-width: 1199px) {
    #header2 .navbar-nav .link-ir .xdicon-ir {
        left: 15px;
        font-size: 14px;
    }
    #header2 .navbar-nav .link-ir > a {
        padding-left: 33px;
    }
    #header2 .navbar-nav > li > a {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
    }
}

#header2 .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}
#header2 h4.nav-more {
    display: none;
    margin-top: 21px;
    position: absolute;
    left: 20px;
    top: 0;
}

#header2 .navbar-right {
    margin-right: 0;
    float: right !important;
}

#header2 .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 15px;
    box-shadow: none;
    margin-top: 23px;
    margin-bottom: 23px;
}

#header2 .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

#header2 .form-search {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    position: absolute;
    right: 150px;
    -webkit-transition: right 0.3s linear;
    transition: right 0.3s linear;
}

#header2 .form-search .form-control {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    border-radius: 17px;
    padding-left: 20px;
    padding-right: 50px;
    width: 150px;
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
    border-color: #e6e6e6;
}
@media (max-width: 1199px) {
    #header2 .form-search {
        right: 96px;
    }
}

#header2 .form-search .form-control:focus {
    border-color: #b2b2b2;
    outline: 0;
}

#header2 .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #5c5c5c;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-transition: border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#header2 .form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}
#header2 .form-control:-ms-input-placeholder {
    color: #999;
}
#header2 .form-control::-webkit-input-placeholder {
    color: #999;
}
#header2 .form-control::-ms-expand {
    border: 0;
    background-color: transparent;
}

#header2 .form-search .btn-default {
    border: none;
    background: transparent;
    position: absolute;
    right: 27px;
    top: 50%;
    margin-top: -14px;
    border-radius: 17px;
}

#header2 .about-user {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    width: 120px;
    border-width: 0 1px;
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

#header2 .about-user .dropdown-toggle {
    position: relative;
    display: block;
    padding: 20px 0 19px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
#header2 .about-user .dropdown-toggle:hover {
    background-color: #f0f0f0;
}

#header2 .about-user .dropdown-toggle .img-circle {
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 40px;
    display: block;
    margin-left: 32px;
}
#header2 .about-user .img-circle {
    border: 1px solid #f5f5f5;
    background-color: #d5d5d5;
    color: #fff;
    border-radius: 50%;
}

#header2 .about-user .dropdown-toggle .caret {
    position: absolute;
    width: 8px;
    height: 16px;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -ms-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
    background-color: transparent;
    border: none;
    margin: 0px;
    top: 50%;
    margin-top: -8px;
    left: 77px;
}
#header2 .about-user .dropdown-toggle .caret:before,
#header2 .about-user .dropdown-toggle .caret:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    width: 5px;
    height: 1px;
    background-color: #b2b2b2;
    -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -webkit-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1),
        -ms-transform-origin 0.15s cubic-bezier(0.86, 0, 0.07, 1);
}
#header2 .about-user .dropdown-toggle .caret:before {
    right: 50%;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: rotate(40deg) scaleY(1.5);
    -ms-transform: rotate(40deg) scaleY(1.5);
    transform: rotate(40deg) scaleY(1.5);
}
#header2 .about-user .dropdown-toggle .caret:after {
    left: 50%;
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: rotate(-40deg) scaleY(1.5);
    -ms-transform: rotate(-40deg) scaleY(1.5);
    transform: rotate(-40deg) scaleY(1.5);
}

#header2 .about-user.open .dropdown-toggle {
    background-color: #f0f0f0;
}

#header2 .about-user.open .dropdown-toggle .caret {
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
}
#header2 .about-user.open .dropdown-toggle .caret:before {
    -webkit-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-transform: rotate(-40deg) scaleY(1.5);
    -ms-transform: rotate(-40deg) scaleY(1.5);
    transform: rotate(-40deg) scaleY(1.5);
}
#header2 .about-user.open .dropdown-toggle .caret:after {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: rotate(40deg) scaleY(1.5);
    -ms-transform: rotate(40deg) scaleY(1.5);
    transform: rotate(40deg) scaleY(1.5);
}

#header2 .about-user .dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 184px;
    padding: 10px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0px;
    background-clip: padding-box;
    right: 0;
    left: auto;
    margin-top: 0;
    margin-right: -1px;
}

#header2 .about-user .dropdown-menu a > .img-circle {
    width: 27px;
    height: 27px;
    margin-right: 10px;
    display: none;
}

#header2 .about-user .dropdown-menu .xdicon.xdicon-cog {
    position: absolute;
    right: 20px;
}

#header2 .about-user .dropdown-menu .divider {
    margin: 10px 0;
    background-color: #f0f0f0;
    height: 1px;
    overflow: hidden;
}
@media (max-width: 1199px) {
    #header2 .about-user {
        width: 80px;
    }
    #header2 .about-user .dropdown-toggle .img-circle {
        margin-left: 12px;
    }
    #header2 .about-user .dropdown-toggle .caret {
        left: 57px;
    }
}

#header2 .open > .dropdown-menu {
    display: block;
}
#header2 .dropdown-menu > li > a {
    display: block;
    padding: 0 15px;
    clear: both;
    font-weight: normal;
    line-height: 40px;
    color: #888888;
    white-space: nowrap;
}

#header2 .dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #ff6600;
    background-color: #f0f0f0;
}

#header2 .dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #ff6600;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #6e6e6e;
    background-color: transparent;
}

#header2 *,
#footer2 *,
#topnav * {
    box-sizing: border-box !important;
    -o-box-sizing: border-box !important;
    -ms-box-sizing: border-box !important;
    -icab-box-sizing: border-box !important;
    -khtml-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
}

#header2 *:before,
#footer2 *,
#footer2 *:after,
#header2 *:after,
#topnav *:after,
#topnav *:before {
    box-sizing: border-box !important;
    -o-box-sizing: border-box !important;
    -ms-box-sizing: border-box !important;
    -icab-box-sizing: border-box !important;
    -khtml-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
}

#footer2 .row {
    margin-left: -15px;
    margin-right: -15px;
}

#footer2 .row:before,
#footer2 .row:after {
    content: ' ';
    display: table;
}

#footer2 .row:after {
    clear: both;
}

#footer2 .col-sm-4,
#footer2 .col-md-4,
#footer2 .col-md-6 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

#footer2 .col-sm-4 {
    float: left;
}

#footer2 .col-sm-4 {
    width: 33.33333%;
}

#footer2 .col-md-4,
#footer2 .col-md-6 {
    float: left;
}
#footer2 .col-md-4 {
    width: 33.33333%;
}
#footer2 .col-md-6 {
    width: 50%;
}

#footer2 {
    background-color: #484848;
    color: #fff;
    line-height: 22px;
}
#footer2 a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    color: #999999;
    white-space: nowrap;
}
#footer2 a:hover {
    color: #d7d7d7;
}
#footer2 .footer-links {
}
#footer2 .footer-links > .row + .row {
    margin-top: 45px;
}
#footer2 .footer-links .title {
    line-height: 20px;
    color: #e3e3e3;
    padding: 0;
}
#footer2 .footer-links .list-link {
    padding-top: 20px;
    margin-bottom: 0;
}
#footer2 .footer-links .list-inline {
    margin-bottom: 0;
}
#footer2 .list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}
#footer2 .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}
#footer2 .list-unstyled {
    padding-left: 0;
    list-style: none;
}
#footer2 ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}
#footer2 .footer-links .list-inline .xdicon {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border: 1px solid #999999;
    border-radius: 50%;
    font-size: 27px;
    margin-right: 10px;
}
#footer2 .footer-links .list-inline .xdicon:before,
#footer2 .footer-links .list-inline .xdicon:after {
    color: #999999;
}
#footer2 .footer-links .list-inline .xdicon:hover {
    border-color: #d7d7d7;
}
#footer2 .footer-links .list-inline .xdicon:hover:before,
#footer2 .footer-links .list-inline .xdicon:hover:after {
    color: #d7d7d7;
}
#footer2 .footer-links .list-inline .with-popup {
    height: 44px;
    display: inline-block;
    position: relative;
    text-align: center;
}
#footer2 .footer-links .list-inline .with-popup .popup-container {
    position: absolute;
    display: none;
    background: #fff;
    padding: 8px 4px 0;
    color: #666666;
    bottom: 100%;
    left: 50%;
    margin-bottom: 4px;
    border-radius: 3px;
    border: solid 1px #e3e3e3;
}
#footer2 .footer-links .list-inline .with-popup:hover .popup-container {
    display: block;
}
#footer2 .footer-links .list-inline .about-wechat .popup-container {
    margin-left: -60px;
}
#footer2
    .footer-links
    .list-inline
    .about-wechat
    .popup-container
    .wechat-title {
    margin: 0;
    line-height: 14px;
}
#footer2
    .footer-links
    .list-inline
    .about-wechat
    .popup-container
    .wechat-qrcode {
    width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto;
}
#footer2 .footer-links .list-inline .about-mail .xdicon:before {
    font-size: 24px;
    vertical-align: top;
}
#footer2 .footer-links .list-inline .about-mail .popup-container {
    padding: 10px;
    width: 260px;
    margin-left: -130px;
}
#footer2 .footer-links .list-inline .about-mail .popup-container p {
    margin: 0;
    line-height: 20px;
}
#footer2 .footer-links .list-inline + .list-inline {
    margin-top: 15px;
}
#footer2 .footer-min-list {
    display: none;
}
#goTopContainer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0px;
}
#goTopContainer .container {
    position: relative;
}
#goTopContainer .xdicon-go-top {
    position: absolute;
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: #fff;
    line-height: 45px;
    text-align: center;
    font-size: 26px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}
#goTopContainer .xdicon-go-top:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

#main {
    padding: 40px 0 0;
}
#main.have-header-poster {
    padding-top: 40px;
}
.main-sidebar,
.main-content {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    box-shadow: 0 2px 0 #e0e0e0;
    margin-bottom: 80px;
    padding-bottom: 100px;
    _zoom: 1;
}
.main-content-header {
    padding: 10px 25px 0;
    line-height: 40px;
    border-bottom: 2px solid #f4f4f4;
}
.main-content-body {
    padding: 30px 25px 0;
}
.main-content .btn-block-narrow {
    width: 154px;
}
.main-content .btn-block-normal {
    width: 230px;
}
.text-center .btn-block-normal {
    margin: 0 auto;
}
.main-sidebar-menu li a {
    line-height: 40px;
    padding: 0 14px;
    width: auto;
    _zoom: 1;
}
.main-sidebar-menu li a.chosen {
    background-color: #ff6600;
    color: #fefefe;
}

#footer a {
    color: #999999;
}
#footer a:hover {
    color: #cccccc;
}

#footer .footer-links h3 {
    font-size: 14px;
    line-height: 20px;
}
#footer .footer-links,
#footer .friend-link {
    background-color: #484848;
    color: #ffffff;
}
#footer .footer-links .layout {
    padding: 30px 0 20px;
}
#footer .footer-links .layout .title {
    border-bottom: 1px solid #666666;
    padding-left: 12px;
}
#footer .footer-links .layout ul.content {
    padding: 20px 30px 0 12px;
}
#footer .footer-links .layout ul.content li {
    width: 120px;
    height: 20px;
    line-height: 20px;
}
#footer .footer-links .layout ul.content li span.new {
    background: #ff6600;
    width: 32px;
    height: 16px;
    line-height: 16px;
    margin-left: 12px;
    display: inline-block;
    text-align: center;
    border-radius: 2px;
}
#footer .footer-links .layout .footer-game-list {
    width: 270px;
}
#footer .footer-links .layout .footer-game-list ul.content li {
    width: 110px;
}
#footer .footer-links .footer-logo-xd {
    width: 174px;
    height: 140px;
}
#footer .footer-links .footer-logo-xd a {
    display: block;
    width: 120px;
    height: 31px;
    margin: 0 auto;
    background-image: url(../image/btn.png);
    background-image: -webkit-image-set(
        url(../image/btn.png) 1x,
        url(../../imgs/v4/layout/btn_2x.png) 2x
    );
    background-repeat: no-repeat;
    background-position: -61px -99px;
}
#footer .friend-link .layout .friend-link-content {
    position: relative;
    margin: 0 40px;
    border-top: 1px solid #666666;
    padding: 10px 30px 10px 144px;
    _zoom: 1;
}
#footer .friend-link .layout .friend-link-content .title {
    position: absolute;
    left: 50px;
}
#footer .friend-link .layout a {
    padding: 0 3px;
    white-space: nowrap;
}

#footer .footer-info .layout {
    height: 40px;
    line-height: 40px;
}
#footer .footer-info .xdcooperaption {
    line-height: 1;
    height: 14px;
    text-indent: 310px;
}
#footer .footer-info .xdcooperaption span {
    margin-left: 8px;
}
#footer .footer-info .govpo {
    line-height: 1;
    height: 20px;
    margin: 0 auto;
    width: 980px;
    padding: 11px 0 11px;
}
#footer .footer-info .govpobbs {
    line-height: 1;
    height: 20px;
    margin: 0 auto;
    width: 980px;
    padding-bottom: 12px;
}

#footer.full {
    border-top: 4px solid #f60;
    background-color: #484848;
}
#footer.full .footer-info {
    border-top: 1px solid #3b3b3b;
    background: #333333;
    color: #8a8a8a;
}

#footer .safe-certify {
    display: block;
    position: absolute;
    top: 14px;
}
#safeHy {
    right: -110px;
}
#safeGw {
    right: -200px;
}

#cornerTips {
    position: fixed;
    _position: absolute;
    _bottom: 0;
    bottom: 100px;
    left: 50%;
    margin-left: 490px;
    width: 61px;
    height: 61px;
    display: none;
}
#cornerTips .corner-tip {
    display: block;
    height: 57px;
    border-radius: 4px;
    border: 2px solid #cccccc;
    background-color: #cccccc;
    color: #ff6600;
    text-align: center;
}
#cornerTips .corner-tip .on-link,
#cornerTips .corner-tip:hover .on-hover {
    display: block;
    width: 50%;
    height: 32px;
    margin: 12px auto;
    line-height: 16px;
}
#cornerTips .corner-tip .on-link {
    line-height: 32px;
}
#cornerTips .corner-tip .on-hover,
#cornerTips .corner-tip:hover .on-link {
    display: none;
}
#cornerTips .corner-tip:hover {
    background-color: #ffffff;
}

#cornerTips #goTop {
    background-image: url(../image/btn.png);
    background-image: -webkit-image-set(
        url(../image/btn.png) 1x,
        url(../../imgs/v4/layout/btn_2x.png) 2x
    );
    background-position: -1px -159px;
    background-repeat: no-repeat;
    margin-top: 4px;
    width: 57px;
}
#cornerTips #goTop:hover {
    background-position: -1px -99px;
}

.login-dialog .input-text {
    background: #f8f8f8;
    border: 0;
    height: 26px;
    width: 170px;
    margin-left: 72px;
    padding: 1px;
    line-height: normal;
    line-height: 26px\9;
    font-size: 12px;
    text-indent: 0;
}
.login-dialog .password-strangth {
    padding-right: 5px;
    width: 145px;
    _width: 139px;
}
.login-dialog input.focus,
.login-dialog .input-text:focus {
    border: 0;
}
.login-dialog .input-text-short {
    width: 80px;
}

.login-dialog .password-strangth-level {
    width: 16px;
    height: 12px;
    top: 8px;
    left: 220px;
    _width: 18px;
    border: 0;
    padding: 0;
}
.login-dialog .password-strangth-level span {
    float: left;
    display: block;
    width: 3px;
    height: 12px;
    margin-left: 1px;
    background: #dadada;
}

.login-dialog .modal-body {
    position: relative;
}
.login-dialog .modal-body .panel-left {
    padding: 0 50px;
    border-right: 1px dashed #dadada;
}
.login-dialog .modal-body .panel-left .panel-left-title {
    margin-bottom: 5px;
    font-size: 16px;
}
.login-dialog .modal-body .panel-left-content {
    width: 246px;
    _width: 249px;
}
.login-dialog .modal-body .panel-left-content .formlist li {
    border: 1px solid #f1f1f1;
    background: #f8f8f8;
    border-radius: 3px;
    margin-bottom: 15px;
    height: 30px;
    line-height: 30px;
    position: relative;
}
.login-dialog .modal-body .panel-left-content .formlist li.special {
    background: #ffffff;
    border: 0;
    height: 20px;
    line-height: 20px;
}
.login-dialog .modal-body .panel-left-content .formlist li label.label {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    text-align: right;
}
.login-dialog .modal-body .panel-right {
    padding: 10px 0 0 15px;
}
.login-dialog .modal-body .panel-right .qq-field,
.login-dialog .modal-body .panel-right .verycd-field,
.login-dialog .modal-body .panel-right .wechat-field {
    padding-left: 20px;
    padding-top: 10px;
    display: block;
    line-height: 16px;
}
.login-dialog .modal-body .panel-right .qq-field {
    background: url(../image/qq.png) no-repeat 2px 10px;
    background-image: -webkit-image-set(
        url(../image/qq.png) 1x,
        url(../../imgs/siteicon/qq@2x.png) 2x
    );
}
.login-dialog .modal-body .panel-right .verycd-field {
    background: url(../image/verycd.png) no-repeat 0 10px;
    background-image: -webkit-image-set(
        url(../image/verycd.png) 1x,
        url(../../imgs/siteicon/verycd@2x.png) 2x
    );
}
.login-dialog .modal-body .panel-right .wechat-field {
    background: url(../image/weixin.png) no-repeat 0 10px;
    background-image: -webkit-image-set(
        url(../image/weixin.png) 1x,
        url(../../imgs/siteicon/weixin@2x.png) 2x
    );
}

.login-dialog .modal-body .panel-right-bottom {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 160px;
    height: 60px;
    background: url(../image/logo-black.png)
        no-repeat center bottom;
}
.login-dialog .modal-body .panel-right-bottom a {
    color: #ff6600;
}
.login-dialog .modal-body .panel-right-bottom a:hover {
    text-decoration: underline;
}

#topnav a {
    transition-duration: 0s;
}

.border-error {
    border: 1px solid #e74c3c !important;
}

#topnav .topnav-dropdown-container .topnav-dropdown-body .col-xs-6 {
    width: 50%;
    float: left;
}

#topnav .list-unstyled {
    padding-left: 0;
    list-style: none;
}

#topnav .small {
    font-size: 85%;
}

#topnav .topnav-dropdown-body ul li {
    float: none;
}

#topnav .topnav-login-container ul li {
    float: none;
}

#topnav .open > .dropdown-menu {
    display: block;
}

#topnav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 246px;
    padding: 10px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0px;
    background-clip: padding-box;
}

#topnav .dropdown {
    position: relative;
}

#topnav .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

#topnav .open > a {
    outline: 0;
}

#topnav .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.71429;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: border 0.25s linear, color 0.25s linear,
        background-color 0.25s linear;
    transition: border 0.25s linear, color 0.25s linear,
        background-color 0.25s linear;
}

#topnav .btn .caret {
    margin-left: 0;
}

#topnav .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

#topnav .dropdown-menu > li > a {
    display: block;
    padding: 0 20px;
    clear: both;
    font-weight: normal;
    line-height: 40px;
    color: #888888;
    white-space: nowrap;
}

#topnav .btn-xs,
.btn-group-xs > .btn {
    padding: 4px 10px;
    font-size: 12px;
    line-height: 1.667;
    border-radius: 5px;
}

#topnav .btn-primary {
    color: #fff;
    background-color: #ff6600;
    border-color: #ff6600;
}
#topnav .dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #ff6600;
    background-color: #f0f0f0;
}

.tplonlybody #header2,
.tplonlybody #footer2 {
    display: none;
}

#footer2 {
    background-color: transparent;
    color: #fff;
    line-height: 22px;
    min-width: auto;
}
#footer2 a {
    transition: color 0.3s;
    color: #999999;
    white-space: nowrap;
}
#footer2 a:hover {
    color: #d7d7d7;
}
#footer2 .media-wrap h5 {
    color: #5c5c5c;
    width: 100%;
    height: 22px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-bottom: 7px;
}
#footer2 .media-wrap hr {
    margin: 0 auto 18px;
    border-top: 1px solid #f5f5f5;
}
#footer2 .media-wrap .medias {
    word-break: break-all;
    width: 760px;
    line-height: 28px;
    margin: 0 auto;
}
#footer2 .media-wrap .medias a {
    word-break: break-all;
    white-space: normal;
    margin: 0;
}
#footer2 .media-wrap .medias a:hover {
    color: #999;
}
#footer2 .media-wrap .medias .split {
    color: #999;
    margin: 0 4px;
}
#footer2 .media-wrap .medias .split:last-child {
    display: none;
}
#footer2 .channel-list {
    margin: 40px auto;
    text-align: center;
    width: 760px;
}
#footer2 .channel-list .xdicon:after {
    color: #999;
}
#footer2 .channel-list .xdicon:before {
    color: #999;
}
#footer2 .channel-list span {
    vertical-align: middle;
    height: 20px;
    font-size: 14px;
    color: #999;
    line-height: 20px;
    cursor: pointer;
}
#footer2 .channel-list span.text {
    margin-left: 20px;
}
#footer2 .channel-list span.icon {
    font-size: 27px;
}
#footer2 .channel-list .cell {
    height: 20px;
    line-height: 20px;
}
#footer2 .channel-list .webo a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#footer2 .channel-list .with-popup {
    position: relative;
}
#footer2 .channel-list .with-popup .popup-container {
    position: absolute;
    display: none;
    background: #fff;
    padding: 8px 4px 0;
    color: #666666;
    bottom: 100%;
    left: 50%;
    margin-bottom: 4px;
    border-radius: 3px;
    border: solid 1px #e3e3e3;
}
#footer2 .channel-list .with-popup:hover .popup-container {
    display: block;
}
#footer2 .channel-list .about-mail .xdicon:before {
    font-size: 24px;
}
#footer2 .channel-list .about-mail .popup-container {
    padding: 10px;
    width: 260px;
    margin-left: -130px;
}
#footer2 .channel-list .about-mail .popup-container p {
    margin: 0;
    line-height: 20px;
}
#footer2 .channel-list .about-wechat .popup-container {
    margin-left: -60px;
}
#footer2 .channel-list .about-wechat .popup-container .wechat-title {
    margin: 0;
    line-height: 14px;
}
#footer2 .channel-list .about-wechat .popup-container .wechat-qrcode {
    width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto;
}
#footer2 .footer-links {
    padding-bottom: 0;
}
#footer2 .footer-links-wrap {
    background-color: #333;
    color: #999;
    width: 100%;
    text-align: center;
    border: 1px solid transparent;
}
#footer2 .footer-links-wrap .container {
    width: 100%;
}
#footer2 .footer-links-wrap a {
    color: #e3e3e3;
}
#footer2 .footer-links-wrap a:hover {
    color: #fff;
}
#footer2 .footer-links-wrap .links {
    margin-top: 60px;
    margin-bottom: 28px;
}
#footer2 .footer-links-wrap .links a {
    color: #e3e3e3;
}
#footer2 .footer-links-wrap .links a:last-child,
#footer2 .footer-links-wrap .links .last {
    display: none;
}
#footer2 .footer-links-wrap .links .split {
    margin: 0;
    color: #e3e3e3;
}
#footer2 .footer-links-wrap .footer-detail > div {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
#footer2 .footer-links-wrap .footer-detail .copyright {
    margin: 30px auto 60px;
}
#footer2 .footer-links a {
    color: #999;
}
#footer2 .footer-links a:hover {
    color: #fff;
}
#footer2 .footer-links span,
#footer2 .footer-links a {
    margin: 0 8px;
}
#footer2 .footer-min-list {
    display: none;
}

@media (max-width: 767px) {
    #footer2 {
        border-top: 0;
        display: block;
        color: #8a8a8a;
    }
    #footer2 .footer-links {
        display: none;
    }
    #footer2 .footer-links-wrap .links .split,
    #footer2 .media-wrap .medias .split {
        margin: 0 4px;
    }
    #footer2 .list-inline {
        margin-bottom: 0;
        padding-top: 13px;
        padding-bottom: 13px;
    }
    #footer2 .list-inline:first-child {
        border-bottom: 1px solid #666;
    }
    #footer2 .footer-detail a {
        color: #999;
        white-space: normal;
    }
    #footer2 .footer-detail a:hover {
        color: #fff;
    }
    #footer2 .footer-detail span,
    #footer2 .footer-detail a {
        margin: 0 16px 0 0;
        font-size: 12px;
    }
    #footer2 .footer-min-list {
        display: block;
        color: #8a8a8a;
    }
    #footer2 .footer-min-list .media-wrap h5 {
        height: 22px;
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    #footer2 .footer-min-list .media-wrap hr {
        margin-bottom: 20px;
    }
    #footer2 .footer-min-list .media-wrap .medias {
        width: 100%;
    }
    #footer2 .footer-min-list .channel-list {
        width: 300px;
    }
    #footer2 .footer-min-list .channel-list span {
        display: none;
    }
    #footer2 .footer-min-list .channel-list span.icon {
        display: block;
    }
    #footer2 .footer-min-list .channel-list .about-mail .popup-container {
        margin-left: -190px;
    }
    #footer2 .footer-min-list .footer-links-wrap {
        padding-top: 30px;
        text-align: left;
    }
    #footer2 .footer-min-list .footer-links-wrap .links {
        margin: 0 auto;
        height: 24px;
        font-size: 14px;
        line-height: 24px;
    }
    #footer2 .footer-min-list .footer-links-wrap .links.line-2 {
        margin-bottom: 15px;
    }
    #footer2 .footer-min-list .footer-links-wrap .footer-detail {
        font-size: 12px;
        line-height: 22px;
    }
    #footer2 .footer-min-list .footer-links-wrap .footer-detail a {
        white-space: normal;
    }
    #footer2 .footer-min-list .footer-links-wrap .footer-detail > div {
        font-size: 12px;
    }
    #footer2 .footer-min-list .footer-links-wrap .footer-detail .copyright {
        margin-bottom: 30px;
    }
}
