.content .left {
    width: 920px;
    margin-top: 30px;
    margin-right: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

a {
    color: inherit;
}

.content .toptitle {
    padding: 18px 40px;
    margin-bottom: 10px;
    border-bottom: solid 1px #b1b0b0;
}

.content .toptitle span {
    color: #1e87f0 !important;
}

.content .items {
    padding: 30px 40px;
}

.light {
    margin: 20px 0;
    font-size: 14px;
    color: #a5a5a5;
}

.content h1 {
    font-size: 28px;
    color: #000;
    font-weight: 500;
}

.content h2 {
    font-size: 14px;
    padding-bottom: 8px;
    color: #000;
    font-weight: bolder;
}

.content p {
    font-size: 16px;
    line-height: 50px;
}

.content .right {
    width: 250px;
    height: 300px;
    margin-top: 30px;
    border: solid 1px #e3e3e3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}






.content .rtitle p {
    font-size: 16px;
    text-align: center;
}

.content .rtitle h3 {
    font-size: 22px;
    text-align: center;
}

.hover:hover {
    background-color: #1e87f0 !important;
    color: #fff !important;
    cursor: pointer;
}

 .images-row {
            display: flex;
            flex-wrap: wrap;
            margin: 20px 0;
            gap: 15px; /* 设置图片之间的间距 */
        }
        .images-row img {
            width: calc(50% - 15px); /* 减去间距 */
            height: auto;
            display: block;
        }
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            .images-row {
                flex-direction: column;
            }
            .images-row img {
                width: 100%;
                margin-bottom: 15px;
            }
        }