@charset "UTF-8";
html {
    min-height: 100%;
}

body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

@media only screen and (min-width: 320px) {
    html {
        font-size: 16px !important;
    }
}

@media only screen and (min-width: 360px) {
    html {
        font-size: 20px !important;
    }
}

@media only screen and (min-width: 412px) {
    html {
        font-size: 24px !important;
    }
}

@media only screen and (min-width: 768px) {
    html {
        font-size: 28px !important;
    }
}

@media only screen and (min-width: 1024px) {
    html {
        font-size: 32px !important;
    }
}

body {
    font: 12px/1.5 'Microsoft YaHei', '宋体', Tahoma, Arial, sans-serif;
    color: #555;
    background-color: #F7F7F7;
}

a {
    color: #101010;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    width: auto\9;
    -ms-interpolation-mode: bicubic;
}

em,
i {
    font-style: normal;
}

ul,
li {
    list-style-type: none;
}

strong {
    font-weight: normal;
}

header {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(#ff6912, #ffcc00);
    box-sizing: border-box;
    color: #fff;
}

header a.back {
    background: url(../images/back.png) no-repeat center;
    background-size: 50% 50%;
    color: #fff;
    position: absolute;
    z-index: 2;
    display: inline-block;
    width: 30px;
    height: 50px;
    padding: 0 .36rem;
}

header .menu {
    background: url(../images/menu.png) no-repeat center;
    background-size: 80% 65%;
    width: 22px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    padding: 0 .5rem;
    color: #fff;
    font-size: 1.1rem;
}

header h1 {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

header h1 img {
    vertical-align: top;
    height: 100%;
    width: auto;
}

.wap-wrapper {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    background: #fff;
}

.clear {
    clear: both;
}

.system-error {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

/*banner*/

.banner {
    margin-top: 50px;
    width: 100%;
    height: 6rem;
    box-sizing: border-box;
    overflow: hidden;
}

.swiper-container-horizontal>.swiper-pagination {
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    opacity: .4 !important;
    background: #fff !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #fff !important;
}

/*获取数据动画*/

.mint-indicator {
    position: relative;
    z-index: 1000;
}

.mint-indicator {
    transition: opacity .2s linear;
}

.mint-indicator-wrapper {
    top: 50%;
    left: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    box-sizing: border-box;
    text-align: center;
    padding: 15px;
}

.mint-indicator-spin {
    display: inline-block;
    text-align: center;
    -webkit-animation: circle 1s infinite linear;
    /*匀速 循环*/
}

@-webkit-keyframes circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.mint-indicator-text {
    display: block;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}

.mint-spinner-snake {
    animation: mint-spinner-rotate .8s infinite linear;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: rgb(204, 204, 204);
    border-left-color: rgb(204, 204, 204);
    border-bottom-color: rgb(204, 204, 204);
    height: 32px;
    width: 32px;
}

/*板块加载动画*/

.mint-indicator-min {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 10px;
    z-index: 999;
}

.mint-indicator-min>div {
    background-color: #E54545;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.mint-indicator-min .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.mint-indicator-min .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.mint-indicator-min .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.mint-indicator-min .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/*内容*/

section {
    max-width: 1024px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    ;
    position: relative;
    min-height: 100%;
    clear: both;
    font-size: .7rem;
}

.loading>img {
    width: auto;
    vertical-align: middle;
    height: 14px;
}

.clearfix {
    zoom: 1;
}

/*颜色*/

.c-red {
    color: #e54545;
}

/*回顶部*/

#top {
    background: url(../images/top_btn.png) no-repeat;
    background-size: 100% 100%;
    width: 41px;
    height: 41px;
    display: none;
    position: fixed;
    right: 10px;
    bottom: 55px;
    z-index: 50;
}

/*留言*/

#message {
    background: url(../images/message.png) no-repeat;
    background-size: 100% 100%;
    width: 41px;
    height: 41px;
    position: fixed;
    right: 10px;
    bottom: 50px;
    z-index: 100;
}

/*六合彩*/

.number i {
    float: left;
    width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
    margin: 0 .16rem 0 0;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    background: #4d84eb;
}

.number.hk6-num i.n3,
.number.hk6-num i.n4,
.number.hk6-num i.n9,
.number.hk6-num i.n10,
.number.hk6-num i.n14,
.number.hk6-num i.n15,
.number.hk6-num i.n20,
.number.hk6-num i.n25,
.number.hk6-num i.n26,
.number.hk6-num i.n31,
.number.hk6-num i.n36,
.number.hk6-num i.n37,
.number.hk6-num i.n41,
.number.hk6-num i.n42,
.number.hk6-num i.n47,
.number.hk6-num i.n48 {
    background: #0093e8;
}

.number.hk6-num i.n5,
.number.hk6-num i.n6,
.number.hk6-num i.n11,
.number.hk6-num i.n16,
.number.hk6-num i.n17,
.number.hk6-num i.n21,
.number.hk6-num i.n22,
.number.hk6-num i.n27,
.number.hk6-num i.n28,
.number.hk6-num i.n32,
.number.hk6-num i.n33,
.number.hk6-num i.n38,
.number.hk6-num i.n39,
.number.hk6-num i.n43,
.number.hk6-num i.n44,
.number.hk6-num i.n49 {
    background: #1fc26b;
}

.number.hk6-num i.n1,
.number.hk6-num i.n2,
.number.hk6-num i.n7,
.number.hk6-num i.n8,
.number.hk6-num i.n12,
.number.hk6-num i.n13,
.number.hk6-num i.n18,
.number.hk6-num i.n19,
.number.hk6-num i.n23,
.number.hk6-num i.n24,
.number.hk6-num i.n29,
.number.hk6-num i.n30,
.number.hk6-num i.n34,
.number.hk6-num i.n35,
.number.hk6-num i.n40,
.number.hk6-num i.n45,
.number.hk6-num i.n46 {
    background: #f8223c;
}

/*新加坡*/

.number.xjp-num i.n3,
.number.xjp-num i.n4,
.number.xjp-num i.n9,
.number.xjp-num i.n10,
.number.xjp-num i.n14,
.number.xjp-num i.n15,
.number.xjp-num i.n20,
.number.xjp-num i.n25,
.number.xjp-num i.n26,
.number.xjp-num i.n31,
.number.xjp-num i.n36,
.number.xjp-num i.n37,
.number.xjp-num i.n41,
.number.xjp-num i.n42,
.number.xjp-num i.n47,
.number.xjp-num i.n48 {
    background: #0093e8;
}

.number.xjp-num i.n5,
.number.xjp-num i.n6,
.number.xjp-num i.n11,
.number.xjp-num i.n16,
.number.xjp-num i.n17,
.number.xjp-num i.n21,
.number.xjp-num i.n22,
.number.xjp-num i.n27,
.number.xjp-num i.n28,
.number.xjp-num i.n32,
.number.xjp-num i.n33,
.number.xjp-num i.n38,
.number.xjp-num i.n39,
.number.xjp-num i.n43,
.number.xjp-num i.n44,
.number.xjp-num i.n49 {
    background: #1fc26b;
}

.number.xjp-num i.n1,
.number.xjp-num i.n2,
.number.xjp-num i.n7,
.number.xjp-num i.n8,
.number.xjp-num i.n12,
.number.xjp-num i.n13,
.number.xjp-num i.n18,
.number.xjp-num i.n19,
.number.xjp-num i.n23,
.number.xjp-num i.n24,
.number.xjp-num i.n29,
.number.xjp-num i.n30,
.number.xjp-num i.n34,
.number.xjp-num i.n35,
.number.xjp-num i.n40,
.number.xjp-num i.n45,
.number.xjp-num i.n46 {
    background: #f8223c;
}

/*澳门六合彩*/

.number.amlhc-num i.n3,
.number.amlhc-num i.n4,
.number.amlhc-num i.n9,
.number.amlhc-num i.n10,
.number.amlhc-num i.n14,
.number.amlhc-num i.n15,
.number.amlhc-num i.n20,
.number.amlhc-num i.n25,
.number.amlhc-num i.n26,
.number.amlhc-num i.n31,
.number.amlhc-num i.n36,
.number.amlhc-num i.n37,
.number.amlhc-num i.n41,
.number.amlhc-num i.n42,
.number.amlhc-num i.n47,
.number.amlhc-num i.n48 {
    background: #0093e8;
}

.number.amlhc-num i.n5,
.number.amlhc-num i.n6,
.number.amlhc-num i.n11,
.number.amlhc-num i.n16,
.number.amlhc-num i.n17,
.number.amlhc-num i.n21,
.number.amlhc-num i.n22,
.number.amlhc-num i.n27,
.number.amlhc-num i.n28,
.number.amlhc-num i.n32,
.number.amlhc-num i.n33,
.number.amlhc-num i.n38,
.number.amlhc-num i.n39,
.number.amlhc-num i.n43,
.number.amlhc-num i.n44,
.number.amlhc-num i.n49 {
    background: #1fc26b;
}

.number.amlhc-num i.n1,
.number.amlhc-num i.n2,
.number.amlhc-num i.n7,
.number.amlhc-num i.n8,
.number.amlhc-num i.n12,
.number.amlhc-num i.n13,
.number.amlhc-num i.n18,
.number.amlhc-num i.n19,
.number.amlhc-num i.n23,
.number.amlhc-num i.n24,
.number.amlhc-num i.n29,
.number.amlhc-num i.n30,
.number.amlhc-num i.n34,
.number.amlhc-num i.n35,
.number.amlhc-num i.n40,
.number.amlhc-num i.n45,
.number.amlhc-num i.n46 {
    background: #f8223c;
}

/*pk10 极速飞艇 极速赛车 幸运飞艇*/

.number.jsft-num i,
.number.jspk10-num i,
.number.pk10-num i,
.number.speed10-num i,
.number.xyft-num i,
.number.xyft168-num i {
    border-radius: 3px;
}

.number.jsft-num i.n4,
.number.jspk10-num i.n4,
.number.pk10-num i.n4,
.number.speed10-num i.n4,
.number.xyft-num i.n4,
.number.xyft-num i.n04,
.number.xyft168-num i.n04 {
    background: #ff7600;
}

.number.jsft-num i.n2,
.number.jspk10-num i.n2,
.number.pk10-num i.n2,
.number.speed10-num i.n2,
.number.xyft-num i.n2,
.number.xyft-num i.n02,
.number.xyft168-num i.n02 {
    background: #0092dd;
}

.number.jsft-num i.n5,
.number.jspk10-num i.n5,
.number.pk10-num i.n5,
.number.speed10-num i.n5,
.number.xyft-num i.n5,
.number.xyft-num i.n05,
.number.xyft168-num i.n05 {
    background: #17e2e5;
}

.number.jsft-num i.n9,
.number.jspk10-num i.n9,
.number.pk10-num i.n9,
.number.speed10-num i.n9,
.number.xyft-num i.n9,
.number.xyft-num i.n09,
.number.xyft168-num i.n09 {
    background: #780b00;
}

.number.jsft-num i.n3,
.number.jspk10-num i.n3,
.number.pk10-num i.n3,
.number.speed10-num i.n3,
.number.xyft-num i.n3,
.number.xyft-num i.n03,
.number.xyft168-num i.n03 {
    background: #4b4b4b;
}

.number.jsft-num i.n8,
.number.jspk10-num i.n8,
.number.pk10-num i.n8,
.number.speed10-num i.n8,
.number.xyft-num i.n8,
.number.xyft-num i.n08,
.number.xyft168-num i.n08 {
    background: #ff2600;
}

.number.jsft-num i.n7,
.number.jspk10-num i.n7,
.number.pk10-num i.n7,
.number.speed10-num i.n7,
.number.xyft-num i.n7,
.number.xyft-num i.n07,
.number.xyft168-num i.n07 {
    background: #bfbfbf;
}

.number.jsft-num i.n10,
.number.jspk10-num i.n10,
.number.pk10-num i.n10,
.number.speed10-num i.n10,
.number.xyft-num i.n10,
.number.xyft168-num i.n10 {
    background: #07bf00;
}

.number.jsft-num i.n1,
.number.jspk10-num i.n1,
.number.pk10-num i.n1,
.number.speed10-num i.n1,
.number.xyft-num i.n1,
.number.xyft-num i.n01,
.number.xyft168-num i.n01 {
    background: #e6de00;
}

.number.jsft-num i.n6,
.number.jspk10-num i.n6,
.number.pk10-num i.n6,
.number.speed10-num i.n6,
.number.xyft-num i.n6,
.number.xyft-num i.n06,
.number.xyft168-num i.n06 {
    background: #5234ff;
}

/*广东快乐10分*/

.number.gd_klsf-num i.n19,
.number.gd_klsf-num i.n20 {
    background: #ff7701;
}

/*幸运农场*/

.number.xync-num i {
    background: url(../images/xync-num.png) center top no-repeat;
    background-size: 100% auto;
    text-indent: -9999px;
    box-sizing: border-box;
}

.number.xync-num i.n2 {
    background-position: center -1.4rem;
}

.number.xync-num i.n3 {
    background-position: center -2.8rem;
}

.number.xync-num i.n4 {
    background-position: center -4.2rem;
}

.number.xync-num i.n5 {
    background-position: center -5.6rem;
}

.number.xync-num i.n6 {
    background-position: center -7rem;
}

.number.xync-num i.n7 {
    background-position: center -8.4rem;
}

.number.xync-num i.n8 {
    background-position: center -9.8rem;
}

.number.xync-num i.n9 {
    background-position: center -11.2rem;
}

.number.xync-num i.n10 {
    background-position: center -12.6rem;
}

.number.xync-num i.n11 {
    background-position: center -14rem;
}

.number.xync-num i.n12 {
    background-position: center -15.4rem;
}

.number.xync-num i.n13 {
    background-position: center -16.8rem;
}

.number.xync-num i.n14 {
    background-position: center -18.2rem;
}

.number.xync-num i.n15 {
    background-position: center -19.6rem;
}

.number.xync-num i.n16 {
    background-position: center -21rem;
}

.number.xync-num i.n17 {
    background-position: center -22.4rem;
}

.number.xync-num i.n18 {
    background-position: center -23.8rem;
}

.number.xync-num i.n19 {
    background-position: center -25.2rem;
}

.number.xync-num i.n20 {
    background-position: center -26.6rem;
}

/*江苏快三*/

.number.js_k3-num i,
.number.hbkuai3-num i {
    background: url(../images/js_k3-num.png) center top no-repeat;
    background-size: 100% auto;
    text-indent: -9999px;
    border-radius: 0;
}

.number.js_k3-num i.n2,
.number.hbkuai3-num i.n2 {
    background-position: center -1.4rem;
}

.number.js_k3-num i.n3,
.number.hbkuai3-num i.n3 {
    background-position: center -2.8rem;
}

.number.js_k3-num i.n4,
.number.hbkuai3-num i.n4 {
    background-position: center -4.2rem;
}

.number.js_k3-num i.n5,
.number.hbkuai3-num i.n5 {
    background-position: center -5.6rem;
}

.number.js_k3-num i.n6,
.number.hbkuai3-num i.n6 {
    background-position: center -7rem;
}

.lhc1,
.lhc01,
.lhc2,
.lhc02,
.lhc7,
.lhc07,
.lhc8,
.lhc08,
.lhc12,
.lhc13,
.lhc18,
.lhc19,
.lhc23,
.lhc24,
.lhc29,
.lhc30,
.lhc34,
.lhc35,
.lhc40,
.lhc45,
.lhc46 {
    background-image: url(../images/g-red.png) !important;
    color: #000 !important;
}

.lhc3,
.lhc03,
.lhc4,
.lhc04,
.lhc9,
.lhc09,
.lhc10,
.lhc14,
.lhc15,
.lhc20,
.lhc25,
.lhc26,
.lhc31,
.lhc36,
.lhc37,
.lhc41,
.lhc42,
.lhc47,
.lhc48 {
    background-image: url(../images/g-blue.png) !important;
    color: #000 !important;
}

.lhc5,
.lhc05,
.lhc6,
.lhc06,
.lhc11,
.lhc16,
.lhc17,
.lhc21,
.lhc22,
.lhc27,
.lhc28,
.lhc32,
.lhc33,
.lhc38,
.lhc39,
.lhc43,
.lhc44,
.lhc49 {
    background-image: url(../images/g-green.png) !important;
    color: #000 !important;
}

.footer {
    width: 100%;
    height: 48px;
    background: #555;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    z-index: 300;
}

.footer a {
    display: flex;
    width: 33.3%;
    height: 48px;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: .7rem;
}

body>a {
    display: none;
}