@charset "utf-8";

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}



li {
    list-style: none;
}

img,
input {
    border: 0px;
    vertical-align: middle;
    font-family: 'Microsoft Yahei';
    outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ul,
li,
input,
button,
dd,
dl,
dt {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    font-weight: normal;
    font-style: normal;
}

a,
i,
em,
b,
strong {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
}

.clear {
    clear: both;
    display: none;
}

.clearfix:after {
    content: ".";
    height: 0px;
    display: block;
    clear: both;
    visibility: hidden;
}

.clearfix:after {
    zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.wid {
    width: 1200px;
    margin: 0 auto;
}

button {
    outline: none;
    font-family: 'Microsoft Yahei';
}

select {
    outline: 0;
    background: none;
    appearance: none;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari 和 Chrome */
    -webkit-appearance: value;
    -moz-appearance: value;
    appearance: value;
}

input::-ms-clear {
    display: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body,
html {
    min-width: 240px;
    font-family: Microsoft Yahei, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    position: relative;
    color: #000000;
    background: #fff;
}

input::-webkit-input-placeholder {
    color: #c0c0c0;
}

input:-moz-placeholder {
    color: #c0c0c0;
    font-family: 'Microsoft Yahei';
}

textarea:-moz-placeholder {
    color: #c0c0c0;
}

textarea::-webkit-textarea-placeholder {
    color: #c0c0c0;
}

textarea:-ms-input-placeholder {
    color: #c0c0c0;
}

textarea::-webkit-input-placeholder {
    color: #c0c0c0;
}



button,
input[type="text"],
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-appearance: button;
}

a {
    color: #000000;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/*nav-------------------------------------------------*/
.header {
    height: 118px;
    line-height: 118px;
    background: #fff;
}

.header .fl .shield {
    position: relative;
    padding-left: 35px;
    margin-left: 35px;
    display: inline-block;
}

.header .fl .shield::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 60px;
    margin-top: -30px;
    background: #e4e4e4;
}

.header .hd-nav {
    line-height: normal;
}

.header .hd-nav li {
    float: left;
    margin-left: 35px;
    text-align: center;
    margin-top: 28px;
    cursor: pointer;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.header .hd-nav li .iconfont {
    display: block;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.header .hd-nav li span {
    display: block;
    color: #22263e;
    font-size: 15px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
}


.header .hd-nav li:first-child .iconfont {
    background-image: url(../images/icon_aboutus.png)
}

.header .hd-nav li:nth-child(2) .iconfont {
    background-image: url(../images/icon_zjaq.png)
}

.header .hd-nav li:nth-child(3) .iconfont {
    background-image: url(../images/icon_online.png)
}

.header .hd-nav li:nth-child(4) .iconfont {
    background-image: url(../images/icon_account.png)
}



.banner {
    height: 600px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.banner-img img {
    max-width: 100%;
    animation: heart 1.2s ease-in-out infinite alternate;
}

@keyframes heart {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(0, 30px)
    }
}

@-moz-keyframes heart {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(0, 30px)
    }
}

@-webkit-keyframes heart {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(0, 30px)
    }
}

@-o-keyframes heart {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(0, 30px);
    }
}

.banner-con {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 25px;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 3;

}

.banner-con .title-con {
    background-position: center;
    width: 547px;
    height: 476px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    flex-flow: column;

}

.banner-con .title-con img {
    position: relative;
    top: 7px;
}

.bn-btns {
    text-align: center;
    font-size: 0;
}

.bn-btns a {
    display: inline-block;
    border: 1px solid #fceeb7;
    border-radius: 3px;
    margin: 0 20px;
    font-size: 14px;
    padding: 4px;
}

.bn-btns a span {
    display: inline-block;
    padding: 12px 55px;
    border-radius: 3px;
    font-size: 20px;
    background: -moz-linear-gradient(top, #fceeb7 0%, #bcac6f 100%);
    background: -webkit-linear-gradient(top, #fceeb7 0%, #bcac6f 100%);
    background: -o-linear-gradient(top, #fceeb7 0%, #bcac6f 100%);
    background: -ms-linear-gradient(top, #fceeb7 0%, #bcac6f 100%);
    background: linear-gradient(to bottom, #fceeb7 0%, #bcac6f 100%);
    transition: background-color .3s ease all;
}

.bn-btns a .iconfont {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 30px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bn-btns a .icon-free {
    background-image: url(../images/icon_yuyue.png)
}

.bn-btns a .icon-kefu {
    background-image: url(../images/icon_kefu.png)
}

.bn-btns a .icon-lingqu {
    background-image: url(../images/icon_qiandao.png)
}

.bn-btns a .icon-canyu {
    background-image: url(../images/icon_canyu.png)
}






.comm-header {
    position: relative;
    font-size: 40px;
    color: #c9c7c7;
    font-weight: bold;
    text-align: center;
}

.comm-header span {
    padding: 0 30px;
    position: relative;
}

.comm-header span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -169px;
    margin-top: -8px;
    width: 169px;
    height: 17px;
    background: url(../images/title_left_bg.png) no-repeat center;
}

.comm-header span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -169px;
    margin-top: -8px;
    width: 169px;
    height: 17px;
    background: url(../images/title_right_bg.png) no-repeat center;
}

.cashGift {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 56px 0 60px 0;
}

.cash-list {
    margin-top: 90px;
}

.cash-list .swiper-slide {
    height: 340px;
    width: 33.3333%;

}

.swiper-slide img {
    max-width: 100%;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

/* .swiper-slide.swiper-slide-active {
    transform: scale(1.5);
    z-index: 2;
} */
.cash-list .swiper-container {
    overflow: visible;
}



/* events */
.events {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.event-con {
    text-align: center;
    padding: 0 14px;
    position: relative;
}

.event-con::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 2px;
    background: url(../images/line.png) repeat-x center;
}

.events-wrap {
    margin-top: 100px;
}

.event-con .e-time {
    position: relative;
    margin: 0 auto;
    margin-bottom: 30px;
    background: url(../images/time_bg.png) no-repeat center;
    width: 100px;
    height: 46px;
    line-height: 34px;
    font-size: 16px;
    color: #261710;
}

.event-con .e-content {
    background: url(../images/elist_bg.png) no-repeat center;
    background-size: 100% 100%;
    padding: 30px 0 0 0;
    height: 150px;
}

.event-con .e-content .main {
    background: #fff;
    background: url(../images/main_bg.png) no-repeat center;
    background-size: 100% 100%;
    margin: 0 26px;
    padding: 36px 0 26px 0;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;

}

.event-con .e-content section {
    margin-bottom: 14px;
}

.event-con .e-content section p {
    font-size: 14px;
    color: #261710;
}

.event-con .e-content figure {
    font-size: 26px;
}

.events-wrap .swiper-container {
    padding-bottom: 120px;
}

.events-wrap .swiper-slide {
    cursor: pointer;
}




.live {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.live .swiper-container {
    margin-bottom: 30px;
    margin-top: 20px;
}

.live .swiper-slide {
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 400px;


}

.live .live-con .l-name {
    font-size: 18px;
    color: #d3ae60
}

.live .swiper-slide:not(.swiper-slide-active) .live-con {
    transform: scale(0.76);
}

.live .live-con {
    text-align: center;
    width: 100%;
}

.live .live-con .live-img {
    width: 100%;
}

.live .live-con .live-img img {
    max-width: 100%;
    /* height: 354px; */
}

/*pg-footer*/
.pg-footer {
    background: #22263f;
    padding-top: 36px;
}

.pg-footer .ft-header {
    text-align: center;
    font-size: 30px;
    color: #e0ba72;
}

.pg-footer .ft-header img {
    width: 100px;
    padding: 0 20px;
}

.ft-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 35px;

}

.ft-item {
    width: 48.7%;
    border: 1px solid #515670;
    border-radius: 10px;
    position: relative;
    height: 330px;
    padding-top: 26px;
    color: #fff;
}

.ft-item .item-tit {
    position: absolute;
    top: -12px;
    width: 154px;
    left: 50%;
    margin-left: -77px;
    font-size: 18px;
    color: #e0ba72;
    background: #22263f;
    text-align: center;
}

.ft-item .item-tit span {
    padding: 0 35px;
    position: relative;
}

.ft-item .item-tit span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    width: 25px;
    height: 11px;
    background: url(../images/ft-tit-bg.png) no-repeat center/contain;
}

.ft-item .item-tit span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -6px;
    width: 25px;
    height: 11px;
    background: url(../images/ft-tit-bg-right.png) no-repeat center/contain;
}

.ft-item ul li {
    width: 33.3333%;
    text-align: center;
    float: left;
    margin-bottom: 34px;
}

.ft-item ul li .ft-img {
    height: 76px;
    line-height: 76px;
}

.ft-item ul li .ft-img img {
    max-width: 100%;
    max-height: 100%
}

.ft-item ul li article {
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-top: 10px;
}

.ft-item ul li article p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copyRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #999999;
    padding: 15px 0 25px;
}

.copyRight a {
    color: #999999;
}



.copyRight .contact .icons {
    font-size: 0;
}

.copyRight .contact .icons li {
    display: inline-block;
    position: relative;
    padding: 0 10px;
}

.copyRight .contact .icons li:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 0;
    width: 1px;
    height: 20px;
    background: #515670;
}

.copyRight .contact .icons li:last-child::after {
    display: none;
}

.copyRight .contact .icons li .iconfont {
    height: 24px;
    width: 22px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    -moz-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.copyRight .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

}

.copyRight .contact .icons {
    margin-right: 7px;
}

.copyRight .contact .icons li .icon-qq {
    background-image: url(../images/icon_qq.png);
}

.copyRight .contact .icons li .icon-talk {
    background-image: url(../images/icon_ziaxian.png);
}

.hot-line {
    text-align: center;
}

.hot-line .tip {
    letter-spacing: 4px;
}

/* m-banner */
.m-banner {
    display: none;
}

.m-banner img {
    width: 100%;
}

.m-cash {
    display: none;
}

.cash-list .flipster {
    margin-top: 20px;
}

.flipster.flipster-carousel .flip-items img {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.flipster.flipster-carousel .flip-next {
    transform: translateX(43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -webkit-transform: translateX(43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -moz-transform: translateX(43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -o-transform: translateX(43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -ms-transform: translateX(43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.flipster.flipster-carousel .flip-prev {
    transform: translateX(-43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -webkit-transform: translateX(-43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -moz-transform: translateX(-43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -o-transform: translateX(-43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -ms-transform: translateX(-43%) translateY(-5%) translateZ(0) rotateY(0deg) scale(0.7) !important;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.cash-list .flipster.flipster-carousel .flip-items img {
    height: 5.6rem;
    width: 7.6rem;
}

.m-live .flipster.flipster-carousel .flip-items img {

    width: auto;
    height: 5.973333rem;
}


.flipster-carousel .flip-next {
    transform: translateX(67%) translateZ(0) rotateY(0deg) scale(0.81);
    -webkit-transform: translateX(67%) translateZ(0) rotateY(0deg) scale(0.81);
    -moz-transform: translateX(67%) translateZ(0) rotateY(0deg) scale(0.81);
    -ms-transform: translateX(67%) translateZ(0) rotateY(0deg) scale(0.81);
    -o-transform: translateX(67%) translateZ(0) rotateY(0deg) scale(0.81);
    opacity: 1;
}

.flip-next .flip-box,
.flip-prev .flip-box {
    position: relative;
}

.flip-next .flip-box::after,
.flip-prev .flip-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}

.flipster-carousel .flip-prev {
    opacity: 1;
    transform: translateX(-67%) translateZ(0) rotateY(0deg) scale(0.81);
    -webkit-transform: translateX(-67%) translateZ(0) rotateY(0deg) scale(0.81);
    -moz-transform: translateX(-67%) translateZ(0) rotateY(0deg) scale(0.81);
    -ms-transform: translateX(-67%) translateZ(0) rotateY(0deg) scale(0.81);
    -o-transform: translateX(-67%) translateZ(0) rotateY(0deg) scale(0.81);
}

.pc-live {
    margin-top: 30px;
    margin-bottom: 20px;
}

.pc-live .flipster.flipster-carousel .flip-next {
    transform: translateX(100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -webkit-transform: translateX(100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -moz-transform: translateX(100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -o-transform: translateX(100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -ms-transform: translateX(100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.pc-live .flipster.flipster-carousel .flip-prev {
    transform: translateX(-100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -webkit-transform: translateX(-100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -moz-transform: translateX(-100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -o-transform: translateX(-100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -ms-transform: translateX(-100%) translateY(5%) translateZ(0) rotateY(0deg) scale(0.9) !important;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.pc-live .flip-items img {
    width: auto
}


.flip-next .flip-box::after,
.flip-prev .flip-box::after {
    background: none;
}

.swiper-button-next,
.swiper-button-prev {
    width: .266667rem;
    height: .48rem;
    background-position: center;
    background-size: contain;
}

.swiper-button-prev {
    background-image: url(../images/arrow_left.png);
    left: .133333rem;
}

.swiper-button-next {
    background-image: url(../images/arrow_right.png);
    right: .133333rem
}

.swiper-pagination {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.swiper-pagination-bullet {
    width: .4rem;
    height: .133333rem;
    background: #5f544b;
    border-radius: 30px;
    margin: 0 .106667rem;
    opacity: 1;
    outline: none;

}

.swiper-pagination-bullet-active {
    background: #fdefb7
}





.m-live {
    display: none;
}


.bottom-mobile {
    width: 100%;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    z-index: 99;
    padding: .306667rem .533333rem;
    background: #1d2236;
    display: none;
}

.bottom-mobile a {
    width: 4.32rem;
    height: 1.186667rem;
    text-align: center;
    line-height: 1.186667rem;
    display: block;
    border-radius: .133333rem;
    overflow: hidden;
    color: #fff;
    font-size: .48rem;

}

.bottom-mobile a img {
    height: .48rem;
    margin-right: .4rem;
    position: relative;
    top: -1px;
}

.zixun-btn {
    background: #f5bb67
}

.now-btn {
    background: #f54a42;
}






@media screen and (min-width:769px) {

    .header .hd-nav li:hover span {
        color: #ea4f46;
    }

    .header .hd-nav li:first-child:hover .iconfont {
        background-image: url(../images/icon_aboutus_on.png)
    }

    .header .hd-nav li:nth-child(2):hover .iconfont {
        background-image: url(../images/icon_zjaq_on.png)
    }

    .header .hd-nav li:nth-child(3):hover .iconfont {
        background-image: url(../images/icon_online_on.png)
    }

    .header .hd-nav li:nth-child(4):hover .iconfont {
        background-image: url(../images/icon_account_on.png)
    }

    .bn-btns a:hover {
        color: #fff;
    }

    .bn-btns a:hover .icon-free {
        background-image: url(../images/icon_yuyue_on.png)
    }

    .bn-btns a:hover .icon-kefu {
        background-image: url(../images/icon_kefu_on.png)
    }

    .bn-btns a:hover .icon-lingqu {
        background-image: url(../images/icon_qiandao_on.png)
    }

    .bn-btns a:hover .icon-canyu {
        background-image: url(../images/icon_canyu_on.png)
    }


    .bn-btns a:hover span {
        background: #ea4f46;
    }

    .cash-list .swiper-slide:hover img {
        -ms-transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }

    .events-wrap .swiper-slide:hover .event-con .main {
        padding: 50px 0 40px 0;
    }

    .copyRight a:hover {
        color: #fff;
    }


    .copyRight .contact .icons li .iconfont:hover {
        opacity: 1;
    }


}