@charset "UTF-8";

.anchor-box{
    position: fixed;
    right: calc(50% - 730px);
    bottom: 60px;
    z-index: 99;
}
.anchor-box{
    width: 100px;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.anchor-item{
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
.anchor-item>a{
    display: block;
    width: 100%;
    padding: 10px 5px;
    text-align: center;
    color: #444;
    text-decoration: none;
}
.anchor-item>a:hover{
    color: #0245B5;
}
.anchor-item:nth-of-type(1){
    background-color: #0245B5;
}
.anchor-item:nth-of-type(1)>a{
    color: #fff;
}
.anchor-item:nth-of-type(1)>a:hover{
    color: #fff;
}


@media (max-width:1490px){
    .anchor-box{
        right: calc(50% - 600px);
    }
}
@media (max-width:1200px){
    .anchor-box{
        right: 5px;
    }
}
@media (max-width:767px){
    .anchor-box{
        display: none;
    }
}