.surContent{
    padding: 32px 0;
    box-sizing: border-box;
    background-color: #F2F2F2;
   padding-bottom: 0;
    padding-top: 64px;
}
.surContent .surList{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
}
.surList .surItem{
    height: 260px;
    opacity: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    cursor:pointer;
    position: relative;
}
.surBorder{
    width: 177px;
    height: 177px;
    background: url("../img/surBorder.png");
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.surBack{
    width: 120px;
    height: 120px;
    background-color: rgba(235, 220, 174, 1);
    border-radius: 100%;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index:2;
}
.surItem:hover .surBack{
    transform: scale(4);
}
.surText{
    position: absolute;
    font-size: 56px;
    font-weight: 700;
    color: rgba(145, 130, 86, 1);
    z-index:5;
}
.two-character-surname{
    font-size: 40px;
}
.surBackImg{
    width: 100%;
    height: 174px;
    position: absolute;
    left: 0;
    top: 191px;
}
.surTit{
    margin-top: 4px;
    width: 100%;
    text-align: center;
    font-size: var(--news-title-font-size);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 48px;
    color: rgba(51, 51, 51, 1);
}
.bgText{
    width: 195px;
    height: 193px;
    position: absolute;
    left: 0;
    bottom: 20px;
    font-size: 170px;
    color: rgba(145, 130, 86, 1);
    opacity: 0;
    z-index:3;
    transition: opacity 0.3s ease-in-out;
}
.surItem:hover .bgText{
    opacity: 0.05;
}
.more{
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    z-index:4;
    width: 128px;
    height: 43px;
    border-radius: 1448px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--conten-font-size);
    font-weight: 400;
    color: rgba(51, 51, 51, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.surItem:hover .more{
    opacity: 1;
}

/*! 1440 ~ 1680 */
@media all and (max-width: 1680px) {
    .surList .surItem{
        height: 250px;
    }
    .surBorder{
        width: 160px;
        height: 160px;
    }
    .surBack{
        width: 112px;
        height: 112px;
    }
    .surText{
        position: absolute;
        font-size: 50px;
    }
    .two-character-surname{
        font-size: 33px;
    }
    .surBackImg{
        height: 170px;
        top: 180px;
    }
    .bgText{
        font-size: 160px;
        width: 190px;
        height: 190px;
    }
    .more{
        position: absolute;
        bottom: 42px;
        width: 120px;
        height: 40px;
    }
}

/*! 1200 ~ 1440 */
@media all and (max-width: 1440px) {
    .surList .surItem{
        height: 230px;
    }
    .surBorder{
        width: 150px;
        height: 150px;
    }
    .surBack{
        width: 110px;
        height: 110px;
    }
    .surText{
        position: absolute;
        font-size: 45px;
    }
    .two-character-surname{
        font-size: 30px;
    }
    .surBackImg{
        height: 165px;
        top: 170px;
    }
    .bgText{
        font-size: 150px;
        width: 180px;
        height: 180px;
    }
    .more{
        position: absolute;
        bottom: 38px;
        width: 115px;
        height: 37px;
    }
}

/*! 992 ~ 1200 */
@media all and (max-width: 1200px) {
    .surList .surItem{
        height: 200px;
    }

    .surContent .surList{
    }
    .surBorder{
        width: 130px;
        height: 130px;
    }
    .surBack{
        width: 90px;
        height: 90px;
    }
    .surText{
        position: absolute;
        font-size: 40px;
    }
    .two-character-surname{
        font-size: 27px;
    }
    .surBackImg{
        height: 160px;
        top: 140px;
    }
    .bgText{
        font-size: 140px;
        width: 150px;
        height: 150px;
    }
    .more{
        position: absolute;
        bottom: 30px;
        width: 110px;
        height: 35px;
    }
}

/*! <=991 手机端 */
@media all and (max-width: 991px) {
    .surContent{
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .surContent .surList{
        grid-template-columns: repeat(3,1fr);
        padding-bottom: 20px;
        gap: 8px;
    }
    .surList .surItem{
        height: 100px;
        border-radius: 4px;
    }
    .surBorder{
        width: 66px;
        height: 66px;
    }
    .surBack{
        width: 44px;
        height: 44px;
        background-color: rgba(235, 220, 174, 1);
        border-radius: 100%;
        transition: transform 0.3s ease-in-out;
        position: relative;
        z-index:2;
    }
    .surItem:hover .surBack{
        transform: scale(1);
    }
    .surText{
        position: absolute;
        font-size: 24px;
    }
    .two-character-surname{
        font-size: 16px;
    }
    .surBackImg{
        display: none;
    }
    .surTit{
        margin-top: 4px;
        width: 100%;
        text-align: center;
        font-size: var(--news-title-font-size);
        font-weight: 500;
        letter-spacing: 0;
        line-height: 22px;
        color: rgba(51, 51, 51, 1);
    }
    .bgText{
        display: none;
    }
    .more {
        display: none;
    }
    .phoneRight{
        padding: 0 12px;
        flex: 1;
    }
}
