/* 全局配色 严格按你要求 */
:root {
    --main: #ff6600;
    --main-dark: #ff5500;
    --sub: #333333;
    --ok: #00B42A;
    --bg: #F7F8FA;
    --white: #fff;
    --gray: #666;
    --light-gray: #999;
    --red: #f53f3f;
    --orange: #ff6600;
    --yellow: #ffc107;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Microsoft YaHei", sans-serif;
}

body {
background: var(--bg);
color: var(--sub);
line-height: 1.6;
}

.container {
width: 1200px;
margin: 0 auto;
}

/* 导航 */
.nav {
background: #fff;
height: 70px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 99;
}
.nav .container {
display: flex;
align-items: center;
height: 100%;
justify-content: space-between;
}
.logo {
font-size: 24px;
font-weight: bold;
color: #ff6600;
}
.nav-menu {
display: flex;
gap: 30px;
}
.nav-menu a {
color: var(--sub);
text-decoration: none;
font-size: 15px;
}
.nav-menu a:hover {
color: var(--main);
}

/* Banner */
.banner {
/*background: var(--main);*/
background: #333;
color: white;
padding: 80px 0;
text-align: center;
}
.banner h1 {
font-size: 36px;
margin-bottom: 15px;
}
.banner p {
font-size: 16px;
max-width: 800px;
margin: 0 auto 30px;
opacity: 0.95;
}
.btns {
display: flex;
justify-content: center;
gap: 20px;
}
.btns a {
padding: 12px 30px;
border-radius: 4px;
text-decoration: none;
font-size: 15px;
font-weight: bold;
}
.btn1 {
background: white;
color: var(--main);
}
.btn2 {
background: var(--ok);
color: white;
}

/* 板块通用 */
.section {
padding: 60px 0;
background: white;
margin-bottom: 20px;
border-radius: 8px;
}
.title {
text-align: center;
font-size: 28px;
color: var(--sub);
margin-bottom: 40px;
position: relative;
}
.title::after {
content: "";
width: 60px;
height: 3px;
background: var(--main);
position: absolute;
left: 50%;
bottom: -10px;
transform: translateX(-50%);
}

/* 四大核心优势 */
.advantage {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.adv-item {
flex: 1;
min-width: 280px;
background: var(--bg);
padding: 30px;
border-radius: 8px;
/* border-left: 4px solid var(--main);*/
border-left: 4px solid #ff6600;
}
.adv-item h3 {
color: #333;
margin-bottom: 10px;
font-size: 18px;
}
.adv-item p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

/* 流程步骤 */
.steps {
display: flex;
justify: space-between;
text-align: center;
}
.step {
flex: 1;
}
.step-num {
width: 40px;
height: 40px;
background: #ff6600;
color: white;
border-radius: 50%;
margin: 0 auto 15px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.step-text {
font-size: 14px;
color: var(--sub);
}

/* 招商 */
.banner2 {
background: var(--ok);
color: white;
text-align: center;
padding: 50px 0;
border-radius: 8px;
}
.banner2 h2 {
margin-bottom: 15px;
}
.banner2 p {
max-width: 900px;
margin: 0 auto 25px;
opacity: 0.95;
}

/* 底部 */
.footer {
background: var(--sub);
color: rgba(255,255,255,0.8);
padding: 40px 0;
font-size: 13px;
text-align: center;
}
.footer p {
margin-bottom: 8px;
}
.footer a {
color: rgba(255,255,255,0.8);
margin: 0 5px;
text-decoration: none;
}