* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #ab2a84;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

:root {
    --primary-color: #ab2a84;
    --primary-hover: #8a2499;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f5f5f5;
    --border-color: #eee;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 20px rgba(0, 0, 0, 0.1);
    --radius-small: 5px;
    --radius-medium: 8px;
    --radius-large: 10px;
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-title img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.section-title h2 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.section-title span {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}


#Searchcontent{
margin-top:60px;
margin-left:-220px;
}