.row{
	/* display: flex; */
	/* align-items: center; */
	/* align-self: center; */
	/* justify-content: space-between; */
	height: 500px;
	/* border-top: 1px solid #999999; */
	border-bottom: 1px solid silver;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	/* background: yellowgreen; */
	
}
.picR{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	width: 80%;
	/* overflow: inherit; */
}
.picL{
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	width: 80%;
	/* overflow: inherit; */
}
.bp{
	object-fit: cover; /* 使img元素自适应div大小，同时保持其纵横比 */
	width: 500px;
	height: 500px;
}
.midbp{
	object-fit: contain; /* 使img元素自适应div大小，同时保持其纵横比 */
	width: 100%;
	height: 100%;
	/* background-color: aqua; */
}
.banner1{
	background-color: white;
	text-align: left;
	font-size: 1.25rem;
	font-family: var(--english-font-family);
	padding: 100px 80px;
	/* background-color: pink; */
	width: calc(100% - 400px);
	/* height: 400px; */
}
.banner2{
	display: flex;
	flex-direction: row;
	justify-content: left;
	width: 100%;
	height: 600px;
	background-color: #30366a;
	margin: auto;
}
.bannerfit{
	width: 100%;
	height: 100%;
	object-fit: cover; /* 使img元素自适应div大小，同时保持其纵横比 */ 
	background-color: #30366a;
}
.banTip{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 3rem;
	margin: auto;
	/* padding: 20px; */
	text-align: center;
	/* border: 1px solid yellow; */
}
.banPic{
	display: flex;
	flex-direction: row;
	justify-content: left;
	width: 100%;
	height: 100%;
}
.banner_icon{
	padding: 40px;
	font-size: 20px;
	left: 20px;
	margin: 0px 20px;
	text-align: left;
}
.banner_title{
	font-size: 48px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-weight: bold;
	text-align: center;
}
.banner_exp{
	font-size: 20px;
	text-align: center;
}
.gdt{
	display: flex;
	flex-direction: row;
	height: 200px;
	overflow: hidden;
	border: 1px solid yellow;
}
.itext{
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 24px;
	text-align: left;
	
}
.title1{
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	font-size: 1.875rem;
	/* font-weight: bold; */
	text-align: center;
}

/* 博客展示区块样式 */
.blog-showcase-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-showcase-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.blog-showcase-title {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-family: var(--chinese-font-family);
    font-weight: 600;
}

.blog-showcase-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
    font-family: var(--chinese-font-family);
}

.blog-showcase-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: var(--chinese-font-family);
}

.blog-showcase-link:hover {
    color: #5a67d8;
    transform: translateX(5px);
}

.blog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.blog-showcase-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%; /* 确保卡片占满Grid单元格 */
    max-width: 100%; /* 防止宽度溢出 */
}

.blog-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-showcase-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px); /* 减去图片高度 */
}

.blog-card-title {
    margin: 15px 0 10px 0;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    min-height: 2.8em; /* 标题区域最小高度 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 标题最多显示2行 */
    -webkit-box-orient: vertical;
    line-clamp: 2; /* 标准属性 - 标题最多显示2行 */
    overflow: hidden;
}

.blog-card-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1; /* 摘要区域占据剩余空间 */
    overflow: hidden; /* 隐藏溢出内容 */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制显示3行 */
    -webkit-box-orient: vertical;
    line-clamp: 3; /* 标准属性 - 限制显示3行 */
    max-height: 4.8em; /* 3行 * 1.6行高 */
}

.blog-card-category {
    display: inline-block;
    background: #e6fffa;
    color: #234e52;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-card-title {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: var(--chinese-font-family);
}

.blog-card-excerpt {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-family: var(--chinese-font-family);
}

.blog-card-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: var(--chinese-font-family);
}

.blog-card-link:hover {
    color: #5a67d8;
}

/* 响应式设计 */
@media (max-width: 1080px) {
    .row {
        width: 95%;
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }
    
    .blog-showcase-container {
        padding: 30px 15px;
    }
    
    .blog-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .picR, .picL {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
    
    .bp {
        width: 100%;
        height: 300px;
    }
    
    .banner1 {
        width: 100%;
        padding: 60px 20px;
    }
    
    .banner2 {
        height: 400px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .row {
        width: 100%;
        padding: 0 10px;
        height: auto;
        min-height: 300px;
    }
    
    .blog-showcase-container {
        margin: 20px auto;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .blog-showcase-header {
        width: 100%;
        padding: 0 15px;
        text-align: center;
    }
    
    .blog-showcase-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .blog-showcase-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .blog-showcase-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-card-content {
        padding: 15px;
    }
    
    .picR, .picL {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
    
    .bp {
        width: 100%;
        height: 250px;
    }
    
    .banner1 {
        padding: 40px 15px;
        font-size: 1rem;
    }
    
    .banner2 {
        height: 300px;
    }
    
    .banTip {
        font-size: 2rem;
    }
    
    .banner_title {
        font-size: 32px;
    }
    
    .banner_exp {
        font-size: 16px;
    }
    
    .itext {
        font-size: 18px;
    }
    
    .title1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .row {
        padding: 0 5px;
        min-height: 250px;
    }
    
    .blog-showcase-container {
        padding: 0 5px;
        max-width: 100%;
    }
    
    .blog-showcase-header {
        width: 100%;
        padding: 0 10px;
        text-align: center;
    }
    
    .blog-showcase-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .blog-showcase-subtitle {
        font-size: 0.8rem;
        max-width: 100%;
        padding: 0 5px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .bp {
        height: 200px;
    }
    
    .banner1 {
        padding: 30px 10px;
        font-size: 0.9rem;
    }
    
    .banner2 {
        height: 250px;
    }
    
    .banTip {
        font-size: 1.5rem;
    }
    
    .banner_title {
        font-size: 24px;
    }
    
    .banner_exp {
        font-size: 14px;
    }
    
    .itext {
        font-size: 16px;
    }
    
    .title1 {
        font-size: 1.25rem;
    }
}


