* {
    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: #f9f9f9;
    width: 100%;
	display:block;
    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
}

.copyright {
    background-color: #fff;
    padding: 20px 15px 30px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0
}

.copyright span {
    font-size: 12px;
    color: #999;
    line-height: 22px
}

.copyright span img {
    vertical-align: middle;
    margin-right: 3px
}

.copyright span a {
    color: #f99d00
}

#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
}


#backToTop:hover {
  background-color: #8B8989;
}

#backToTop {
  position: fixed;
  bottom: 60px;
  right: 15px;
  background-color: #8B8682;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1002;
  font-size: 18px;
  display: none;
}