/* 基本样式 */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
.gradient-background {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Header 样式 */
header {
    padding: 20px 0;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: white;
}

.hero {
    text-align: center;
    padding: 50px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .link {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
	text-decoration: none;
}


/* 功能区样式 */
#features,#features1 {
    padding: 50px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    padding: 0 20px;
}

.feature {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.feature img {
    width: 320px;
    height: 600px;
    margin-bottom: 10px;
}

/* 用户评价样式 */
#testimonials {
    background-color: #f8f8f8;
    padding: 50px 0;
    text-align: center;
}

.testimonial {
    margin-bottom: 20px;
}

/* 价格区样式 */
#pricing {
    padding: 50px 0;
    text-align: center;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    padding: 0 20px;
}

.price-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* 下载区样式 */
#download {
    background-color: #f0f0f0;
    padding: 50px 0;
    text-align: center;
}

.download-buttons img {
    width: 150px;
    height: auto;
    margin: 0 10px;
}

/* Footer 样式 */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
}
/* Logo 样式 */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-img {
    width: 32px;  /* 根据实际logo大小调整 */
    height: 32px;
    margin-right: 10px;
}
/* Hero 区域样式 */
.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-logo-img {
    width: 64px;  /* 更大的 logo 尺寸 */
    height: 64px;
    margin-right: 20px;
}

.hero h1 {
    font-size: 48px;
    margin: 0; /* 移除默认边距 */
}
.feature {
    padding: 20px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature:hover::before {
    background: rgba(255, 255, 255, 0.95);
}

.feature img {
    width: 320px;
    height: 600px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature:hover img {
    transform: scale(1.1);
}

.feature h3 {
    color: #333;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.feature:hover h3 {
    color: #007bff;
}

/* 修改整个页面背景 */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
}

/* 功能区样式 */
#features {
    padding: 50px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.7); /* 添加半透明白色背景 */
}

/* 用户评价区域样式 */
#testimonials {
    background: rgba(248, 248, 248, 0.7); /* 修改为半透明背景 */
    padding: 50px 0;
    text-align: center;
}

/* 用户评价卡片样式 */
.testimonial,.feature1 {
    background: rgba(255, 255, 255, 0.9); /* 改为灰色半透明 */
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(245, 245, 245, 0.9);
}

.testimonial p:first-child {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.testimonial p:last-child {
    font-weight: bold;
    color: #666;
}