.pagebox{
text-align: center;
}

.page a {
    text-decoration: none;
    color: #666;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
font-size: .4rem;
    margin: 0 3px;
    display: block;
    float: left;
    transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page a[rel="next"],
.page a[rel="prev"] {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.page a[rel="next"] .icon,
.page a[rel="prev"] .icon {
    width: 18px;
    height: 18px;
    fill: rgba(102, 102, 102, 0.5);
}

/* 弹窗 */
.popUp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.popUp .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.popUp .popbox {
    width: 25rem;
    height: 12.5rem;
    background: #FFFFFF;
    border-radius: .2rem;
    border: 0px solid #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 1.45rem 1.75rem 1.875rem;
}

.popUp .popbox a {
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #F5F5F5;
    line-height: .6rem;
    width: 9rem;
    height: 1.3rem;
    background: #155F8C;
    box-shadow: 0px .125rem .125rem 0px rgba(51, 51, 51, 0.2);
    border-radius: .1rem;
    display: inline-flex;
    padding: .425rem .6rem;
    line-height: 1;
    position: relative;
}

.popUp .popbox a .img {
    position: absolute;
    right: .6rem;
    top: 50%;
    width: .625rem;
    height: .625rem;
    transform: translateY(-50%);
}

.popUp .popbox a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popUp .popbox #position {
    line-height: 1;
    margin-bottom: .425rem;
}

.popUp .popbox #city {
    color: #155F8C;
    line-height: 1;
    margin-bottom: 1rem;
}

.popUp .popbox .textbox {
    margin-bottom: 1.25rem;
    line-height: .75rem;
    max-height: 5rem;
    overflow:auto;
}

.popUp .popbox .closed {
    width: 1.45rem;
    height: 1.45rem;
    background: #F7F7F7;
    border-radius: 50%;
    position: absolute;
    right: .95rem;
    top: .875rem;
    display: flex;
    align-items: center;
    justify-content: center;
cursor: pointer;
}

.popUp .popbox .closed img{
    transition: all .6s;
    width: .6rem;
    height: .6rem;
    object-fit: cover;
}
.popUp .popbox .closed:hover img {
 transform: rotate(180deg);
}

@media(max-width:996px){
    .popUp{
        width: 100%;
    }
    .popUp .popbox{
        width: 92%;
        height: auto;
        padding: 1rem .5rem;
        top: 55%;
    }
    .popUp .popbox .closed{
        right: .5rem;
    }
    .popUp .popbox .textbox{
        max-height: 7.5rem;
        overflow: auto;
        padding-right: .25rem;
        margin-bottom: 1rem;
    }
    .popUp .popbox .textbox::-webkit-scrollbar{
        width: 4px;
        
    }
    .popUp .popbox .textbox::-webkit-scrollbar-thumb{
        background-color: #ED7C02;
    }
    .popUp .popbox #position{
        font-size: .75rem;
        padding-right: 2rem;
        line-height: 1.5;
        display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    .popUp .popbox #city{
        margin-bottom: .75rem;
    }

}