.card-background {
    background-image: url('../images/imagesbackground-oranges.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}
 
.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* 卡片间的距离 */
    width: 80%; /* 根据需要调整宽度 */
    max-width: 800px; /* 最大宽度 */
}

.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease; /* 动态效果 */
}

.card:hover {
    transform: translateY(-10px); /* 悬停时的动态效果 */
}

.card-content {
    flex: 2;
    padding-right: 20px;
}

.card-title {
    font-size: 24px;
    margin: 0 0 10px;
}

.card-description {
    font-size: 16px;
    color: #555;
}

.card-image {
    flex: 1;
    max-width: 300px; /* 根据需要调整图片宽度 */
}

.card-image img {
    width: 100%;
    border-radius: 10px;
}