* {
    margin: 0;
    padding: 0;
}
/* 自定义字体 */
@font-face {
    font-family: FZLTHJW;
    src: url("./family/FZLTHJW.TTF"),url("./family/FZLTHJW.eot") format('embedded-opentype');
  }
  
body, html {
    width: 100%;
    height: auto;
    position: relative;
    overflow-x: hidden;
    font-family: "FZLTHJW", "Microsoft YaHei" !important;
    font-size: 0;
    -moz-user-select: none;
    /*火狐*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -ms-user-select: none;
    /*IE10*/
    -khtml-user-select: none;
    /*早期浏览器*/
    user-select: none;
}

ul, li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.Container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

/* header */
.Header {
    background: #F1F8FF;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
}
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    height: 40px;
}
.header-nav {
    padding: 24px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
}
.header-nav-item {
    margin-right: 45px;
    color: #133044;
    transition: all .4S ease;
}
.header-nav-item:last-child {
    margin-right: 0;
}
.header-nav-item.header-nav-item-active {
    font-weight: bold;
    color: #E3574B;
}
.header-select {
    font-size: 16px;
    font-weight: 400;
    color: #132F43;
    line-height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}
.header-select:hover .header-select-option{
    display: flex;
}
.header-select img {
    display: inline-block;
    vertical-align: middle;
}
.header-select-icon {
    width: 18px;
    height: 18px;
}
.header-select-select {
    width: 13px;
    height: 8px;
}
.header-select-text {
    display: inline-block;
    margin: 0 10px;
}
.header-select-option {
    position: absolute;
    top: 40px;
    left: 0;
    background: #F1F8FF;
    line-height: 28px;
    font-size: 14px;
    text-align: center;
    flex-direction: column;
    display: none;
}
.header-select-option a {
    width: 115px;
}
.header-select-option a:hover {
    text-decoration: underline;
}


/* 敬请期待 */
.message-alert {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    font-size: 0;
}
.alert-bg {
    width: 500px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.alert-bg img {
    width: 100%;
}
.alert-bg p {
    width: 100%;
    text-align: center;
    font-size: 22px;
    letter-spacing: 1px;
    position: absolute;
    top: 59%;
}
.alert-bg div {
    width: 100%;
    text-align: center;
    font-size: 20px;
    letter-spacing: 1px;
    position: absolute;
    top: 84%;
    color: #FFFEFE;
    background: linear-gradient(0deg, #BE7EF1 0%, #5B60F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}
/* 敬请期待end */

/* 文本弹窗 */
.doc-pop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.doc-box {
    position: relative;
    width: 978px;
    height: auto;
    max-height: 600px;
    overflow-y: auto;
    top: 50%;
    left: 50%;
    padding: 48px;
    font-size: 16px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
}
.doc-box p {
    margin-bottom: 15px;
    line-height: 1.8em;
}
.clear-btn {
    margin-top: 30px;
    margin-left: 50%;
    padding: 20px 30px;
    font-size: 24px;
    line-height: normal;
    transform: translateX(-50%);
    background: #E3574B;
    color: #fff;
    text-align: center;
    cursor: pointer;
}


@media screen and (min-width:1200px) {
    .header-m {
        display: none;
    }
}

@media screen and (max-width:1199px) {
    .Container {
        width: 100%;
    }
    .header {
        display: none;
    }
    .header-m {
        position: relative;
        height: .4rem;
        padding: .24rem .3rem;
        display: flex;
        justify-content: space-between;
    }
    .header-m-logo {
        height: 100%;
    }
    .header-m-menu {
        height: 100%;
    }
    .header-m-option {
        position: absolute;
        right: 0;
        top: .84rem;
        background: #F1F8FF;
        display: none;
    }
    .header-m-option.m-option-show {
        display: flex;
        flex-direction: column;
    }
    .header-m-option .item {
        padding: .2rem .35rem;
        font-size: .24rem;
        text-align: left;
    }

    /* 敬请期待 */
    .alert-bg {
        width: 100%;
    }
    .alert-bg p {
        font-size: .4rem;
    }
    .alert-bg div {
        font-size: .36rem;
    }
    
    /* 文本弹窗 */
    .doc-box {
        width: auto;
        max-height: 100%;
        padding: 0.3rem;
        font-size: 0.22rem;
    }
    .clear-btn {
        padding: .2rem;
        font-size: .24rem;
    }
}