@charset "utf-8";

.pro_top_title {
    padding-top: 48px;
}

.pro_search {
    padding: 12px 20px;
    width: 462px;
    height: 54px;
    border-radius: 47px;
    background-color: #F3F5F7;
}

.pro_search .s_input {
    float: left;
    width: calc(100% - 50px);
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    background-color: transparent;
}

.pro_search .s_icon {
    float: left;
    width: 50px;
    height: 30px;
    background-color: transparent;
    background-image: url(/template/default/index/4344/images/s_icon.svg);
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.pro_search .s_input::-webkit-input-placeholder {
    color: #999;
    font-size: 16px;
    line-height: 30px;
}

.pro_search .s_input::-moz-placeholder {
    color: #999;
    font-size: 16px;
    line-height: 30px;
}

.pro_search .s_input::-ms-input-placeholder {
    color: #999;
    font-size: 16px;
    line-height: 30px;
}

.pro_list {
    padding-top: 30px;
    overflow: hidden;
}

.pro_list ul {
    margin-left: -12px;
    margin-right: -12px;
}

.pro_list ul li {
    width: 33.33%;
    float: left;
    padding: 12px;
}

.pro_list .border {
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    background: var(--white-color);
    overflow: hidden;
}

.pro_list .title {
    height: 74px;
    background-color: #F3F5F7;
}

.pro_list .border .thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.pro_list .border .thumb::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-image: url(/template/default/index/4344/images/pro_icon_r.svg);
    background-repeat: no-repeat;

    z-index: -1;
}

.pro_list .border .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.pro_list .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 24px 30px;

}

.pro_list .title span {
    flex: 1;
    display: block;
    color: #303030;
    font-size: 20px;
    font-weight: 400;
}

.pro_list .title i {
    display: block;
    width: 28px;
    height: 28px;
    background-image: url(/template/default/index/4344/images/pro_icon_grey.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pro_list a:hover .title span {
    color: var(--main-color);
}

.pro_list a:hover .title i {
    background-image: url(/template/default/index/4344/images/pro_icon_yellow.svg);
}

.pro_list a:hover .thumb i {
    transform: scale(1.05);
}

/* list */
.pro_select {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #DDD;
}

.pro_select .pro_s_list {
    display: flex;
    padding-bottom: 20px;
}

.pro_select .pro_s_list:last-child {
    padding-bottom: 0;
}

.pro_select .title {
    text-align: right;
    width: 80px;
    padding-top: 5px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}
.dis_center.pro_s_list .title {
    padding-top: 0px;
}

.pro_select .s_chebox {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    padding-left: 30px;
}

.radio-container {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 36px;
    display: flex;
    align-items: center;
}

.radio-input {
    display: none;
}

/* 自界说单选按钮样式 */
.radio-label {
    display: inline-block;
    position: relative;
    padding-left: 30px;

    color: var(--dark);
    font-size: 18px;
    font-weight: 400;

    cursor: pointer;
}

.radio-label::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background-image: url(/template/default/index/4344/images/select_icon.svg);
    box-sizing: border-box;
}

.radio-input:checked+.radio-label::before {
    background-image: url(/template/default/index/4344/images/select_icon_h.svg);
}

.radio-input:checked+.radio-label {
    color: var(--main-color);
}
.s_chebox #selected-types {
    display: flex;
    align-items: center;
}
.s_chebox .clear-btn {
    display: flex;
padding: 4px 16px;
align-items: center;
    border-radius: 43px;
border: 1px solid #999;
color:#999;
font-size: 16px;
font-weight: 400;
line-height: 1;
cursor: pointer;
}
.s_chebox .p_select {
    display: flex;
    margin-right: 24px;
padding: 4px 10px;
align-items: center;
    border-radius: 52px;
border: 1px solid var(--main-color);
color: var(--main-color);
text-align: center;
font-size: 16px;
font-weight: 400;
cursor: pointer;
}

.s_chebox .p_select button {
    background: transparent;
    font-size: 22px;
    margin-left: 4px;
    line-height: 0.8;
    color: var(--main-color);cursor: pointer;
}

@media (max-width:991px) {
    .pro_list .title {
        padding: 24px 16px 24px 20px;
    }

    .pro_list .title span {
        font-size: 18px;
    }
    .dis_center.pro_s_list .title {
        padding-bottom: 10px;
    }
    .s_chebox #selected-types {
        flex-wrap: wrap;
    }
    .s_chebox .p_select {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .s_chebox .clear-btn {
        margin-bottom: 10px;
    }

}

@media (max-width:767px) {
    .pro_top_title {
        flex-wrap: wrap;
    }

    .pro_top_title .page_title {
        width: 100%;
    }

    .pro_search {
        margin-top: 20px;
        max-width: 100%;
    }

    .pro_search .s_icon {
        width: 30px;
        height: 30px;
        float: right;
    }

    .pro_list ul li {
        width: 50%;
    }
    .pro_select .title {
        text-align: left;
    }
    .pro_select .pro_s_list {
        flex-wrap: wrap;
    }
    .pro_select .s_chebox {
        flex: inherit;
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }
    .radio-container {
        padding-right: 15px;
    }

}

@media (max-width:500px) {
    .pro_list ul {
        margin-left: -6px;
        margin-right: -6px;
    }
   
    .pro_list ul li {
        width: 50%;
        padding: 12px 6px;
    }
    .pro_list .title {
        height: auto;
        padding: 14px 10px 14px 10px;
    }
    .pro_list .title span {
        font-size: 16px;

    }
    .pro_list .title i {
        width: 20px;
        height: 20px;
    }
}

/* read more */
.read_more {
    display: flex;
    justify-content: center;
    padding-top: 36px;
    padding-bottom: 60px;
}

.read_more a {
    position: relative;
    padding-top: 34px;
}

.read_more a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-image: url(/template/default/index/4344/images/honor_icon.svg);
    animation: right-swing 1s ease-out alternate infinite;
}

.read_more a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}<!--耗时1758367634.4894秒-->