/* CSS Document */
.outerWrap {
    overflow: hidden;
}

.mainArea {
    padding-top: 60px;
    padding-bottom: 0;
}
@media (max-width: 1180px) {
    .mainArea {
        padding-top: 20px;
    }
}

.contentBox .leftBox {
    padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
    .contentBox .leftBox {
        padding: 0;
    }
}
.contentBox .rightBox {
    padding: 0;
}

.shareBox {
    float: right;
}

.anchorOutBox {
    position: relative;
    width: 100%;
    max-width: 1430px;
    margin: 0 auto;
}

.anchorBox {
    position: absolute;
    bottom: 100%;
    left: 0;
    padding: 0 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 1;
}
@media (max-width: 1180px) {
    .anchorBox {
        padding-top: 30px;
        position: relative;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
.anchorBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 3px;
    background-color: #fff;
}
@media (max-width: 1180px) {
    .anchorBox::before {
        background-color: #191919;
        top: auto;
        bottom: 0;
        display: none;
    }
}
.anchorBox a {
    display: block;
    padding: 30px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
@media (max-width: 1180px) {
    .anchorBox a {
        padding: 8px 10px;
        font-size: 14px;
        color: #191919;
        border: 1px solid #191919;
        margin: 2px;
    }
}

.anchorSideBox {
    position: fixed;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 1180px) {
    .anchorSideBox {
        display: none;
    }
}
.anchorSideBox.show {
    pointer-events: auto;
    opacity: 1;
}
.anchorSideBox .anchor {
    position: relative;
    text-align: right;
}
.anchorSideBox a {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 16px;
    color: #191919;
}
.anchorSideBox a:hover::before, .anchorSideBox a.current::before {
    background-color: #191919;
}
.anchorSideBox a:hover .anchorTitle, .anchorSideBox a.current .anchorTitle {
    right: 100%;
    opacity: 1;
}
.anchorSideBox a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: rgba(25, 25, 25, 0.4);
    border-radius: 50%;
}
.anchorSideBox .anchorTitle {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}