#bloc {
    min-height: calc(100vh - 421px);
    margin-bottom: 30px;
}

.search1 {
    width: 1200px;
    margin: 0 auto;
    margin-top: 200px;
}

.f_18 {
    height: 56px;
    line-height: 56px;
    border: 1px solid #fefefe;
}

.f_18 input{
    height: 100%;
    width: 95%;
    border: none;
    vertical-align: top;
    padding: 0 15px;
    font-size: 18px;
    background-color: transparent;
}
.f_18 input:-moz-placeholder {
    font-size: 18px;
}

.f_18 input::-webkit-input-placeholder {
    font-size: 18px;
}
.f_18 input:-ms-input-placeholder {
    font-size: 18px;
}

.f_18 button {
    width: 56px;
    height: 44px;
    margin: 6px 0;
    background-color: #fff;
    border: none;
    border-left: 1px solid #eee;
    cursor: pointer;
}

.listp {
    padding: 60px 0;
    display: flex;
    flex-wrap: wrap;
    width: 1370px;
    margin: 0 auto;
    max-width: 92%;
}

.listp a.item {
    justify-content: space-between;
    align-items: center;
    width: calc(33.3333% - 20px);
    margin-bottom: 40px;
    margin-right: 30px;
    transition: all .3s
}

.listp a.item:nth-child(3n) {
    margin-right: 0;
}

.listp a.item .word {
    width: 100%;
    margin-top: 30px
}

.listp a.item .word h3 {
    color: #333333;
    font-size: 26px;
    margin-bottom: 25px;
    font-family: "gotm";
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.listp a.item .word .ms {
    color: #666666;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
} 

.listp a.item .img {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    margin: 0 auto;
    background-color: #fff;
    padding: 0 25px;
    border-radius: 6px;
}

.listp a.item .img img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    transition: all .3s;
}

.listp a.item .img .color {
    display: flex;
    margin: 20px 0;
    width: 100%;
    justify-content: center;
}

.listp a.item .img .color span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 7.5px;
    position: relative;
    -webkit-box-shadow: inset 0 1px 1px 0 rgb(0 0 0 / 20%);
    box-shadow: inset 0 1px 1px 0 rgb(0 0 0 / 20%);
}

.listp a.item .img .color span::before {
    content: '';
    display: block;
    position: absolute;
    top: -9px;
    right: -9px;
    left: -9px;
    bottom: -9px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: opacity .15s linear, -webkit-transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity .15s linear, -webkit-transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .15s linear;
    transition: transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .15s linear, -webkit-transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.listp a.item .img .color span:hover::before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.listp a.item:hover .word h3,
.listp a.item:hover .word .ms {
    color: #DB0032;
}

.listp a.item:hover .word .btn {
    background: url(../image/part3_btn.png) no-repeat center;
    color: #fff;
    background-size: 100% 100%;
}

.listp a.item:hover .img img {
    transform: scale(1.3);
}

.no-data {
    margin-top: 40px;
    flex: 1;
    text-align: center;
}

.no-data p {
    font-size: 18px;
}