@charset "utf-8";

.container {
    width: 1200px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
}

.breadcrumb {
    width: 100%;
    height: 45px;
    background-color: #f4f4f4;
    margin-top: -5px;
}

.breadcrumb .breadcrumb_con {
    width: 1200px;
    height: 100%;
    line-height: 45px;
    margin: 0 auto;
}

.breadcrumb .breadcrumb_con img {
    position: relative;
    top: 3px;
    margin-right: 10px;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.banner img {
    max-width: 100%;
}

.title {
    padding-left: 20px;
    padding-right: 10px;
    align-items: flex-end;
}

.title h2 {
    max-width: 76%;
    color: #115db2;
}

.title p {
    font-weight: 600;
}

.line {
    margin-top: 10px;
    border-top: 3px solid #115db2;
    height: 6px;
    border-bottom: 1px solid #115db2;
}

.xzjc-ul {
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.xzjc-ul li {
    width: 46.7%;
    height: 118px;
    margin-bottom: 30px;
    position: relative;
}

.xzjc-ul li a {
    width: 100%;
    display: block;
}

.xzjc-ul li a:first-child {
    width: 220px;
    height: 48px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    line-height: 42px;
    padding-right: 3%;
    background-color: #115db2;
    border-radius: 10px 0 0 0;
}

.xzjc-ul li .ellipsis {
    width: 99%;
    height: 80px;
    line-height: 80px;
    padding-left: 8%;
    margin-top: -8px;
    background-color: #ffffff;
    border: 1px solid #115db2;
    border-radius: 10px;
}

.xzjc-ul li .ellipsis:hover {
    color: #115db2;
}

.xzjc-ul li h6 {
    position: absolute;
    top: 7px;
    left: 196px;
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 46px solid #fff;
}

@media screen and (max-width: 1200px) {
    .container {
        width: 98%;
        overflow-x: hidden;
    }

    .breadcrumb .breadcrumb_con {
        width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .breadcrumb {
        height: auto;
    }

    .title h2 {
        max-width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .xzjc-ul li {
        width: 100%;
    }
}