/*产品展示*/
.product-show {
    padding: 50px 0;
    background: #fff;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.show-content {
    width: 1200px;
    margin: 0 auto;
}

.show-images {
    display: flex;
    gap: 20px;
}

.show-item {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.show-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.show-item:hover img {
    transform: scale(1.05);
}

.product-nav {
    padding: 50px 0;
    background: white;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.nav-header {
    text-align: center;
    margin-bottom: 40px;
}

.nav-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.nav-header h2 span {
    color: #F59E0B;
}

.nav-header p {
    font-size: 14px;
    color: #999;
    margin: 0 0 20px 0;
}

.nav-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: #ddd;
}

.divider-diamond {
    width: 16px;
    height: 16px;
    background: #F59E0B;
    transform: rotate(45deg);
}

.nav-content {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.nav-left {
    flex: 1;
    padding-right: 40px;
}

.nav-left h3 {
    font-size: 32px;
    font-weight: bold;
    color: #F59E0B;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
}

.nav-left p {
    font-size: 14px;
    color: #999;
    margin: 0 0 20px 0;
}

.nav-line {
    width: 60px;
    height: 2px;
    background: #F59E0B;
    margin-bottom: 30px;
}

.nav-list {
    display: flex;
    gap: 60px;
    padding: 0;
    margin: 0 0 30px 0;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-column a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-column a.active {
    color: #F59E0B;
    font-weight: bold;
}

.nav-btn {
    display: inline-block;
    background: #F59E0B;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-right {
    flex: 1;
}

.nav-right img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 8px;
}

.product-table {
    padding: 40px 0;
    background: #fff8f0;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 0 auto 20px;
    background: #F59E0B;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.header-left {
    font-size: 18px;
}

.header-right {
    font-size: 14px;
    font-weight: normal;
}

.spec-table {
    width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border: 2px solid #F59E0B;
}

.spec-table th {
    background: #FFB74D;
    color: #333;
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #F59E0B;
    font-weight: bold;
}

.spec-table th a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.spec-table td {
    padding: 10px 8px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #F59E0B;
    color: #333;
}

.spec-table tbody tr:nth-child(odd) td {
    background: white;
}

.spec-table tbody tr:nth-child(even) td {
    background: #FFF8E1;
}

.company-strength {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.strength-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('{pboot:sitetplpath}/zdfbgzsg/strength-bg.jpg') no-repeat center center;
    background-size: cover;
}

.strength-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.strength-content {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 0 auto;
}

.strength-header {
    text-align: center;
    margin-bottom: 40px;
}

.strength-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin: 0 0 10px 0;
}

.strength-header h2 span {
    color: #F59E0B;
}

.strength-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 5px 0;
}

.strength-cards {
    display: flex;
    gap: 20px;
}

.strength-card {
    flex: 1;
    position: relative;
}

.card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #F59E0B;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.card-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-info {
    padding: 15px;
}

.card-info.white {
    background: white;
}

.card-info.white h3 {
    color: #333;
}

.card-info.white p {
    color: #666;
}

.card-info.orange {
    background: #F59E0B;
}

.card-info.orange h3 {
    color: white;
}

.card-info.orange p {
    color: rgba(255, 255, 255, 0.9);
}

.card-info h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-arrow {
    color: #F59E0B;
    font-weight: bold;
}

.card-info.orange .card-arrow {
    color: white;
}

.card-info p {
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

/*核心优势板块*/
.core-advantage {
    padding: 60px 0;
    background: #fff;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.advantage-content {
    width: 1200px;
    margin: 0 auto;
}

.advantage-header {
    text-align: center;
    margin-bottom: 40px;
}

.advantage-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.advantage-header h2 .title-gray {
    color: #666;
}

.advantage-header h2 .title-orange {
    color: #F59E0B;
}

.header-line {
    width: 200px;
    height: 2px;
    background: #eee;
    margin: 20px auto 0;
    position: relative;
}

.header-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #F59E0B;
}

.advantage-body {
    display: flex;
    gap: 40px;
}

.advantage-left {
    flex: 1.2;
}

.advantage-left img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.advantage-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #999;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
} 

.item-content h3::before {
    content: '';
    width: 3px;
    height: 16px;
    background: #F59E0B;
}

.item-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.8;
    text-align: justify;
}

/*产品实拍展示*/
.product-show {
    padding: 60px 0;
    background: #fff;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.show-content {
    width: 1200px;
    margin: 0 auto;
}

.show-header {
    text-align: center;
    margin-bottom: 40px;
}

.show-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
}

.show-header h2 .title-gray {
    color: #666;
}

.show-header h2 .title-orange {
    color: #F59E0B;
}

.show-header p {
    font-size: 14px;
    color: #999;
    margin: 0 0 20px 0;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-divider .divider-line {
    width: 80px;
    height: 1px;
    background: #ddd;
}

.header-divider .divider-diamond {
    width: 12px;
    height: 12px;
    background: #F59E0B;
    transform: rotate(45deg);
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.show-grid .grid-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.show-grid .grid-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.show-grid .grid-item:hover img {
    transform: scale(1.05);
}

/*适用场景*/
.application-scene {
    padding: 60px 0;
    background: #fff;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.scene-content {
    width: 1200px;
    margin: 0 auto;
}

.scene-header {
    text-align: center;
    margin-bottom: 40px;
}

.scene-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
}

.scene-header h2 .title-gray {
    color: #666;
}

.scene-header h2 .title-orange {
    color: #F59E0B;
}

.scene-header p {
    font-size: 14px;
    color: #999;
    margin: 0 0 20px 0;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-divider .divider-line {
    width: 80px;
    height: 1px;
    background: #ddd;
}

.header-divider .divider-diamond {
    width: 12px;
    height: 12px;
    background: #F59E0B;
    transform: rotate(45deg);
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.scene-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
}

.scene-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scene-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px;
    display: flex;
    justify-content: center;
}

.overlay-text {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/*服务流程*/
.service-process {
    position: relative;
    padding: 60px 0;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../zdfbgzsg/process-bg.jpg') center center no-repeat;
    background-size: cover;
    z-index: 0;
}

.process-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.process-content {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
}

.process-header h2 .title-gray {
    color: #ccc;
}

.process-header h2 .title-orange {
    color: #F59E0B;
}

.process-header p {
    font-size: 14px;
    color: #ccc;
    margin: 0 0 20px 0;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-divider .divider-line {
    width: 80px;
    height: 1px;
    background: #666;
}

.header-divider .divider-diamond {
    width: 12px;
    height: 12px;
    background: #F59E0B;
    transform: rotate(45deg);
}

.process-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.process-item {
    flex: 1;
    text-align: center;
    color: #fff;
}

.item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.process-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #fff;
}

.item-line {
    width: 30px;
    height: 2px;
    background: #F59E0B;
    margin: 0 auto 15px;
}

.process-item p {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    line-height: 1.8;
}

/*企业简介板块*/
.company-introduction {
    padding: 60px 0;
    background-image: url('bybg.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.introduction-content {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.intro-left {
    flex: 0.45;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
    padding: 40px;
}

.intro-header {
    margin-bottom: 30px;
}

.intro-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #F59E0B;
    margin: 0 0 10px 0;
}

.intro-header p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.intro-text {
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 14px;
    color: #666;
    line-height: 2;
    margin: 0;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F59E0B;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.intro-btn:hover {
    background: #d97706;
}

.intro-btn .btn-arrow {
    font-size: 18px;
}

.intro-right {
    flex: 0.55;
    position: relative;
}

.intro-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.intro-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: #F59E0B;
    z-index: 0;
}