@charset "utf-8";

/**
 * ***** common *****
 */
/* layout */
body {
    background-color: #0b0a0c
}

input::-webkit-input-placeholder {
    color: #999
}

input::-moz-placeholder {
    color: #999
}

input:-moz-placeholder {
    color: #999
}

input:-ms-input-placeholder {
    color: #999
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.inner {
    display: inline-block;
}

.hidden {
    display: none;
}

/* color */
a {
    display: inline-block;
    color: #333;
}

a:hover {
    color: #ffed8b;
}

.purple {
    color: #fd66ff !important;
}

.emerald {
    color: #4bf4ff !important;
}

.reddark {
    color: #fd5d5d !important;
}

.green {
    color: #00ee05 !important;
}

/* btn */
.btn {
    display: inline-block;
    padding: 0 5px;
    font-size: 14px;
    line-height: 28px;
    border-radius: 5px;
    text-align: center;
}

.btn:hover {
    opacity: .8;
    filter: alpha(opacity=80);
}

.btn-primary {
    color: #151228;
    background: url(../images/btn_primary.png) no-repeat;
    background-size: 100% 100%;
}

.btn-red {
    color: #ffde7f;
    background: url(../images/btn_red.png) no-repeat;
    background-size: 100% 100%;
}

.btn-blue {
    color: #fff;
    background: url(../images/btn_blue.png) no-repeat;
    background-size: 100% 100%;
}

.btn-purple-hollow {
    color: #ff4de8;
    border: 1px solid #ab0364
}

.btn-purple-hollow:hover {
    color: #fff;
    background-color: #ff4de8;
    opacity: 1;
    filter: alpha(opacity=100);
}

.btn-mid {
    padding: 0 40px;
    height: 34px;
    line-height: 34px;
}

/* icon */
.icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.icon-usergroup {
    width: 20px;
    height: 16px;
    background-image: url(../images/usergroup.png);
}

.icon-user-w {
    width: 14px;
    height: 15px;
    background-image: url(../images/user_w.png);
}

.icon-clock {
    width: 17px;
    height: 17px;
    background-image: url(../images/clock.png);
}

.icon-prize {
    width: 22px;
    height: 22px;
    background-image: url(../images/prize.png);
}

.lamp {
    position: absolute;
    top: -31px;
    left: 50%;
    width: 176px;
    height: 31px;
    margin-left: -88px;
    background: url(../images/lamp.png) no-repeat;
    background-size: cover;
}

/* table */
.table {
    width: 100%;
    margin: 10px 0
}

.table-simple {
    border-left: 1px solid #dcdcdc;
    border-top: 1px solid #dcdcdc;
}

.table-simple td,
.table-simple th {
    padding: 5px 9px;
    font-size: 12px;
    line-height: 20px;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

/* form */
.form .icon-user {
    background-image: url(../images/user.png);
}

.form .icon-password {
    background-image: url(../images/password.png);
}

.form .icon-phone {
    background-image: url(../images/phone.png);
}

.form .icon-purse {
    background-image: url(../images/purse.png);
}

.form .form-btn-group {
    font-size: 0
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group-verify {
    padding-right: 75px;
}

.form-group .verify {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 68px;
    height: 24px;
    cursor: pointer;
}

.form .tips {
    margin: 10px 0;
    font-size: 12px;
    line-height: 24px;
    color: #919191;
}

.form .tips a {
    color: #919191;
}

.form a:hover {
    color: #ffed8b !important;
}

.form-simple .form-control {
    width: 100%;
    padding: 0 10px 0 26px;
    font-size: 12px;
    line-height: 22px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #2f2c3e
}

.form-simple .form-group .icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.form-inline .form-group {
    float: left;
}

.form-inline .form-btn-group {
    float: left;
}

/* title */
.title-first {
    margin-top: 20px;
    text-align: center;
}

.title-first h3 {
    display: inline-block;
    position: relative;
    font-size: 20px;
    line-height: 36px;
    color: #fefefe;
    font-weight: bolder;
}

.title-first h3:before,
.title-first h3:after {
    content: '';
    display: block;
    position: absolute;
    top: 17px;
    width: 96px;
    height: 3px;
    background-repeat: no-repeat;
    background-size: cover;
}

.title-first h3:before {
    left: -104px;
    background-image: url(../images/title_first_before.png);
}

.title-first h3:after {
    right: -104px;
    background-image: url(../images/title_first_after.png);
}

.title-second h3 {
    display: inline-block;
    position: relative;
    font-size: 18px;
    line-height: 36px;
    color: #efe8b8;
    font-weight: bolder;
}

.title-second h3:before,
.title-second h3:after {
    content: '';
    display: block;
    position: absolute;
    top: 18px;
    width: 96px;
    height: 1px;
    background-repeat: no-repeat;
    background-size: cover;
}

.title-second h3:before {
    left: -107px;
    background-image: url(../images/title_second_before.png);
}

.title-second h3:after {
    right: -107px;
    background-image: url(../images/title_second_after.png);
}

.title-article {
    text-align: center;
    border-bottom: 1px solid #313131;
}

.title-article h3 {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 50px;
    color: #fbbd00;
}

.title-article h3:before,
.title-article h3:after {
    content: '';
    display: block;
    position: absolute;
    top: 19px;
    width: 12px;
    height: 11px;
    background: url(../images/star.png) no-repeat;
    background-size: cover;
}

.title-article h3:before {
    left: -23px
}

.title-article h3:after {
    right: -23px
}

/* 背景渐变 */
.gradient-black {
    filter: alpha(opacity=100 finishopacity=50 style=1 startx=0, starty=0, finishx=100%, finishy=0) progid:DXImageTransform.Microsoft.gradient(startcolorstr=#000, endcolorstr=#737374, gradientType=0);
    -ms-filter: alpha(opacity=100 finishopacity=50 style=1 startx=0, starty=0, finishx=100%, finishy=100%) progid:DXImageTransform.Microsoft.gradient(startcolorstr=#000, endcolorstr=#737374, gradientType=0);
    /*IE8*/
    background: #737374;
    background: -moz-linear-gradient(left, #000, #737374);
    background: -webkit-gradient(linear, left, right, from(#000), to(#737374));
    background: -o-linear-gradient(left, #000, #737374);
}

.gradient-text-primary {
    background-image: -webkit-linear-gradient(bottom, #bb934d, #f6f3c7, #bb934d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 渐变动画 */
.nav-header .icon,
.thumbnail img {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s
}

.thumbnail {
    overflow: hidden;
}

/* 垂直居中 */
.middle-box {
    display: table;
    margin: 0 auto;
    position: relative;
}

.middle-inner {
    display: table-cell;
    vertical-align: middle;
    *position: absolute;
    *top: 50%;
    *left: 50%;
    width: 100%;
    text-align: center;
}

.middle-inner p {
    position: relative;
    *top: -50%;
    *left: -50%;
}

/**
 * ***** header *****
 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #1a1920;
    border-bottom: 1px solid #2d2c35;
    height: 188px;
}

.header-top {
    padding: 25px 0 8px
}

.nav-header li {
    float: left;
}

.nav-header a {
    display: block;
    position: relative;
    padding: 10px 9px 7px;
    font-size: 0;
    text-align: center;
}

.nav-header .icon {
    display: block;
    width: 100%;
    height: 26px;
    background-repeat: no-repeat;
    background-size: 26px 52px;
    background-position: center top;
}

.nav-header a:hover .icon {
    background-position-y: bottom;
}

.nav-header .icon-home {
    background-image: url(../images/home.png);
}

.nav-header .icon-video {
    background-image: url(../images/video.png);
}

.nav-header .icon-games {
    background-image: url(../images/games.png);
}

.nav-header .icon-chess {
    background-image: url(../images/chess.png);
}

.nav-header .icon-lottery {
    background-image: url(../images/lottery.png);
}

.nav-header .icon-sport {
    background-image: url(../images/sport.png);
}

.nav-header .icon-fishing {
    background-image: url(../images/fishing.png);
}

.nav-header .icon-promotions {
    background-image: url(../images/promotions.png);
}

.nav-header .icon-service {
    background-image: url(../images/service.png);
}

.icon-hot {
    position: absolute;
    top: 0;
    right: 10px;
    width: 19px;
    height: 17px;
    background: url(../images/hot.png) no-repeat;
    background-size: cover;
    animation: beat .5s linear infinite;
    -webkit-animation: beat .5s linear infinite;
}

.nav-header h4 {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}

.nav-header .active h4,
.nav-header a:hover h4 {
    color: #ffed8b;
}

.header-bottom {
    /* background-color: #16151a; */
    border-top: 1px solid #2d2c35;
    background-image:url(../images/40.jpg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center top;
}

.nav-header-bottom {
    padding: 15px 0;
    font-size: 14px;
    line-height: 26px;
    color: #ada6c8;
}

.nav-header-bottom a {
    color: #ada6c8;
}

.nav-header-bottom a:hover {
    color: #ffed8b !important;
}

.nav-header-bottom .item {
    float: left;
    position: relative;
    margin-left: 31px;
    padding-left: 46px;
}

.nav-header-bottom .item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -31px;
    width: 1px;
    height: 52px;
    background: url(../images/split_nav.png) no-repeat;
    background-size: cover;
}

.nav-header-bottom .item:nth-child(1) {
    /* width: 206px; */
    margin-left: 0;
}

.nav-header-bottom .item:nth-child(1):before {
    content: none
}

.nav-header-bottom .item:nth-child(2) {
    /* width: 366px */
}

.nav-header-bottom .item:nth-child(3) {
    /* width: 366px */
}

.nav-header-bottom .title {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    color: #ffed8b;
}

.nav-header-bottom li {
    float: left;
    width: 80px
}

.header-login {
    background-color: #16151a;
    border-top: 1px solid #2d2c35
}

.header-login .container {
    position: relative;
}

.header-login .notice {
    width: 600px;
    background-color: #16151a;
}

.header-login .form-login {
    position: absolute;
    top: 3px;
    right: 0;
    padding-left: 5px;
    background-color: #16151a;
}

.header-login .form {
    margin: 0;
    height: 27px;
}

.header-login .form-control {
    width: 121px;
    color: #ffecaf;
    border-color: #ffecaf;
}

.header-login .form-group-verify {
    padding-right: 0;
}

.header-login .form-group-verify .form-control {
    width: 124px;
    padding-left: 10px;
    padding-right: 50px;
}

.header-login .form-group .verify {
    width: 50px;
    height: 24px;
}

.header-login .icon-user {
    background-image: url(../images/user_y.png);
}

.header-login .icon-password {
    background-image: url(../images/password_y.png);
}

.header-login .icon-purse {
    background-image: url(../images/purse_y.png);
}

.header-login .form-btn-group .btn {
    line-height: 24px;
    margin-right: 6px;
}

.header-login .icon-question {
    float: right;
    width: 24px;
    height: 24px;
    background: url(../images/question.png) center / 20px no-repeat;
}

.header-login .user-navfast {
    float: left;
}

.header-login .user-navfast li {
    float: left;
}

.header-login .user-navfast a {
    padding: 0 3px;
    font-size: 12px;
    line-height: 24px;
    color: #fff;
}

/**
 * ***** banner *****
 */
.banner img {
    display: block;
}

/* 通知 */
.notice {
    position: relative;
    padding: 0 5px;
    font-size: 10px;
    line-height: 30px;
    color: #f2edc1;
    background-color: rgba(0, 0, 0, .8)
}

.notice .title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0 5px 0 8px;
    color: #000;
    background-color: #f2edc1
}

.notice .title:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 30px;
    background: url(../images/notice_after.png) no-repeat;
    background-size: cover;
}

.notice .title .icon-horn {
    float: left;
    width: 24px;
    height: 30px;
    margin-right: 8px;
    background: url(../images/horn.png) center / 100% auto no-repeat;
}

.banner .notice {
    bottom: 0;
    left: 0;
    width: 100%
}

/**
 * ***** main *****
 */
.main {
    margin-top: 205px;
    /* margin-bottom: 15px; */
    padding-top: 1px;
    background-color: #0b0a0c;
    background-repeat: no-repeat;
    background-size: 1920px auto;
    background-position: center top;
}

.box-black {
    padding: 15px;
    background-color: rgba(0, 0, 0, .5)
}

.main-text {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #171418
}

.main-text:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 226px;
    z-index: 1;
    width: 1px;
    height: 100%;
    background-color: #232024
}

.main-nav {
    position: relative;
    z-index: 2;
    float: left;
    width: 226px;
    padding-bottom: 50px;
    text-align: center;
}

.main-content {
    float: right;
    width: 730px;
    margin-right: 20px;
    padding-bottom: 20px;
    font-size: 12px;
    line-height: 24px;
    color: #fff;
}

.main-nav .title {
    height: 58px;
    padding-top: 7px;
    color: #9a0000;
    background-color: #fbbd00;
    text-transform: uppercase;
    font-weight: bolder;
}

.main-nav h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bolder;
}

.main-nav p {
    font-size: 12px;
    line-height: 20px;
}

.main-nav li {
    padding-left: 6px;
}

.main-nav li a {
    display: block;
    padding-right: 6px;
    font-size: 12px;
    line-height: 38px;
    color: #fff;
    background-color: #171418;
    background: #171418 url(../images/enter_b.png) right 11px center no-repeat;
}

.main-nav li a span {
    display: block;
    border-bottom: 1px solid #232024
}

.main-nav .active,
.main-nav li:hover {
    background-color: #fbbd00
}

.main-nav .active a,
.main-nav li a:hover {
    color: #fbbd00;
    background-image: url(../images/enter_y.png);
}

.main-nav .active a span,
.main-nav li a:hover span {
    border-color: #fbbd00;
}

/* 文章 */
.article .title-article {
    margin-top: 7px;
    margin-bottom: 10px;
}

.article .article-content {
    text-align: justify;
}

.article .article-content p {
    margin-bottom: 10px;
    text-indent: 2em;
}

.article .article-content .title {
    font-size: 15px;
    line-height: 30px;
    color: #fbbd00;
    /* font-weight: bolder; */
}

.article .article-content img {
    display: block;
    margin: 10px auto;
}

.article .article-content .img-block {
    width: 100%;
}

.article .tab-nav {
    text-align: center;
    font-size: 0
}

.article .tab-nav li {
    display: inline-block;
    margin: 10px 30px
}

.article .tab-nav a {
    display: block;
    padding: 0 16px;
    font-size: 12px;
    line-height: 26px;
    color: #fff;
    background-color: #313131;
    border-radius: 26px;
}

.article .tab-nav .active a,
.article .tab-nav a:hover {
    color: #171418;
    background-color: #fbbd00;
}

/**
 * ***** footer *****
 */
.footer-top img {
    display: block;
    width: 100%;
}

.footer-middle {
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-middle li {
    float: left;
    position: relative;
    width: 20%;
    font-size: 12px;
    line-height: 24px;
    color: #c6c6c6;
}

.footer-middle li:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
    width: 1px;
    height: 39px;
    background-color: #1b1b1b
}

.footer-middle li:first-child:before {
    content: none
}

.footer-middle .icon {
    position: absolute;
    top: 0;
    left: 35px;
    width: 44px;
    height: 44px;
    background-size: auto 17px;
    border: 1px solid #353339;
    border-radius: 50%;
}

.footer-middle p strong {
    color: #ffa800;
    font-weight: normal;
}

.footer-middle a {
    display: block;
    padding-left: 88px;
}

.footer-middle a:hover .icon {
    border-color: #ffed8b
}

.footer-middle a:hover strong {
    color: #ffed8b
}

.footer-middle .icon {
    background-size: 20px 17px;
}

.footer .icon-telephone {
    background-image: url(../images/telephone.png);
}

.footer .icon-mail {
    background-image: url(../images/mail.png);
}

.footer .icon-qq {
    background-image: url(../images/qq.png);
}

.footer .icon-headset {
    background-image: url(../images/headset.png);
}

.footer a:hover .icon-telephone {
    background-image: url(../images/telephone_h.png);
}

.footer a:hover .icon-mail {
    background-image: url(../images/mail_h.png);
}

.footer a:hover .icon-qq {
    background-image: url(../images/qq_h.png);
}

.footer a:hover .icon-headset {
    background-image: url(../images/headset_h.png);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222031
}

.footer-nav {
    font-size: 0
}

.footer-nav a {
    padding: 0 7px;
    font-size: 14px;
    line-height: 30px;
    color: #c6c6c6;
}

.footer-nav a:hover {
    color: #ffed8b !important;
}

.footer-nav ul {
    display: inline-block;
}

.footer-nav li {
    float: left;
}

.footer .copy-right {
    font-size: 14px;
    line-height: 30px;
    color: #75708e;
}

/**
 * ***** aside *****
 */

/**
 * ***** layer *****
 */
.layui-layer.layui-layer-custom {
    border-radius: 5px;
    border: 3px solid #666666;
}

.layui-layer.layui-layer-custom .layui-layer-btn a {
    height: auto;
    padding: 0 20px;
    font-size: 14px;
    line-height: 36px;
    border: none
}

.layui-layer.layui-layer-custom .layui-layer-btn .layui-layer-btn0 {
    color: #fff;
    background: url(../images/layer_btn.png) no-repeat;
    background-size: 100% 100%;
}

.layui-layer.layui-layer-custom .layui-layer-title {
    font-size: 16px;
    color: #cca352;
    border-bottom: 1px solid #cca352;
    background: url(../images/layer_title.jpg) no-repeat;
    background-size: 100% 100%;
}

.layui-layer.layui-layer-custom .layui-layer-content {
    color: #666;
    text-align: center;
}

.layui-layer.layui-layer-custom-msg {
    min-width: 100px;
    background-color: #000;
    filter: alpha(opacity=60);
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
    border: none;
}

.layui-layer.layui-layer-custom-msg .layui-layer-content {
    padding: 12px 25px;
    text-align: center;
}

.layui-layer.layui-layer-table {
    width: 500px !important;
}

.layui-layer-table table {
    margin: 0
}

.layui-layer-table table th,
.layui-layer-table table td {
    padding: 2px
}

.layui-layer-table th {
    font-size: 18px;
    line-height: 30px;
}

.layui-layer-table td {
    font-size: 16px;
    line-height: 30px;
}

/* 跳动动画 */
@keyframes beat {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(3px)
    }

    50% {
        transform: translateY(5px) scale(1.1, .9)
    }

    75% {
        ransform: translateY(3px)
    }

    100% {
        transform: translateY(0)
    }
}


@media (max-width: 768px) {

    /**
	 * common
	 */
    .visible-xs {
        display: block;
    }

    .hidden-xs {
        display: none;
    }

    /**
	 * header
	 */

    /**
	 * banner
	 */

    /**
	 * main
	 */

    /**
	 * aside
	 */

    /**
	 * layer
	 */
    .layui-layer.layui-layer-table {
        width: 96% !important;
    }
}

/* 全局 */
.fc_green {
    color: #8fc4c5
}

.fc_org {
    color: #FDB059
}

.fc_zis {
    color: #0FCED7
}

.fc_zi2 {
    color: #9056A9
}

.bg_black {
    background: #131313;
    width: 100%;
}

.border_gold {
    border-top: 1px solid #9e8253;
}

.bg_13 {
    background: #131313;
    height: 100px;
}

.bg_05 {
    background: #050505;
    height: 50px;
}

.bg_050304 {
    background: #131313
}


/*--logo */
.logo_nva .logo {
    float: left;
    width: 293px;
    height: 72px;
    padding-top: 10px;
}

/*--导航*/
.main_nav {
    position: relative;
    z-index: 100;
    float: left;
    width: 832px;
    margin-top: 30px;
    margin-left: 35px;
}

.main_nav li {
    position: relative;
    z-index: 999;
    float: left;
    display: block;
    width: 75px;
    margin: 0 7px;
    height: 70px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.main_nav li small {
    font-size: 12px;
}

.main_nav li a {
    color: #fff;
    display: block
}

.main_nav li:hover>a {
    color: #b59a61;
    display: block
}

.main_nav li.current>a {
    color: #b59a61;
    display: block
}

.main_nav li.current2>a {
    color: #ff0000;
    display: block
}

.main_nav li.current>a:hover {
    color: #b59a61;
    display: block
}

.main_nav li a i {
    position: absolute;
    width: 16px;
    height: 20px;
    right: -4px;
    top: -3px
}

.main_nav li div {
    position: absolute;
    width: 90px;
    background: #000;
    opacity: 0.6;
    display: none;
    left: 0;
    top: 70px;
    text-align: center;
    z-index: 99999;
}

.main_nav li dl {
    display: block;
    height: auto;
}

.main_nav li dl dd {
    display: inline-block;
    width: 90px;
    color: #FFF;
}

.main_nav li dl dd a {
    font-size: 12px;
    font-weight: bolder;
    width: 90px;
    height: 35px;
    line-height: 35px;
    display: block;
}

.main_nav li:hover dl dd a {
    color: #fff;
}

.main_nav li dl dd a:hover {
    color: #ff0000;
}

#magic-line {
    position: absolute;
    z-index: 98;
    top: 66px;
    left: 20px;
    width: 60px !important;
    height: 5px;
    background: #F0C47B;
}

/*--新闻公告*/
.top_notice {
    width: 530px;
    padding-top: 9px;
}

.top_notice_img {
    width: 80px;
    height: 30px;
    vertical-align: middle;
    display: inline-block;
    line-height: initial;
    float: left;
}

.top_notice_text {
    position: relative;
    float: left;
    margin: 0 10px;
    height: 30px;
    line-height: 30px;
    width: 397px;
    font-size: 12px;
    color: #ffffff;
    overflow: hidden;
}

.top_notice_text ul {
    position: absolute;
    width: 1000%;
}

.top_notice_text li {
    float: left;
    width: 397px;
}

.top_notice_text li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    height: 30px;
    width: 100%;
    display: block;
}

.top_notice_text li a:hover {
    color: #b59a61;
}

.top_input {
    width: 572px;
    padding-top: 10px;
}

.input_field {
    outline: 0;
    float: left;
    font-size: 14px;
    color: #c5b186;
    min-height: 24px;
    padding: 0px 5px;
    line-height: 24px;
    border: #9e8342 solid 1px;
    background: #050505;
    width: 87px;
    margin-right: 4px;
}

.top_input a {
    font-size: 14px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    display: block;
    float: left;
    margin-right: 9px;
}

.top_input a.input_sign {
    background: #9a8660;
    margin-left: 5px;
    width: 65px;
}

.top_input a:hover.input_sign {
    background: #8b7750;
}

.top_input a.input_register {
    background: #dd254e;
    width: 80px;
}

.top_input a:hover.input_register {
    background: #c71a40;
}

.top_input a.input_demo {
    background: #d79344;
    width: 80px;
}

.top_input a:hover.input_demo {
    background: #c88538;
}

.top_in {
    font-size: 13px;
    text-align: left;
    color: #F0C47B;
    padding-top: 10px;
    float: left;
}

.top_in a {
    color: #ffffff;
    margin-right: 13px;
}

.top_in a:hover {
    color: #FF0000;
    margin-right: 13px;
}

.color1 {
    font-size: 13px;
    color: #ff0000;
    padding-right: 15px;
    line-height: 30px;
}

.color2 {
    font-size: 13px;
    color: #ff0000;
    line-height: 30px;
}

.weidu a {
    color: #F0C47B;
}

.weidu a:hover {
    color: #ff0000;
}

.top_out {
    padding-top: 13px;
}

.top_out a {
    font-size: 14px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #ffffff;
    display: block;
    float: left;
}

.top_out a.input_into {
    background: #dd254e;
    width: 65px;
}

.top_out a:hover.input_into {
    background: #c71a40;
}

.top_country {
    padding-top: 16px;
}

.top_country a {
    width: 20px;
    height: 15px;
    display: block;
    float: left;
    overflow: hidden;
    margin-right: 5px;
}

.top_country a.country_macao {
    background: url("../images/country.png") no-repeat 0 0;
}

.top_country a.country_cn {
    background: url("../images/country.png") no-repeat -24px 0;
}

.top_country a.country_usa {
    background: url("../images/country.png") no-repeat -47px 0;
}


/*contact*/
.tab_bg {
    background: url('../images/contact_bg.png') no-repeat center #050303;
    height: 760px;
}

#page-body .first-con {
    color: #bababf;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 680px;
    height: 350px;
}

#page-body .first-con-tit {
    padding: 42px 0 0 287px;
}

#page-body .first-con-tit strong {
    font-size: 31px;
    color: #d0d0d0;
    font-weight: normal;
}

#page-body .first-con-tit span {
    font-size: 20px;
    color: #d0d0d0;
    padding-left: 8px;
}

#page-body .first-con-text {
    color: #ffffff;
    padding-left: 20px;
    padding-top: 37px;
}

#page-body .first-con-text li {
    color: #ffffff;
    float: left;
    width: 190px;
    line-height: 18px;
    font-size: 13px;
}

#page-body .first-con-text span {
    float: left;
    padding-top: 4px;
    padding-left: 6px;
}

#page-body .first-con-text i {
    vertical-align: middle;
    display: inline-block;
    line-height: initial;
    float: left;
}



/*tab*/
#first-tab {
    position: relative;
}

#first-tab .tabs-header {
    position: absolute;
    top: -290px;
    right: 0;
    width: 310px;
    z-index: 3;
}

#first-tab .tabs-header li {
    float: left;
    list-style-type: none;
    /*@include box-shadow(rgba(0,
  0,
  0,
  1) 0 50px 50px 0);*/
}

#first-tab .tabs-header li a {
    -webkit-transition-property: background-position;
    transition-property: background-position;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    display: block;
    width: 310px;
    height: 155px;
    background: url('../images/A1.png') 0 0 no-repeat;
}

#first-tab .tabs-header li a.current,
#first-tab .tabs-header li a:hover {
    background-position: right 0;
}

#first-tab .tabs-header li:nth-of-type(2) a {
    background-image: url('../images/B1.png');
}

#first-tab .tabs-header li:nth-of-type(3) a {
    background-image: url('../images/C1.png');
}

#first-tab .tabs-header li:nth-of-type(4) a {
    background-image: url('../images/D1.png');
}

#first-tab .tab-content {
    position: absolute;
    top: -246px;
    clear: both;
    margin-bottom: 150px;
    width: 853px;
    height: 656px;
    overflow: hidden;
}

#first-tab .tab-content .tabs-panel {
    width: 900px;
    height: 656px;
    background: url('../images/A2.png') no-repeat;
    -webkit-transition-property: background-image;
    transition-property: background-image;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

#first-tab .tab-content .tabs-panel a {
    display: block;
    width: 100%;
    height: 100%;
}

#first-tab .tab-content .tabs-panel:nth-of-type(2) {
    background-image: url('../images/B2.png');
}

#first-tab .tab-content .tabs-panel:nth-of-type(3) {
    background-image: url('../images/C2.png');
}

#first-tab .tab-content .tabs-panel:nth-of-type(4) {
    background-image: url('../images/D2.png');
}


/* moble */
.bg_moble {
    background: url("../images/link_bg.png")no-repeat center #171717;
    height: 241px;
}

.moble_bet {
    width: 660px;
    float: left;
}

.moble_bet_img {
    width: 660px;
}

.moble_bet_img strong {}

.moble_bet_img strong a {
    width: 294px;
    height: 192px;
    background: url("../images/she1.png") no-repeat;
    float: left;
    margin: 15px 20px 0 25px;
    display: block;
}

.moble_bet_img strong a:hover {
    background: url("../images/she2.png") no-repeat;
}

.moble_bet_img span {
    vertical-align: middle;
    float: left;
    padding-top: 65px;
}

.moble_bet_link {
    width: 520px;
    float: left;
    font-size: 13px;
}

.moble_bet_link li {
    float: left;
    color: #6d6d6a
}

.moble_bet_link li i {
    font-size: 30px;
    line-height: 20px;
    padding: 0 5px;
}

.moble_bet_link li a {
    color: #6d6d6a
}

.moble_bet_link li a:hover {
    color: #b59a61
}

.friendship_link {
    width: 520px;
    float: right;
}

.friendship_img {
    width: 520px;
    text-align: right;
    padding-top: 21px;
}

.friendship_text {
    float: right;
    padding-top: 20px;
}

.friendship_text li {
    float: left;
    width: 80px;
    margin: 0 12px;
    font-size: 16px;
}

.friendship_text li a {
    color: #848484;
}

.friendship_text li a:hover {
    color: #e5aa61;
}

.friendship_text li a i {
    width: 64px;
    height: 64px;
    text-align: center;
    background: url("../images/xiao.png") no-repeat;
    display: block;
    margin-bottom: 12px;
}

.friendship_text li a:hover .fs_img_01 {
    background: url("../images/xiao.png") no-repeat 0 -64px;
}

.friendship_text li a .fs_img_02 {
    background: url("../images/xiao.png") no-repeat -106px 0px;
}

.friendship_text li a:hover .fs_img_02 {
    background: url("../images/xiao.png") no-repeat -106px -64px;
}

.friendship_text li a .fs_img_03 {
    background: url("../images/xiao.png") no-repeat -204px 0;
}

.friendship_text li a:hover .fs_img_03 {
    background: url("../images/xiao.png") no-repeat -204px -64px;
}

.friendship_text li a .fs_img_04 {
    background: url("../images/xiao.png") no-repeat -301px 0;
}

.friendship_text li a:hover .fs_img_04 {
    background: url("../images/xiao.png") no-repeat -301px -64px;
}

.friendship_text li a .fs_img_05 {
    background: url("../images/xiao.png") no-repeat -397px 0;
}

.friendship_text li a:hover .fs_img_05 {
    background: url("../images/xiao.png") no-repeat -397px -64px;
}

/* 底部 */
.bg_bottom {
    background: url("../images/bottom_bg.png") repeat-x top #131313;
    height: 202px
}

.bottom_icon {
    padding: 28px 0;
    text-align: center;
}

.copyright {
    padding: 36px;
    color: #6d6d6a;
    text-align: center;
}

/* 内页banner */
.banner_about_bg {
    height: 315px;
    width: 100%;
    background: url("../images/about_banner.jpg") no-repeat center #181413;
}

.banner_activity_bg {
    height: 315px;
    width: 100%;
    background: url("../images/activity_banner.jpg") no-repeat center #181413;
}

.banner_lottery_bg {
    height: 315px;
    width: 100%;
    background: url("../images/lottery_banner.jpg") no-repeat center #181413;
}

.banner_electron_bg {
    height: 315px;
    width: 100%;
    background: url("../images/electron_banner.jpg") no-repeat center #181413;
}

.banner_video_bg {
    height: 315px;
    width: 100%;
    background: url("../images/video_banner.jpg") no-repeat center #181413;
}

.banner_match_bg {
    height: 315px;
    width: 100%;
    background: url("../images/match_banner.jpg") no-repeat center #181413;
}


/* 内页关于我们 */
.substance_bg {
    border-top: 1px solid #432e1b;
    margin-top: -1px;
    background: #121212;
    display: flex;
    padding-bottom: 60px;
}

.list_max {
    width: 1180px;
    float: left;
}

.list_left {
    width: 298px;
    border: 1px solid #432e1b;
    min-height: 650px;
    float: left;
    margin-top: -60px;
    background: #131313
}

.list_left_tit {
    background: url("../images/list_tit.png") no-repeat center;
    height: 79px;
}

.list_left_tit span {
    color: #a2825b;
    font-size: 26px;
    padding: 21px 0 0 104px;
    display: inline-block;
}

.list_left_sub ul {
    padding: 25px;
}

.list_left_sub li {
    height: 49px;
    border-bottom: 1px dotted #d69146;
    line-height: 49px;
    padding: 0 10px;
}

.list_left_sub li a {
    font-size: 15px;
    color: #e1a847;
    display: block;
}

.list_left_sub li a:hover {
    color: #ffce7b;
}

.list_left_sub li a small {
    float: right;
}

.list_left_sub li a em {
    float: right;
}

.list_left_sub li a i {
    width: 39px;
    height: 24px;
    margin-right: 8px;
    margin-bottom: 3px;
    vertical-align: middle;
    display: inline-block;
    line-height: initial;
}

.list_left_sub li a i.icon_01 {
    background: url("../images/dian.png") no-repeat;
}

.list_left_sub li a i.icon_02 {
    background: url("../images/dian.png") no-repeat;
}

.list_left_sub li a i.icon_03 {
    background: url("../images/dian.png") no-repeat;
}

.list_left_sub li a i.icon_04 {
    background: url("../images/dian.png") no-repeat;
}

.list_left_sub li a i.icon_05 {
    background: url("../images/dian.png") no-repeat;
}

.list_left_sub li a i.icon_06 {
    background: url("../images/dian.png") no-repeat;
}

.list_left_sub li a i.icon_07 {
    background: url("../images/dian.png") no-repeat;
}

.list_right {
    width: 868px;
    border: 1px solid #432e1b;
    min-height: 650px;
    float: right;
    margin-top: -60px;
    background: #131313;
}

.about_sub {
    padding: 25px 50px;
    float: left;
}

.about_sub p {
    color: #999999;
}

.about_sub .about_sub_01 {
    font-size: 33px;
    color: #e1a847;
    font-weight: normal;
}

.about_sub .about_sub_02 {
    font-size: 25px;
    color: #e1a847;
    font-weight: normal;
}


/* 优惠活动 */
.activity {
    width: 1178px;
    border-left: 1px solid #352415;
    border-right: 1px solid #352415;
    border-bottom: 1px solid #352415;
    min-height: 500px;
    margin-top: -60px;
    background: url("../images/activity_bg.png") no-repeat top #131313;
    padding: 25px 0;
}

.activity_middle {
    margin: 0 auto;
    width: 975px;
}

.lottery_middle {
    margin: 0 auto;
    width: 980px;
}

.electron_middle {
    margin: 0 auto;
    width: 1000px;
}

.video_middle {
    margin: 0 auto;
    width: 1000px;
}

.match_middle {
    margin: 0 auto;
    width: 1030px;
}

/* 底部文案 */
.dlli {
    display: inline-block;
    width: 120px;
    height: 16px;
    margin-right: 3px;
    padding: 6px;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    color: #000;
    font-size: 16px;
    text-align: center;
    line-height: 14px;
    background: #e3c95b;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(227, 201, 91);
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
}

/* 表格样式 */
.yh1hang {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0px;
    margin: 0px;
    background: rgb(233, 220, 133);
    border-width: 1px;
    border-color: rgb(27, 27, 27);
    border-image: initial;
    text-align: center;
}

.biao {
    border-left: 1px solid rgb(51, 51, 51);
    border-right: 1px solid rgb(62, 62, 62);
    border-top: 1px solid rgb(51, 51, 51);
    border-bottom: 1px solid rgb(62, 62, 62);
    border-collapse: collapse;
    border-spacing: 0px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    margin: 0px auto;
    text-align: center;
    width: 865px;
    color: rgb(255, 255, 255);
    font-family: 微软雅黑;
}

.biao1 {
    width: 860px;
    font-size: 14px;
    font-weight: normal;
    color: rgb(0, 0, 0);
    background-color: rgb(27, 27, 27);
    margin: 0 auto;
}

.yh2hang {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0px;
    margin: 0px;
    text-align: center;
    background: rgb(44, 44, 44);
    color: rgb(205, 205, 205);
}