
.qywh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

.qywh-title {
    color: #0066ff;
    font-size: 21px;
    font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
    margin: 10px 10px 40px 0px;
    text-align: left;
}

.qywh-culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: calc(100% - 0px);
    margin: 0 auto;
}

.qywh-culture-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
}

.qywh-culture-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.qywh-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px 60px;
    background: rgba(0, 0, 0, 0.466);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qywh-culture-title {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.qywh-culture-desc {

    line-height: 1.4;
    opacity: 0.9;
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
    font-size: 1em;
}

/* 移动端适配 - 保持每行两个矩形 */
@media (max-width: 768px) {
    .qywh-title {
        font-size: 18px;
        margin: 0 30px 40px 0px;
    }
    
    .qywh-culture-grid {
        grid-template-columns: repeat(2, 1fr);
        
    }
    
    .qywh-culture-item {
        height: 150px;
    }
    
    .qywh-culture-title {
        font-size: 1.4rem;
    }
    
    .qywh-culture-desc {
        font-size: 0.8rem;
    }
    
   
    .qywh-glass-overlay {
        padding-left: 30px;
    }
}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .qywh-title {
        font-size: 16px;
        margin: 0 30px 8px 0px;
    }
    
    .qywh-culture-item {
        height: 120px;
    }
    
    .qywh-culture-title {
        font-size: 1.5rem;
    }
    
    .qywh-culture-desc {
        font-size: 0.7rem;
    }
    
    .qywh-glass-overlay {
        padding-left: 20px;
    }
}