/* 内页公共样式 */
.page-banner {
    background: linear-gradient(to right, #1a1a1a, #333333);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.png');
    opacity: 0.1;
    pointer-events: none;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    font-size: 14px;
    color: #e0e0e0;
}

.breadcrumb a {
    color: #c9a55f;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 典当行简介页样式 */
.pawn-intro {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.intro-text {
    flex: 3;
    min-width: 300px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(201, 165, 95, 0.1);
    color: #c9a55f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.highlight-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.highlight-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.intro-image {
    flex: 2;
    min-width: 300px;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 典当服务项目样式 */
.pawn-services {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-content .btn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c9a55f;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card-content .btn-more:hover {
    background-color: #b08d4a;
}

/* 典当流程页样式 */
.process-detail {
    padding: 80px 0;
    background-color: #fff;
}

.process-timeline {
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background-color: #c9a55f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(201, 165, 95, 0.3);
}

.timeline-content {
    margin-left: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    flex: 1;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.timeline-icon {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    background-color: rgba(201, 165, 95, 0.1);
    color: #c9a55f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.process-info {
    margin-top: 50px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 165, 95, 0.1);
    color: #c9a55f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .timeline-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-content {
        margin-left: 20px;
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
} 