@charset 'utf-8';

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {
    line-height: 1;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: #1e1e1e;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #1e1e1e;
}

a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    margin: 0;

    list-style-type: none;
}

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

    margin: 0;
    line-height: 1;
}

p {
    word-wrap: break-word;
    word-break: normal;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

body,
button,
input,
select,
textarea {
    font-family: 'Arial', '微软雅黑';
    font-size: 14px;
    line-height: 1;
    margin: 0;
    color: #1e1e1e;
    border: 0;
    outline: none;
    background: none;
}

input,
textarea {
    -webkit-appearance: none;
}

a:active,
button::-moz-focus-inner,
input[type='reset']::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner,
select::-moz-focus-inner,
input[type='file']>input[type='button']::-moz-focus-inner {
    border: 0;
    outline: 0;
}

a,
button {
    cursor: pointer;
}

label {
    font-weight: normal;

    margin-bottom: 0;
}

img {
    max-width: 100%;
    object-fit: contain;
    vertical-align: middle;
}

body {
    max-width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

a {
    display: inline-block;
}

/* plaeceholder样式改变 */
.input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #666;
}

.input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #666;
}

.input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #666;
}

.input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #666;
}

@font-face {
    font-family: 'PangMenZhengDao';
    src: url('./fonts/PangMenZhengDao.ttf');
}

.hides {
    display: block !important;
    visibility: visible;
}

.shows {
    display: none !important;
    visibility: hidden;
}

@media (min-width:768px) {
    .hides {
        display: none !important;
        visibility: hidden;
    }

    .shows {
        display: block !important;
        visibility: visible;
    }
}



.mc_cont100 {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (min-width: 992px) {
    .mc_cont100 {
        width: 93.705%;
    }
}

@media screen and (min-width: 1680px) {
    .mc_cont100 {
        padding: 0 100px;
    }
}

.mc_cont1400 {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 20px;
}

@media (min-width:992px) {
    .mc_cont1400 {
        padding: 0;
        width: 85.652%;
        max-width: 1400px;
    }
}

@media (min-width:1680px) {
    .mc_cont1400 {
        width: 1400px;
    }
}

.mt100 {
    margin-top: 40px;
}

.pt150 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt100 {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .pt150 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .mt100 {
        margin-top: 60px;
    }

    .pt100 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media screen and (min-width: 992px) {
    .pt150 {
        padding-top: calc(80px + 6.48vh);
        padding-bottom: calc(80px + 6.48vh);
    }

    .mt100 {
        margin-top: calc(60px + 3.7vh);
    }

    .pt100 {
        padding-top: calc(60px + 3.7vh);
        padding-bottom: calc(60px + 3.7vh);
    }
}

.font40 {
    font-size: 24px;
}

.font20 {
    font-size: 16px;
}

.font24 {
    font-size: 18px;
}

@media screen and (min-width: 922px) {
    .font40 {
        font-size: 28px;
    }

    .font20 {
        font-size: 18px;
    }

    .font24 {
        font-size: 20px;
    }
}

@media screen and (min-width: 1440px) {
    .font40 {
        font-size: 30px;
    }

    .font20 {
        font-size: 20px;
    }

    .font24 {
        font-size: 24px;
    }
}

@media screen and (min-width: 1680px) {
    .font40 {
        font-size: 36px;
    }
}

@media screen and (min-width: 1920px) {
    .font40 {
        font-size: 40px;
    }
}


.btn_hover::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    transition: all .3s ease;
    background: #0071e3;
    z-index: 1;
}
.btn_hover:hover::after{
    left: 0;
}
.btn_hover span{
    position: relative;
    z-index: 2;
}