@charset "utf-8";
.hyjs {
    padding: 60px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hyjsbox>div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hyjs_lh {
    font-size: 30px;
    color: #333;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    font-weight: 700;
}

.hyjs:hover .hyjs_lh {
    color: #2899e1;
}

.hyjs_lp {
    margin-top: 35px;
}

.hyjs_lp p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #777;
}

.hyjs_r {
    padding-left: 50px;
}

.hyjs_rimg {
    overflow: hidden;
}

.hyjs_rimg img {
    width: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.hyjs_rimg:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.xgxp {
    margin-top: 60px;
}

.xgxpbox .xgxpboxitem {
    display: flex;
}

.xgxpboxitem>div {
    width: 50%;
}

.xgxpboxitem_l {
    overflow: hidden;
}

.xgxpboxitem_l img {
    width: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.xgxpboxitem:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.xgxpboxitem_r {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background-color: #f5f5f5;
}

.xgxpboxitem_rtle {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.xgxpboxitem_rcon span {
    color: #777;
    font-weight: 400;
    font-size:14px;
    line-height: 24px;
}

.xgxpboxitem:nth-child(even) .xgxpboxitem_r {
    order: -1;
}

.foot {
    margin-top: 60px;
}

@media screen and (max-width: 1500px) {
    .hyjs_lh {
        font-size: 28px;
    }
    .hyjs_lp {
        margin-top: 30px;
    }
}

@media screen and (max-width: 1400px) {
    .hyjs_lh {
        font-size: 26px;
    }
    .hyjs {
        padding: 50px 0;
    }
    .xgxpboxitem_r {
        padding: 0 30px;
    }
    .xgxp {
        margin-top: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .hyjs_lh {
        font-size: 24px;
    }
    .hyjs_lp {
        margin-top: 22px;
    }
    .xgxpboxitem_rtle {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 992px) {
    .hyjs {
        padding: 45px 0;
    }
    .hyjs_r {
        padding-left: 25px;
    }
    .hyjs_lp p {
        font-size: 12px;
        line-height: 20px;
    }
}

@media screen and (max-width: 768px) {
    .xgxpboxitem_rcon span{  display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2; /* 定义文本的行数 */
        overflow: hidden; /* 隐藏超出部分的内容 */
        text-overflow: ellipsis; /* 添加省略号 */
        line-height: 1.6em; /* 行高，根据需要自行调整 */
        max-height: 3.2em; /* 最大高度为行高的两倍，即两行 */
        word-break: break-word; /* 防止单词在行末被截断 */
        font-size: 12px;
    }
       
    .hyjsbox {
        flex-wrap: wrap;
    }
    .hyjsbox>div {
        width: 100%;
    }
    .hyjs_r {
        padding-left: 0;
        order: -1;
    }
    .hyjs_l {
        margin-top: 20px;
    }
    .hyjs_lh {
        font-size: 20px;
    }
    .hyjs_lp {
        margin-top: 12px;
    }
    .xgxp {
        margin-top: 45px;
    }
    .xgxpboxitem:nth-child(even) .xgxpboxitem_r {
        order: 2;
    }
    .xgxpbox {
        display: flex;
        flex-wrap: wrap;
    }
    .xgxpbox>a {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 15px;
    }
    .xgxpbox>a:nth-child(2n) {
        margin-right: 0;
    }
    .xgxpbox .xgxpboxitem {
        flex-wrap: wrap;
        border: 1px solid #ddd;
    }
    .xgxpboxitem>div {
        width: 100%;
    }
    .xgxpboxitem_r {
        padding: 12px 10px;
    }
    .xgxpboxitem_rtle {
        font-size: 14px;
        margin-bottom: 6px;
        white-space: nowrap;  /* 确保文本在一行内显示 */
        overflow: hidden;     /* 隐藏超出div容器的内容 */
        text-overflow: ellipsis;  /* 显示省略号来代表被截断的文本 */
    }
    .foot {
        margin-top: 45px;
    }
}