/* 产品图片样式 */
.product-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.product-image:hover {
    transform: translateY(-10px);
}

/* Banner区域样式 */
.banner-area {
    padding: 120px 0 90px 0;
}

.banner-area-1 {
    background: url('../img/banner/1.png');
}

/* 特性卡片样式 */
.single-feature-inner {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.single-feature-inner:hover,
.single-feature-inner.active {
    transform: translateY(-5px);
    border: 2px solid #fff;
}

/* 标题样式调整 */
h1 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.banner-inner h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 动画图片样式 */
.animate-img-1,
.animate-img-2 {
    position: absolute;
    z-index: 1;
}

.animate-img-1.top-right {
    right: 5%;
}

.animate-img-1.top-left {
    left: 5%;
}

/* 悬停效果类 */
.hover-float {
    transition: transform 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hover-float:hover {
    transform: translateY(-5px);
}

/* Feature区域样式 */
.feature-area {
    position: relative;
}

/* 赞助版卡片样式 */
.sponsor-pricing {
    border: 2px solid #FF9800;
    box-shadow: 0 5px 30px rgba(255, 152, 0, 0.15);
}

.sponsor-button {
    background-color: #FF9800;
    border-color: #FF9800;
}

/* Logo样式 */
.footer-logo {
    max-width: 50%;
    height: auto;
}

/* 页脚背景 */
.footer-area-1 {
    background: url('../img/bg/1.png');
}

/* 清晰的特性卡片样式 */
.rounded-image {
    border-radius: 20px;
}

.shadow-effect {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 导航栏Logo样式 */
.navbar-logo-text {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* 文本对齐修复 */
.text-lg-left {
    text-align: left;
}