/* 搜索页面样式 */
.search-page {
    width: 100%;
    height: 370px;
    background: url('https://cdn1.guoxinshujian.com/image/search/search.png') no-repeat;
    background-size: cover;
    position: relative;
}

.search-header {
    padding: 116px 120px 0;
}

.search-header h1 {
    font-size: 54px;
    color: #74481E;
}

.search-container {
    width: 80%;
    max-width: 1440px;
    height: 96px;
    margin: 1.7% auto 0;
    background: #FFFFFF;
    display: flex;
    position: relative;
    box-shadow: 0 10px 80px rgba(108, 66, 27, 0.1);
}

.search-title {
    width: 344px;
    height: 96px;
    background: linear-gradient(to right, #AD7036, #6C421B);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 72px;
    position: relative;
}

.search-title::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 23px;
    right: 23px;
    height: 2px;
    background: linear-gradient(to right,
    rgba(255, 215, 152, 0) 0%,
    rgba(255, 215, 152, 1) 50%,
    rgba(255, 215, 152, 0) 100%
    );
    filter: blur(4px);
}

.search-title h2 {
    font-family: "Noto Sans SC Semibold", sans-serif;
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 4px;
    font-weight: 500;
}

.search-title p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-family: "Noto Sans SC Semibold", sans-serif;
}

.search-form {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 48px;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 280px;
}

.search-input-group label {
    font-family: "Noto Sans SC", sans-serif;
    color: #43403C;
    font-size: 14px;
    white-space: nowrap;
}

.search-input-group input {
    width: 212px;
    height: 22px;
    border: none;
    border-bottom: 1px solid #9D8C7E;
    font-family: "Noto Sans SC Medium", sans-serif;
    font-size: 14px;
    padding: 4px 0;
    outline: none;
}

.search-input-group input::placeholder {
    color: #E9E6E3;
    font-family: "Noto Sans SC", sans-serif;
}

.search-submit-btn {
    width: 93px;
    height: 40px;
    background: linear-gradient(to right, #AD7036, #6C421B);
    border: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-left: auto;
}

.search-submit-btn:hover {
    opacity: 0.9;
}

.search-submit-btn i {
    font-size: 16px;
}

.search-submit-btn span {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 14px;
}

/* 默认提示样式 */
.search-default {
    width: 94.6%;
    max-width: 1440px;
    height: 400px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0 10px 80px rgba(108, 66, 27, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    /*visibility: hidden;*/
}

.search-default-text {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 16px;
    color: #43403C;
    opacity: 0.45;
}

/* 404页面样式 */
.not-found {
    width: 94.6%;
    max-width: 1400px;
    height: 224px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0 10px 80px rgba(108, 66, 27, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    display: none;
}

.not-found.show {
    display: flex;
}

.not-found-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 12px;
    background: url('https://cdn1.guoxinshujian.com/image/search/not-found.png') no-repeat center;
    background-size: contain;
}

.not-found-icon::before {
    display: none;
}

.not-found-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.not-found-title {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 16px;
    color: #43403C;
    text-align: center;
}

.not-found-desc {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 14px;
    color: rgba(67, 64, 60, 0.45);
    text-align: center;
    opacity: .45;
}


.result-tips {
    padding-top: 28px;
    display: none;
}

.result-tips h4 {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 12px;
    color: #ABA6A2;
    text-align: center;
    margin: 0 0 8px;
}

.result-tips p {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 12px;
    color: #ABA6A2;
    margin: 0 auto;
    padding: 8px 10px 0;
    line-height: 1.6;
    width: 588px;
    text-align: center;
    border-top: 1px solid;
}

/* 证书结果样式 */
.search-result {
    padding: 4.4vw 8vw 1.6vw;
    background: #f4f4f4;
}

.loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #6C421B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

.loading-text {
    color: #6C421B;
    font-size: 16px;
    font-family: "Noto Sans SC Medium", sans-serif;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.certificate {
    height: 28px;
    position: relative;
}

.clear-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 12px;
    right: 0;
    transform: translateY(-50%);
}

.input-warning {
    width: 100px;
    color: #FC0202;
    font-size: 12px;
    font-family: "Noto Sans SC", sans-serif;
    display: none;
    min-height: 20px;
}

.search-result-container {
    width: 94.6%;
    margin: 0 auto;
    display: none;
    border: 1px solid #D5CDC5;
    background: #FFFFFF;
    box-shadow: 0 10px 80px rgba(108, 66, 27, 0.1);
    padding: 32px;
}

.search-result-container.show {
    display: block;
}

.container-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.industry-title {
    font-size: 24px;
    color: #743F1E;
    font-family: "Noto Sans SC", sans-serif;
    position: relative;
    padding-bottom: 12px;
    margin: 0;
}

.industry-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 96px;
    height: 10px;
    background: url('https://cdn1.guoxinshujian.com/image/search/title-underline.png') no-repeat center/cover;
}

.container-title p {
    font-size: 14px;
    color: #74481E;
    position: relative;
}

.container-title p::after {
    content: '';
    position: absolute;
    top: 4px;
    left: -20px;
    width: 15px;
    height: 15px;
    background: url('https://cdn1.guoxinshujian.com/image/search/download.png') no-repeat center/cover;
}

.certificate-table {
    padding: 0 6.2vw;
    border: 1px solid #D5CDC5;
    background: url('https://cdn1.guoxinshujian.com/image/search/search-bg.png') no-repeat center/cover;
}

.certificate-details {
    text-align: center;
    background: #fff;
    margin: 2px 0;
    justify-content: space-around;
}

.certificate-details h2 {
    font-size: 32px;
    color: #4b2e13;
    padding: 38px 0 44px;
}

.certificate-details img {
    width: 41%;
    margin-bottom: 30px;
}

.content-details {
    display: flex;
    flex-wrap: wrap;
    padding:0 0 20px 36px;
}

.certificate-row {
    display: flex;
}

.certificate-label {
    min-width: 90px;
    white-space: nowrap;
    width: 89px;
    height: 46px;
    font-size: 16px;
    color: #000;
    opacity: .45;
    text-align: right;
    padding-right: 12px;
}

.certificate-value {
    min-width: 235px;
    text-align: left;
    padding-left: 12px;
    letter-spacing: 1px;
}

@media (max-width: 1440px) {
    .search-title{
        padding: 0 2vw;
    }

    .search-title p{
        font-size: 14px;
    }

    .search-title h2{
        width: 148px;
        font-size: 18px;
    }

}


@media (max-width: 1260px) {
    .search-form{
        display: inline-block;
    }

    .search-input-group{
        margin-top: 14px;
    }

    .search-submit-btn{
        margin-top: -55px;
    }

    .search-input-group label{
        width: 56px;
    }

    .search-input-group input {
        width: 165px;
    }
}
