* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: helvetica neue, luxi sans, dejavu sans, segoe ui, hiragino sans gb, microsoft yahei, sans-serif
}

body {
    background-color: #373d9f;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    padding-bottom: 116px
}

a {
    text-decoration: none
}

ul,
li {
    list-style: none
}

/* @font-face {
    font-family: iconfont;
    src: url(../font/iconfont.eot);
    src: url(../font/iconfont.eot?#iefix) format("embedded-opentype"), url(../font/iconfont.woff2) format("woff2"), url(../font/iconfont.woff) format("woff"), url(../font/iconfont.ttf) format("truetype"), url(../font/iconfont.svg#iconfont) format("svg")
} */

.iconfont {
    font-family: iconfont;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon {
    width: 3em;
    height: 3em;
    fill: currentColor;
    overflow: hidden
}

#footer {
    height: 60px;
    background-color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0
}
#footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    height: 100%;
  }
  #footer .container a{
    width: 25%;
    text-align: center;
    line-height: 60px;
    color: #092644;
    font-size: 1em;
    position: relative;
    transition: all .3s;
    font-size: 12px;
  }
  #footer .container a:hover{
    color: #2184E2;
  }
  #footer .container a+a::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    left: 0;
    top: 20px;
    background-color: #ddd;
  }
  @media screen and (max-width:768px){
    #footer .container{
      margin: 0;
      width: 100%;
    }
    #footer .container a{
      font-size: 8px;
    }
    
  }

#shareMask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .2);
    z-index: 4686635;
    display: none
}

#shareMask #sidebar {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(240px);
    padding: 20px 30px;
    max-width: 240px;
    animation: sharedrop .3s linear forwards
}

#shareMask #sidebar ul li {
    padding: 5px 0
}

#shareMask.hide #sidebar {
    animation: sharedrop 1s linear reverse forwards
}

#shareMask .close-sidebar {
    text-align: center;
    margin-bottom: 20px
}

#shareMask .close-sidebar span {
    font-weight: 600;
    font-size: 30px
}

@keyframes sharedrop {
    0% {
        transform: translateX(240px)
    }

    100% {
        transform: translateX(0)
    }
}

#copyLink {
    text-align: center
}

#copyLink .iconfont {
    font-size: 43px;
    color: #5b96fb
}

.copySuccessed {
    display: inline-block;
    width: calc(100% - 40px);
    background: rgba(0, 0, 0, .8);
    color: #fff;
    text-align: center;
    font-size: 14px;
    position: fixed;
    z-index: 99999;
    border-radius: 5px;
    padding: 15px 0;
    bottom: 100px;
    left: 20px;
    transform: translateY(170px)
}

@keyframes copyAnimateIn {
    from {
        transform: translateY(170px)
    }

    to {
        transform: translateY(0px)
    }
}

@keyframes copyAnimateOut {
    from {
        transform: translateY(0px)
    }

    to {
        transform: translateY(170px)
    }
}

.grecaptcha-badge {
    display: none !important
}