.content-container {
    background-color: white;
    padding: 80px 200px;
    height: 100%;
}

.inner-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.content-image {
    flex: 1;
    min-width: 0;
}

.content-text {
    flex: 1;
    min-width: 0;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 0px;
	font-size: 20px;
}

.content-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.new-container {
    /*background-image: url('../images/aliexpressbg.png');*/
    background-size: cover;
    background-position: center;
    padding: 30px 200px;
}

.new-inner-container {
    padding: 0px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: white;
    margin: 0 auto 30px;
}

.card-container {
    display: flex;
    gap: 20px;
    /*justify-content: center;*/
    margin-top: 30px;
}

.card {
    /* flex: 1;*/
   /* max-width: 300px;*/
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    background-color: white;
    padding: 15px;
    border-radius: 0 0 0px 0px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.gray-container {
    background-color: #e6e7e8;
    padding: 50px 200px;
}

.wish-container {
   /* background-image: url('../images/wishbg.png');*/
    background-size: cover;
    background-position: center;
    padding: 30px 220px;
}

.wish-inner-container {
    padding: 0;
    border-radius: 8px;
    color: #333;
}

.wish-title {
    text-align: center;
    color: white;
    font-size: 2em;
    margin-bottom: 5px;
    padding-top: 20px;
}

.wish-subtitle {
    text-align: center;
    color: white;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.wish-divider {
    width: 100px;
    height: 2px;
    background: white;
    margin: 0 auto 15px;
}

.wish-gallery {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    justify-content: center;  /* 修改为居中显示 */
    gap: 20px;
}

.wish-item {
    width: calc(20% - 16px);
    text-align: center;
}

.wish-item img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    display: block;
}

.wish-label {
    background: white;
    padding: 10px;
    margin-top: 0;
    border-radius: 0 0 4px 4px;
}

@media (max-width: 768px) {
    .wish-item {
        width: 100%;
        margin-bottom: 20px;
    }
.wish-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px;
}	
}

@media (max-width: 768px) {
    .wish-container {
        padding: 20px 10px;
    }
}

.gray-inner-container {
    padding: 20px;
    border-radius: 8px;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
   /* justify-content: space-between; */
}

.feature-card {
    width: calc(20% - 16px);
    min-width: 150px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    background-color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .feature-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .inner-container {
        flex-direction: column;
    }
    
    .content-container {
        padding: 20px 10px;
    }

    .new-container {
        padding: 20px 10px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
		gap: 0px;
    }

    .card {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .gray-container {
        padding: 30px 10px;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 20px 10px;
    }
	.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: space-between;
}
}