/* 查验真伪页面样式 */
.verify-main {
    padding-top: 85px;
}
/* 第一部分：查验真伪大图 */
.verify-hero {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background-color: #0a2461; /* 临时背景色，与图片相近 */
}

.verify-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 第二部分：查验真伪步骤 */
.verify-steps-section {
    padding: 100px 0;
    background-color: #fff;
}

.verify-steps-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.verify-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.step-title {
    font-size: 40px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

.step-description {
    height: 110px;
    margin-bottom: 30px;
}

.step-description p {
    font-size: 22px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 8px;
}

.step-image {
    width: 100%;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.step-image img {
    max-width: 100%;
    object-fit: contain;
}

/* 第三部分：防伪码查询 */
.verify-code-section {
    padding: 0  0 80px 0;
}

.verify-code-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.verify-code-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verify-input-group {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
}

.verify-input {
    flex: 1;
    height: 60px;
    padding: 0 30px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.verify-btn {
    width: 180px;
    height: 60px;
    margin-left: 30px;
    background-color: #0a2461;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    box-shadow: 0 2px 10px rgba(10, 36, 97, 0.2);
}

.verify-btn:hover {
    background-color: #153a7c;
}

.verify-arrow-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.verify-results {
    width: 100%;
}

.verify-result {
    margin-bottom: 30px;
}

.result-title {
    font-size: 22px;
    color: #204387;
    margin-bottom: 15px;
    font-weight: 500;
}

.result-content {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.result-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.success-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234CAF50"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.error-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F44336"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.result-text {
    font-size: 22px;
    font-weight: 500;
}

.success-text {
    color: #204387;
}

.error-text {
    color: #204387;
}

/* ========== 移动端样式 ========== */
@media (max-width: 576px) {
    .verify-main {
        padding-top: 70px;
    }
    .verify-hero {
        height:auto;
    }
    .verify-steps-section {
        padding: 20px 0;
    }
    .container {
        padding: 0 10px;
        width: 100%;
        min-width: 100%;
    }
    .verify-steps-container {
        padding: 0;
        flex-direction: column;
        gap: 40px;
    }
    .verify-step {
        padding: 0;
    }
    .step-title {
        font-size: 24px;
        font-weight: 400;
        color: #333;
        margin-bottom: 10px;
    }
    .step-description {
        height: auto;
        margin-bottom: 10px;
        
    }
    .step-description p {
    font-size: 14px;margin-bottom:0;}

}
