* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 1200px;
    overflow: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
.holland-page {
    width: 100%;
    height: auto;
    min-width: 1200px;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 30%, #f5f5f5  100%);
    padding-bottom: 60px;
}

@media screen and (min-width: 1200px) {
    .holland-container {
        width: 1300px;
		margin: 0 auto;
		padding: 50px 20px 0;
    }
}
@media screen and (max-width: 1200px) {
	.holland-container {
		width: 1200px;
		margin: 0 auto;
		padding: 50px 20px 0;
	}
}

/* ===== Hero 区域 ===== */
.holland-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 30px 0 60px;
}

.hero-left {
    flex: 1;
    max-width: 750px;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

.hero-desc-second {
    margin-bottom: 32px;
}

.hero-desc .highlight {
    color: #d02009;
    font-weight: 600;
    background: rgba(255, 107, 8, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #d81e06 0%, #ff4d4f 100%);
	color: #fff;
	box-shadow: 0 4px 16px #ffc1c2;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px #ffc1c2;
}

.btn-outline {
    background: #fff;
    color: #555;
    border: 1.5px solid #e0e0e0;
}

.btn-outline:hover {
    border-color: #ff6b08;
    color: #ff6b08;
    background: rgba(255, 107, 8, 0.03);
}

.btn-icon {
    font-size: 12px;
}

/* ===== 右侧图片区域 ===== */
.hero-right {
    flex-shrink: 0;
}

.hero-image-box {
    position: relative;
    width: 380px;
    height: 360px;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
	padding: 10px;
}

.image-decoration {
    position: absolute;
    border-radius: 16px;
    z-index: 1;
}

.decoration-1 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 107, 8, 0.15) 0%, rgba(255, 143, 58, 0.08) 100%);
    top: -20px;
    right: -20px;
}

.decoration-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 8, 0.1) 0%, rgba(255, 143, 58, 0.05) 100%);
    bottom: -15px;
    left: -15px;
}

/* ===== 信息卡片区域 ===== */
.info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 8, 0.1);
}

.info-icon {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-time {
    background: transparent;
}

.info-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-shield {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.icon-light {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.info-desc {
    font-size: 13.5px;
    color: #777;
    line-height: 1.8;
}
