
/* 全局重置 */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* 页面整体风格（和退款政策页一致的深蓝色背景） */
body{
    font-family:"Microsoft YaHei",sans-serif;
    background: #0a1029; /* 深蓝色背景，和退款政策页匹配 */
    color: #c0c6d8; /* 浅灰色文字，适配深色背景 */
    line-height: 1.8;
}

/* 顶部导航栏（复刻退款政策页的导航样式） */
.header{
    background: #080e24;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1e2949;
}
.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.logo-icon{
    width: 30px;
    height: 30px;
}
.nav{
    display: flex;
    gap: 30px;
}
.nav a{
    color: #c0c6d8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}
.nav a:hover, .nav a.active{
    color: #fff;
}
.btns{
    display: flex;
    gap: 15px;
}
.btn{
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-consult{
    background: transparent;
    border: 1px solid #2d7eff;
    color: #2d7eff;
}
.btn-product{
    background: #2d7eff;
    color: #fff;
}

/* 头部标题区域（复刻退款政策页的标题样式） */
.title-section{
    padding: 300px 20px;
    text-align: center;
    border-bottom: 1px solid #1e2949;
    background: url(https://www.jianguodun.com/static/jianguodun/images/jianguodun-logo.png) no-repeat center;
    background-size: cover;
    background-blend-mode: overlay;
}
.main-title{
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}
.title-desc{
    font-size: 16px;
    color: #99a2b8;
    max-width: 800px;
    margin: 0 auto;
}

/* 核心内容区域 */
.content{
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}
.policy-box{
    margin-bottom: 80px;
}
.policy-box h2{
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #1e2949;
    text-align: center;
}

/* 图钉图标样式（保留原有图标，适配深色背景） */
.policy-box h3::before {
    content: url(https://www.jianguodun.com/static/jianguodun/images/pushpin.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.policy-box h3{
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
}
.policy-box p,
.policy-box li{
    font-size: 15px;
    color: #c0c6d8;
    margin: 10px 0;
}
.policy-box ul{
    padding-left: 25px;
}
.tip-red{
    color: #ff6666;
    font-weight: bold;
}
.tip-orange{
    color: #ff9900;
    font-weight: bold;
}

/* 联系信息样式（适配深色背景） */
.contact-info{
    background: #0e1735;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 15px;
    border: 1px solid #1e2949;
    color: #c0c6d8;
}

/* 重要提示样式（复刻退款政策页的橙色提示） */
.important-tip{
    color: #ff9900;
    font-weight: bold;
    text-align: center;
    margin: 20px 0 40px 0;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ff990033;
    border-radius: 6px;
}
