@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    border:0;
}

ol,
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}
i {
    font-style: normal;
}

a {
    color: #26262f;
    /* blr: expression(this.onFocus=this.blur()); */
}

a:focus {
    outline: none;
}

a.hidefocus {
    outline: none
}

.fl {
    float: left;
}

.fr {
    float: right;
}


input {
    outline: none
}

.clearfix:after,
.clearfix::before {
    display: block;
    content: "";
    clear: both;
    height: 0;
    overflow: hidden;

}

.clearfix {
    zoom: 1;
}
.txtauto {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
img {
    display: block;
}

body {
    background-color: #0c0c2e;
    font: 400 14px/1.8 'pingfang', Arial, Helvetica, sans-serif;
    color: #fff;
}

.clear {
    clear: both;
}

.ContentW-all{
    width: 1200px;
    height: 100vh;
    margin:  0 auto;
    background: url(../image/contback.png) no-repeat center;
    background-size: 100% auto;
    position: relative;
}
.ContentW-all .contw{
    width: 268px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.ContentW-all .contw .icon{
    width: 100%;
    height: auto;
}
.ContentW-all .contw .icon img{
    width: 100%;
    height: auto;
}
.ContentW-all .contw .btn{
    width: auto;
    height: 52px;
    background: linear-gradient(to right,#f5bc47,#f19223);
    color: #fff;
    text-align: center;
    line-height: 52px;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    font-size: 18px;
    padding: 0 30px;
    overflow: hidden;
    position: relative;
}
.ContentW-all .contw .btn:before {
    background-color: hsla(0, 0%, 100%, .2);
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    transform: skewX(-30deg);
    width: 45px;
    will-change: left;
    z-index: 1;
    animation: flare 6s ease infinite;
}

@keyframes flare {
    0% {
        left: -65px
    }

    20% {
        left: calc(100% + 35px)
    }

    to {
        left: calc(100% + 35px)
    }
}