/* 隐分宝网站样式表 */

:root {
    --primary-color: #20c997;
    --primary-dark: #16a085;
    --primary-light: #8fe6d0;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --light-text: #666;
    --accent-color: #ff4081;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* 导航栏相关样式 */
.navbar {
    background-color: var(--primary-color) !important;
}

/* 导航栏链接颜色设置为白色 */
.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

/* 英雄区域样式 */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 80px;
    border-radius: 0 0 30px 30px;
}

.hero-section i{
    font-size: 20px;
}

.hero-section .hero-image {
    max-width: 100%;
    height: 450px;
}

/* 卡片样式 */
.card.border-0.shadow-sm {
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.card.border-0.shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(32, 201, 151, 0.15) !important;
    background-color: rgba(32, 201, 151, 0.03);
}

/* 标题样式 */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

/* 按钮样式 */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

/* 按钮中的图标样式 */
.btn .iconfont {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-right: 0.5rem;
}

/* 下载部分样式 */
.download-section {
    background-color: var(--secondary-color);
    border-radius: 20px;
}

.download-section i{
   font-size: 28px;
}

.download-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
}

/* 页脚样式 */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0;
}

/* 安装指南链接颜色修改 */
.install-guide a {
    color: var(--primary-color) !important; 
}

/* 技术支持链接颜色修改 */
.support-section a, .footer a {
    color: var(--primary-color) !important;
}

/* 安装步骤样式 */
.install-step {
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

.install-step:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: -8px;
    top: 0;
}
.install-step a{
    color:var(--primary-color);
}

/* 浏览器图标样式 */
.browser-icon {
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.browser-icon:hover {
    background-color: rgba(32, 201, 151, 0.1);
}

/* 图标样式 */
.fhc-icons-migushipin, 
.fhc-icons-aiqiyi, 
.fhc-icons-bilibili, 
.fhc-icons-cctv, 
.fhc-icons-yangshipin, 
.fhc-icons-tengxunshipin {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
}

/* 折叠面板样式 */
.accordion-button:not(.collapsed) {
    background-color: rgba(32, 201, 151, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.25);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 30px auto 0;
    }
    
    .feature-image {
        max-height: 200px;
        object-fit: cover;
    }
}

#features i,#contact .container i,#install .fh-h5-icons{
    font-size: 40px;
    color: var(--primary-color)
}
/*#contact .container i{*/
/*    font-size: 40px;*/
/*    color: var(--primary-color)*/
/*}*/

#contact .text-decoration-none{
    color: var(--primary-color)
}