    html,
    body {
        margin: 0;
        padding: 0;
        font-size: 16px;
        font-family: -apple-system-font, Helvetica Neue, sans-serif;
        line-height: 1.6;
    }
    a {
        text-decoration: none;
        color: #000;
    }
    .banner {
        display: block;
        width: 100%;
        border: 0;
        margin: 0;
        padding: 0;
        height: 130px;
    }
    .title {
        padding: 10px 0 10px 0;
    }
    .title span {
        display: block;
        font-size: 16px;
        font-weight: bolder;
        color: #3e3d3d;
        text-indent: 9px;
        border-left: 3px solid #00589c;
        margin-left: 8px;
        line-height: 1em;
    }
    .centent {
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }
    .centent::before {
        content: " ";
        position: absolute;
        left: 0;
        top: 0;
        color: #d9d9d9;
        right: 0;
        height: 1px;
        border-top: 1px solid #d9d9d9;
        transform-origin: 0 0;
        transform: scaleY(.5);
    }
    .centent .link {
        position: relative;
        float: left;
        padding: 20px 10px;
        width: 33.33333333%;
        box-sizing: border-box;
        height: 139px;
    }
    .centent .link::before {
        content: " ";
        position: absolute;
        right: 0;
        bottom: 0;
        color: #d9d9d9;
        top: 0;
        width: 1px;
        border-right: 1px solid #d9d9d9;
        transform-origin: 100% 0;
        transform: scaleX(.5);
    }
    .centent .link::after {
        content: " ";
        position: absolute;
        right: 0;
        bottom: 0;
        color: #d9d9d9;
        left: 0;
        height: 1px;
        border-bottom: 1px solid #d9d9d9;
        transform-origin: 0 100%;
        transform: scaleY(.5);
    }
    .centent .link .icon {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }
    .centent .link .icon img {
        display: block;
        width: 100%;
        height: 100%;
    }
    .centent .link .official {
        margin-top: 5px;
        display: block;
        height: 3em;
        white-space: normal;
        text-overflow: clip;
        font-size: 13px;
        text-align: center;
    }
    .footer {
        height: 60px;
    }
    .footer .footer_ul {
        width: 100%;
        height: 55px;
        background: #fff;
        padding: 0;
        margin: 0;
        position: fixed;
        bottom: 0;
        z-index: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        box-shadow: 0px -1px 1px #ddd;
    }
    .footer .footer_ul a {
        margin: 3px 0;
        width: 50%;
    }
    .footer .footer_ul a img {
        width: 25px;
        height: 25px;
        display: block;
        margin: 2px auto 1px;
    }
    .footer .footer_ul a .gray {
        -webkit-filter: grayscale(100%);
    }
    .footer .footer_ul a p {
        margin: 0;
        text-align: center;
        font-size: 13px;
        color: #3e3d3d;
    }
/* 小人动画 */
.welAnimation{
    width: 200px;
    position: fixed;
    animation:mymove 1s ease-in-out;
    -webkit-animation:mymove 1s ease-in-out; /* Safari and Chrome */
    animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
    z-index: 999;
}
.welAnimation .people{
    width: 130px;
    display: block;
    float: right;
}
#text{
    width: 200px;
    height: 90px;
    display: block;
    background: url(../images/chat.png);
    background-size: 100%;
    position: relative;
    padding: 15px;
    top: 0px;
    left: -28px;
    font-size: 14px;
}
@keyframes mymove
{
    from { 
    bottom: 474px;
    right: 286px;
    }
    to { 
        bottom: 10px;
        right: 30px;
    }
}