html {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}
.section-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.section-1-content {
    display: flex;
    width: 96%;
    margin-left: 1%;
    margin-right: 1%;
    gap: 10px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.section-1-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.section-1-text {
    flex: 1;
    text-align: left;
}

.section-1-text h2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.section-1-text p {
    font-size: 14px;
    line-height: 2;
}

.section-2 {
    margin-top: 50px;
}

.section-2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-2-text {
    flex: 1;
    padding: 10px;
    text-align: left;
    order: 2;
}

.section-2-text h2 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-2-text p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.section-2-image {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.studio-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.studio-image:hover {
    transform: scale(1.02);
}

.section-3 {
    display: flex;
    flex-direction: column; /* 改为纵向排列 */
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    gap: 10px; /* 添加内容块之间的间距 */
}

.section-3-content {
    display: flex;
    width: 96%;
    margin-left: 1%;
    margin-right: 1%;
    gap: 10px;
    box-sizing: border-box;
    align-items: center; /* 上下居中对齐 */
}

.section-3-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 特性标签容器 */
.section-3-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
}

.fido-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.fido-image:hover {
    transform: scale(1.02);
}

.section-3-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap:10px;
    text-align: left;
    margin-top: 30px;
}

.feature-tag:hover {
    transform: translateY(-5px);
}

.feature-tag {
    font-size: 14px;
    padding: 10px 25px;
    margin: 0;
    background-image: url('../../img/hiro_text_bg.png');
    background-size: cover;
    color: #fff;
    font-weight: 700;
    flex: 1;
    border-radius: 4px;
    min-height: 60px; /* 确保最小高度以完整显示背景 */
    display: flex;
    align-items: center; 
}

/* h3 前面添加蓝色圆点 */
.section-3-features h3 {
    position: relative;
    padding-left: 20px;
    color: white;
    font-size: 18px;
    margin: 0;
}

.section-3-features h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #1e2460;
    border-radius: 50%;
}

/* 段落样式 */
.section-3-features p {
    font-size: 14px;
    line-height: 2;
    opacity: 0.9;
    margin: 5px 0 0 20px;
}



.section-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.section-6-content {
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}


.spec-table {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 30px;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
    font-size:14px;
}

.pitch-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.spec-table th,
.spec-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.spec-table th {
    background-color: rgba(0, 0, 0, 0.8);
    color: #0f52ba;
    font-weight: 600;
}

.spec-table tr:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.spec-table tbody tr:nth-child(odd) {
    background-color: #000; /* 更深的灰色 */
}

.spec-table tbody tr:nth-child(even) {
    background-color: #2d2d2d; /* 稍浅的灰色 */
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1e2460; /* 蓝色背景 */
    color: white;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #1e2460;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    cursor: pointer;
}

.download-btn:hover {
    background-color: #0056b3; /* 深蓝色背景 */
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.btn-icon {
    font-size: 14px;
    display: none;
}