* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*@font-face {*/
    /*font-family: '方正兰亭大黑简体';*/
    /*src: url('../font/兰亭粗黑简.TTF');*/
/*}*/
/*@font-face {*/
    /*font-family: '方正兰亭中黑简体';*/
    /*src: url('../font/方正兰亭中粗黑_GBK.TTF');*/
/*}*/
/*@font-face {*/
    /*font-family: '方正兰亭黑简体';*/
    /*src: url('../font/方正兰亭黑GB18030.TTF');*/
/*}*/
body {
    display: block;
    width: 100%;
    min-width: 1200px;
    font-size: 14px;
    font-family: "PingFang SC", Helvetica, Arial, "Hiragino Sans GB", "Microsoft Yahei", 微软雅黑, STHeiti, 华文细黑, sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

div {
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}

/* ============= header-box ============= */
.header-box {
    display: block;
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header {
    display: flex;
    min-width: 1200px;
    height: 100%;
    flex-flow: row nowrap;
    
    align-items: center;
    /* margin: 0 auto; */
    padding: 0 20px;
}

.header-logo {
    display: block;
    width: 164px;
    height: 64px;
    cursor: pointer;
}

.header-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.header-list-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-left: 370px;
}

.header-list-box > p, .header-list-box > a{
    display: block;
    font-size: 14px;
    color: #000000;
    line-height: 16px;
    cursor: pointer;
    position: relative;
}

.header-list-box > p:hover,.header-list-box > a:hover {
    color: #006EFF;
}

.header-list-box > p:before,.header-list-box > a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -27px;
}

.header-list-box > p:hover:before ,.header-list-box > a:hover:before{
    background-color: #006EFF;
}

.header-list-box > p + p,.header-list-box > a + a  {
    margin-left: 48px;
}

.header-list-box > p.active ,.header-list-box > a.active{
    color: #006EFF;
}
.header-list-box > p.active:before,.header-list-box > a.active:before {
    background-color: #006EFF;
}
.title-area{
    margin: 0 auto;
    text-align: center;
}
.title-area .title{
    font-size: 48px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #000;
  
    background: url('../img/t-bg.png') no-repeat;
    background-size: 251px 54px;
    background-position-x: 49%;
    background-position-y: 20px;
}

