    /* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', sans-serif;
}

/* 色彩规范 */
:root {
    --primary: #053fbe; /* 主色-深蓝 */
    --primary-dark: #1E3A8A; /* 主色加深 */
    --secondary: #F97316; /* 辅助色-橙色 */
    --text-dark: #1F2937; /* 深色文字 */
    --text-medium: #6B7280; /* 中等灰度文字 */
    --text-light: #9CA3AF; /* 浅灰度文字 */
    --bg-light: #F3F4F6; /* 浅灰背景 */
    --bg-blue-light: #EFF6FF; /* 浅蓝背景 */
    --white: #FFFFFF; /* 白色 */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 基础阴影 */
}

/* 通用样式 */
body {
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: 80px; /* 适配固定导航栏 */
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.section-title p {
    font-size: 16px;
    color: var(--text-medium);
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}
.btn-outline {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background-color: var(--bg-blue-light);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}
.card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 24px;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
/* 响应式适配 */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 20px;
    }
    .section-title p {
        font-size: 14px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* 1. 顶部导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 999;
    padding: 15px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 170px;
    height: 100%;
    line-height: 100%;
    margin-right: 10px;
}
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}
.logo-text span {
    color: var(--secondary);
}
.nav {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin-right: 20px;
}
.nav-menu li {
    margin: 0 40px;
    position: relative; /* 新增：为下拉菜单定位 */
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block; /* 新增：确保点击区域完整 */
    padding: 8px 0;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
/* 新增：客户服务下拉菜单样式 */
.nav-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    min-width: 180px;
    z-index: 9999;
    padding: 10px 0;
}
.nav-menu .dropdown li {
    margin: 0;
    padding: 0 15px;
}
.nav-menu .dropdown a {
    padding: 8px 15px;
    border-bottom: none; /* 取消下拉菜单的底部边框 */
}
.nav-menu .dropdown a:hover {
    background-color: var(--bg-blue-light);
    color: var(--primary);
    border-radius: 4px;
}
.nav-menu li:hover .dropdown {
    display: block;
}
/* 导航栏操作区 */
.nav-actions {
    display: flex;
    align-items: center;
}
.lang-switch {
    margin-right: 15px;
    padding: 5px 10px;
    border: 1px solid var(--text-medium);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}
/* 移动端导航适配 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    .nav-menu li {
        margin: 10px 0;
    }
    .nav-menu .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-actions .lang-switch {
        margin-right: 10px;
        padding: 3px 8px;
        font-size: 12px;
    }
    .nav-actions .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* 2. Banner区 */
.banner {
    height: 50vh;
    background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(30, 64, 175, 0.8)), url('https://picsum.photos/1920/1080?random=1') center/cover no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}
.banner-slides.active {
    opacity: 1;
}
.banner-content {
    width: 50%;
    padding: 20px;
    position: relative;
    z-index: 2;
}
.banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.banner p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--bg-light);
}
.banner-btns {
    display: flex;
    gap: 20px;
}
/* 移动端Banner适配 */
@media (max-width: 768px) {
    .banner {
        height: 60vh;
    }
    .banner-content {
        width: 100%;
        text-align: center;
    }
    .banner h1 {
        font-size: 24px;
    }
    .banner p {
        font-size: 14px;
    }
    .banner-btns {
        justify-content: center;
        gap: 10px;
    }
}

/* 3. 核心优势区 */
.advantages {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}
.advantages-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.advantage-card {
    text-align: center;
}
.advantage-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}
.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.advantage-card p {
    font-size: 16px;
    color: var(--text-medium);
}
/* 移动端优势区适配 */
@media (max-width: 768px) {
    .advantages-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .advantage-card h3 {
        font-size: 16px;
    }
    .advantage-card p {
        font-size: 14px;
    }
}

/* 4. 检测网络布局区 */
.detection-network {
    padding: 40px 0 60px;
    background-color: var(--white);
}
.network-map {
    width: 100%;
    height: 400px;
    /* 核心修改：替换为用户指定的配图URL */
    background: url("https://p3-flow-imagex-sign.byteimg.com/tos-cn-i-a9rns2rl98/674f8cb40c634e029af7198319070de6.png~tplv-a9rns2rl98-image.png?rcl=202512261400311FFDE94DAC6AA92ADE8A&rk3s=8e244e95&rrcfp=dafada99&x-expires=2082952831&x-signature=5i7IbZb7laLazIzAN7P5RhFnbDk%3D") center/cover no-repeat;
    border-radius: 12px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.network-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3);
    animation: pulse 2s infinite;
}
.network-point.main {
    background-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.3);
    width: 20px;
    height: 20px;
}
.network-label {
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transform: translateX(-50%);
    top: 25px;
    background-color: rgba(255,255,255,0.8);
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.network-stat {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}
.network-stat h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}
.network-stat p {
    color: var(--text-medium);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}
@media (max-width: 768px) {
    .network-map {
        height: 300px;
    }
    .network-stats {
        grid-template-columns: 1fr;
    }
}

/* 5. 技术实力区 */
.technology {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.tech-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
}
.tech-icon {
    font-size: 40px;
    color: var(--primary);
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.tech-content p {
    color: var(--text-medium);
    margin-bottom: 10px;
}
.tech-metrics {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}
.tech-metric {
    text-align: center;
}
.tech-metric .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}
.tech-metric .label {
    font-size: 12px;
    color: var(--text-medium);
}
@media (max-width: 768px) {
    .tech-list {
        grid-template-columns: 1fr;
    }
    .tech-card {
        flex-direction: column;
        text-align: center;
    }
    .tech-icon {
        margin: 0 auto;
    }
}

/* 6. 分角色解决方案区 */
.solutions {
    padding: 80px 0;
}
.solutions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.solution-card {
    background-color: var(--bg-blue-light);
    border-radius: 12px;
    padding: 30px;
}
.solution-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}
.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.solution-pain {
    margin-bottom: 20px;
}
.solution-pain p {
    color: var(--text-medium);
    margin-bottom: 5px;
}
.solution-services {
    margin-bottom: 20px;
}
.solution-services ul {
    list-style: none;
    margin-left: 10px;
}
.solution-services li {
    margin-bottom: 8px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}
.solution-services li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
.solution-case {
    background-color: var(--white);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-medium);
}
/* 移动端解决方案适配 */
@media (max-width: 768px) {
    .solutions-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .solution-card h3 {
        font-size: 16px;
    }
    .solution-case {
        font-size: 12px;
    }
}

/* 7. 服务流程区 */
.process {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.process-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 40px;
}
.process-list::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    z-index: 1;
    transform: translateY(-50%);
}
.process-step {
    width: 14%;
    text-align: center;
    position: relative;
    z-index: 2;
}
.process-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}
.process-icon:hover {
    background-color: var(--primary);
    color: var(--white);
}
.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.process-step p {
    font-size: 14px;
    color: var(--text-medium);
}
.process-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background-color: var(--primary);
    z-index: 1;
    transform: translateY(-50%);
    width: 0;
    transition: width 2s ease;
}
/* 移动端流程区适配 */
@media (max-width: 768px) {
    .process-list {
        flex-direction: column;
        gap: 30px;
    }
    .process-list::before {
        display: none;
    }
    .process-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
    }
    .process-icon {
        margin: 0 15px 0 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .process-step-content {
        flex: 1;
    }
}

/* 8. 信任背书区 */
.trust {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.trust-data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.data-card {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-blue-light);
    border-radius: 8px;
}
.data-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.data-label {
    font-size: 16px;
    color: var(--text-medium);
}
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
}
.trust-logo {
    width: 100px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.trust-logo:hover {
    background-color: var(--bg-blue-light);
}
.trust-logo img {
    max-width: 80%;
    max-height: 80%;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}
.trust-logo:hover img {
    filter: grayscale(0);
}
.trust-reviews {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.review-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.review-item.active {
    opacity: 1;
}
.review-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}
.review-author {
    font-size: 14px;
    color: var(--text-medium);
    font-style: italic;
}
/* 移动端信任背书适配 */
@media (max-width: 768px) {
    .trust-data {
        grid-template-columns: repeat(2, 1fr);
    }
    .data-number {
        font-size: 24px;
    }
    .data-label {
        font-size: 14px;
    }
    .trust-logos {
        gap: 15px;
    }
    .trust-logo {
        width: 80px;
        height: 50px;
    }
    .review-text {
        font-size: 14px;
    }
}

/* 9. 行业动态区 */
.news {
    padding: 80px 0;
}
.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-item {
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--text-light);
}
.news-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}
.news-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.news-desc {
    font-size: 16px;
    color: var(--text-medium);
}
.news-more {
    align-self: flex-start;
    margin-top: 10px;
}
.news-subscribe {
    background-color: var(--bg-blue-light);
    padding: 30px;
    border-radius: 8px;
}
.news-subscribe h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.subscribe-form input {
    padding: 12px 15px;
    border: 1px solid var(--text-light);
    border-radius: 8px;
    font-size: 16px;
}
.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary);
}
/* 移动端行业动态适配 */
@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
    .news-item h3 {
        font-size: 16px;
    }
    .news-desc {
        font-size: 14px;
    }
    .subscribe-form input {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* 10. 联系咨询区 */
.contact {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.contact-container {
    display: grid;
    gap: 30px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-card {
    padding: 20px;
}
.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.contact-icon {
    font-size: 24px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-blue-light);
    border-radius: 50%;
}
.contact-text h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}
.contact-text p {
    font-size: 14px;
    color: var(--text-medium);
}
.contact-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}
.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-form {
    padding: 30px;
}
.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--text-light);
    border-radius: 8px;
    font-size: 16px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea {
    resize: none;
    height: 120px;
}
/* 移动端联系区适配 */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .form-group input, .form-group select, .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* 11. Footer区 */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
}
.footer-column p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}
.footer-nav {
    list-style: none;
}
.footer-nav li {
    margin-bottom: 10px;
}
.footer-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: var(--secondary);
}
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--text-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--secondary);
}
.footer-lang {
    margin-top: 20px;
    font-size: 14px;
}
/* 移动端Footer适配 */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* 弹窗样式 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    width: 80%;
    max-width: 600px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-medium);
    cursor: pointer;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: var(--primary);
}
.modal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}
.modal-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

/*报告查询*/
    .main {box-sizing: border-box;
        max-width: 1200px;
        margin: 80px auto;
    }

    .form {
        width: 900px;
        margin: 60px auto 50px;
    }

    .search-view {
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 8px 0 #d1d1d13d;
        width: 80%;
        margin: 0 auto;
    }

    .search-view label {
        flex-grow: 1;
        width: 100%;
    }

    .search-view label input {
        box-sizing: border-box;
        width: 100%;
        height: 54px;
        padding: 0 20px;
        color: #2e2e2e;
        font-size: 17px;
        border-radius: 4px 0 0 4px;
        border: 1px solid #bfbfbf80;
    }

    .search-view button {
        box-sizing: border-box;
        flex-shrink: 0;
        width: 120px;
        height: 54px;
        color: #fff;
        font-size: 16px;
        background: #d25252;
        cursor: pointer;
        border: none;
        border-radius: 0 4px 4px 0;
    }

    .search-view button img {
        width: 20px;
        vertical-align: bottom;
    }

    .waring-text {
        margin: 100px auto 40px;
        color: #d25252;
        font-size: 16px;
        text-align: center;
    }