@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: url(../image/back.jpg) no-repeat center #f5f5f5;
    background-size: cover;
    font: 400 14px/1.8 'pingfang', Arial, Helvetica, sans-serif;
    color: #333;
}

.clear {
    clear: both;
}

.dispflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dispflex-l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dispflex-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    justify-content: flex-end;
}
.hide{
    display: none;
}
.show{
    display: block !important;
}
.mbw {
    margin-bottom: 20px !important;
}

.mlw {
    margin-left: 20px !important;
}

.mrw {
    margin-right: 20px !important;
}

.mrm {
    margin-right: 10px !important;
}

.mlm {
    margin-left: 10px !important;
}

.mtm {
    margin-top: 10px !important;
}
.mts {
    margin-top: 30px !important;
}
/* font */
.Fcolor-red {
    color: #ff3e1e !important;
}

.Fcolor-blue {
    color: #00aeff !important;
}

.Fcolor-green {
    color: #00ff66 !important;
}

.Fcolor-yellow {
    color: #ffde00 !important;
}

.Fcolor-white {
    color: #fff !important;
}

.Fcolor-sm {
    color: #8490af !important;
}

.Fcolor-black {
    color: #000 !important;
}
.mtmax{
    margin-top: 120px !important;
}
.btnWhite{
    background-color: #f6f6f6;
    border:1px solid #ddd;
    border-radius: 8px;
}
.btnyellow {
    background-image: linear-gradient(to bottom, #ffd61b, #e89400);
    border: 1px solid #b77700;
    border-radius: 8px;
    color: #713e00;
    transition: 0.15s ease-in-out;
}

.btnyellow:hover {
    background-image: linear-gradient(to bottom,#ffea59, #ffb636) !important;
    border-color: #c89943 !important;
    color: #000 !important;
}
.btnyellow-color {
    background: #e89400;
    border: 1px solid #b77700;
    border-radius: 8px;
    color: #fff;
    transition: 0.2s ease-in-out;
}

.btnyellow-color:hover {
    background-color: #ffd61b;
    color: #000;
}
.btnWGrad {
    background-image: linear-gradient(to bottom, #fafeff 46%,#dee7fb 74%, #fafeff 100%);
    border: 1px solid #a0aab1;
    border-radius: 8px;
    transition: 0.15s ease-in-out;
    color: #2c2e34;
}
.btnWGrad:hover{
    background-image: linear-gradient(to bottom, #ffffff 46%, #edf0f7 74%, #ffffff 100%) !important;
    border-color: #cdd6db !important;
    color: #000 !important;
}
.ContentW-all{
    width: 900px;
    height: 100vh;
    margin:  0 auto;
    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;
    color: #666;
    text-align: center;
    display: block;
    margin: 30px auto 0;
    font-size: 18px;
    position: relative;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.loadingw{
    width: 29px;
    height: 29px;
    margin: 30px auto 0;
}
.loading {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 4px solid #ddd;
    border-top: 4px solid #ffb636;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes loading {
    0% {
        content: "";
    }

    25% {
        content: ".";
    }

    50% {
        content: "..";
    }

    75% {
        content: "...";
    }
}

.loading-text::after {
    content: "...";
    animation: loading 1s steps(3) infinite;
}

.loading-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    margin: 30px auto 0;
}

.loading-animation .loading-text {
    font-size: 18px;
    color: #666;
    text-align: center;
}