.header-link-area{
    background-color: #f5f5f5;
    text-align: center;
}
.header-link-block{
    width: 1200px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
}
.header-link-list {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    color: #555555;
    padding: 0 25px;
    font-weight: bold;
    position: relative;
}
.header-link-list a {
    transition: all .5s ease;
}
.header-link-list a:hover {
    color: #e71f19;
}
.header-link-list:after {
    content: '|';
    font-size: 14px;
    color: #d1d1d1;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0;
    right: -1px;
}
.header-link-list:last-child::after{
    display: none;
}
.borrow-page-tag-box{
    margin-top: 20px;
}
.borrow-page-list-sub-item{
    border: 1px solid #999;
    max-width: 100%;
    padding: 5px 10px;
    margin: 5px;
    position: relative;
    transition: all .3s linear;
    display: inline-block;
}
.borrow-page-list-sub-item span {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 18px;
}
.borrow-page-list-sub-item:after {
    content: '';
    display: block;
    background-color: #e71f19;
    width: 0%;
    height: 100%;
    transition: all .3s linear;
    position: absolute;
    top: 0;
    left: 0;
}
.borrow-page-list-sub-item:hover:after, .borrow-page-list-sub-item.active:after {
    background-color: #e71f19;
    width: 100%;
}
.borrow-page-list-sub-item:hover, .borrow-page-list-sub-item.active {
    border: 1px solid #e71f19;
    color: #fff;
}
.borrow-page-tag-area{
    width: 1200px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
@media only screen and (max-width: 1000px){
    .header-link-block {
        padding-top: 40px;
        padding-bottom: 20px;
    }
}
@media only screen and (max-width: 550px){
    .header-link-list{
        width: calc( 100% / 2 - 100px );
        max-width: 100%;
    }
    .header-link-list:nth-child(even):after{
        display: none;
    }
    .header-link-list{
        font-size: 16px;
    }
}
@media only screen and (max-width: 360px){
    .header-link-list{
        width: calc( 100% / 2 - 80px );
        max-width: 100%;
    }
}