body {
    background-color: white;
}


/* 卡片布局-3样式 */
.new-container-3 {
    background-color: white;
    margin: 0 10%;
    padding: 50px 0px 70px 0px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.grid-item-3 {
	background: linear-gradient(to right, #f0f3ff, #f8faff);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
	z-index: 1;
}


.card-bg-3 {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -48px;
    height: 220px;
    background-size: contain;
    opacity: 0.4;
    margin: 0;
    z-index: -6;
}

.en-title-3 {
    display: block;
    font-size: 14px;
    color: #2A83FC;
    margin-bottom: 5px;
    font-weight: 600;
}

.cn-title-3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 18px;
}

.card-desc-3 {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.join-btn-3 {
    display: inline-block;
    padding: 8px 15px;
    background: #2A83FC;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.join-btn-3:hover {
    background: #1a6fd8;
    transform: translateY(-2px);
}

/* 移动端适配 */
@media (max-width: 768px) {
	.new-container-3 {
    background-color: white;
    margin: 0 5%;
    padding: 50px 0px 70px 0px;
}
	
    .card-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-item-3::after {
        width: 200px;
        height: 150px;
    }
}

/* 新增banner样式 -6 */
.banner-container-6 {
    position: relative;
    width: 100%;
    /*margin-bottom: 30px;*/
	padding: 70px 0px 0px 0px;
}
.banner-img-6 {
    width: 100%;
    height: auto;
    display: block;
}
.banner-text-6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    text-align: center;
    width: 100%;
}
.banner-title-cn-6 {
    color: white;
    font-size: 35px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.banner-title-en-6 {
    color: white;
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
/* 微信图标悬停效果 */
.wx-hover-container {
    position: relative;
    display: inline-block;
}

.wx-qrcode {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.wx-hover-container:hover .wx-qrcode {
    opacity: 1;
    visibility: visible;
}

.wx-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 移动端适配 */
@media (max-width: 768px) {
	.banner-title-cn-6 {
    color: white;
    font-size: 25px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

    .banner-title-en-6 {
    color: white;
    font-size: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
	
    .banner-text-6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
    width: 100%;
}

}