        :root {
            --primary-light: #dbedf3;
            --primary-red: #f73859;
            --primary-dark: #404b69;
            --primary-darker: #283149;
        }
        
        body {
            background-color: #f5f5f5;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        .header {
            background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .logo {
            width: 181px;
            height: 100px;
            margin-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border-radius: 4px;
            color: var(--primary-darker);
            font-weight: bold;
            font-size: 18px;
        }
        
        .banner-placeholder {
            flex: 1;
            height: 100px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .banner-placeholder img {
            max-height: 100%;
            max-width: 100%;
            display: block;
            margin: auto;
        }
        
        /* 股票形象展示区 */
        .stock-profile {
            background: linear-gradient(to right, rgba(40,49,73,0.8), rgba(64,75,105,0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23283149"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23404b69" stroke-width="2"/></svg>');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            color: white;
            padding: 25px 30px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .profile-info {
            padding: 15px;
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            margin: 5px;
        }
        
        .profile-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }
        
        .profile-subtitle {
            font-size: 16px;
            opacity: 0.85;
            margin-bottom: 20px;
        }
        
        .profile-label {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .profile-value {
            font-size: 18px;
            font-weight: 500;
        }
        .profile-value a {
  color: #ffffff;          /* 默认蓝色链接色 */
  text-decoration: none;   /* 去除下划线 */
  font-weight: 500;        /* 中等字重 */
  transition: all 0.3s;    /* 平滑过渡效果 */
  border-bottom: 1px dotted transparent; /* 悬停时显示虚线 */
}

/* 悬停状态 */
.profile-value a:hover {
  color: #d9ecf9;          /* 深蓝色 */
  border-bottom-color: currentColor; /* 显示虚线 */
}

/* 访问后状态 */
.profile-value a:visited {
  color: #d9ecf9;          /* 紫色表示已访问 */
}

/* 活动状态 */
.profile-value a:active {
  transform: translateY(1px); /* 点击下沉效果 */
}
        /* 导航样式 */
        .nav-container {
            position: relative;
            overflow: hidden;
            background-color: var(--primary-dark);
            border-radius: 0 0 4px 4px;
        }
        
        .nav-scroll {
            display: flex;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding: 0 10px;
            scrollbar-width: none;
        }
        
        .nav-scroll::-webkit-scrollbar { 
            display: none;
        }
        
        .nav-item {
            padding: 15px 25px;
            color: #fff;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .nav-item a {
            color: #fff;
            font-weight: bold;
        }
        
        .nav-item:hover {
            background-color: rgba(219,237,243,0.15);
        }
        
        .nav-item.active {
            background-color: #1e9fff;
            font-weight: bold;
        }
        
        /* 搜索框样式 */
        .search-container {
            padding: 20px 0;
        }
        
        .search-box {
            display: flex;
            margin: 0 auto;
            max-width: 800px;
        }
        
        .search-input {
            flex: 1;
            height: 45px;
            padding: 0 15px;
            border: 2px solid var(--primary-dark);
            border-right: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .search-btn {
            background-color: #1e9fff;
            color: white;
            border: none;
            width: 100px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: background 0.3s;
        }
        
        .search-btn:hover {
            background-color: #d0324e;
        }
        
        /* 当前位置样式 */
        .location-bar {
            padding: 12px 0;
            color: var(--primary-dark);
            font-size: 15px;
            border-bottom: 1px dashed #ddd;
        }
        
        /* 主内容样式 */
        .content-section {
            padding: 30px 0;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            margin-bottom: 25px;
            overflow: hidden;
        }
        
        .card-header {
            background-color: var(--primary-dark);
            color: white;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
        }
        
        .card-body {
            padding: 20px;
        }
        
        /* 股票信息网格 */
        .stock-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .stock-info-box {
            border: 1px solid #eee;
            padding: 15px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .stock-info-box:hover {
            box-shadow: 0 3px 10px rgba(64,75,105,0.1);
            border-color: var(--primary-light);
        }
        
        .info-label {
            color: #777;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .info-value {
            color: var(--primary-darker);
            font-size: 17px;
            font-weight: 500;
        }
        
        /* 表格样式 */
        .fund-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .fund-table th {
            background-color: var(--primary-light);
            text-align: left;
            padding: 12px 15px;
            font-weight: 600;
            color: var(--primary-darker);
        }
        
        .fund-table td {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .fund-table tr:hover td {
            background-color: rgba(219,237,243,0.2);
        }
        
        /* 按钮组样式 */
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .custom-btn {
            padding: 8px;
            background-color: var(--primary-dark);
            color: white;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
            min-width: 140px;
        }
        
        .custom-btn:hover {
            background-color: var(--primary-red);
            color: white;
            transform: translateY(-2px);
        }
        
        /* 底部样式 */
        .footer {
            background-color: var(--primary-darker);
            color: rgba(255,255,255,0.8);
            padding: 40px 0;
            margin-top: 50px;
        }
        /* 新增底部链接样式 */
.footer a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 5px;
    padding: 2px 5px;
    border-bottom: 1px dotted rgba(219,237,243,0.4);
}

.footer a:hover {
    color: white;
    background-color: rgba(219,237,243,0.2);
    border-bottom-style: solid;
    text-decoration: none;
}

.footer a:visited {
    color: #a1c7d8; /* 访问过的链接使用浅蓝色变体 */
}

/* 版权区域样式增强 */
.copyright {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    line-height: 1.7; /* 增加行高便于多行展示 */
}

/* 添加链接说明文字样式 */
.link-description {
    display: block;
    font-size: 13px;
    margin-top: 10px;
    opacity: 0.7;
}

        
        .copyright {
            text-align: center;
            font-size: 14px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
                .company-intro p {
            line-height: 1.8;
            margin-bottom: 15px;
            color: #404b69;
        }
        
        /* 团队成员样式 */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .team-member {
            text-align: center;
            padding: 15px;
            border: 1px solid #eaeaea;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .member-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background-color: #dbedf3;
            border-radius: 50%;
            position: relative;
        }
        
        .member-avatar:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #404b69, #283149);
            opacity: 0.7;
            border-radius: 50%;
        }
        
        .member-name {
            font-weight: bold;
            font-size: 18px;
            color: #283149;
            margin-bottom: 5px;
        }
        
        .member-position {
            color: #f73859;
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .member-brief {
            color: #666;
            font-size: 13px;
        }
        
        /* 研发实力样式 */
        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .research-stat {
            text-align: center;
            padding: 15px 10px;
            border: 1px solid #dbedf3;
            border-radius: 6px;
            background-color: rgba(219,237,243,0.3);
        }
        
        .stat-value {
            font-size: 28px;
            font-weight: bold;
            color: #283149;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #666;
        }
        
        .achievement-list ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .achievement-list li {
            padding: 10px 0 10px 25px;
            border-bottom: 1px dashed #eee;
            position: relative;
        }
        
        .achievement-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 15px;
            width: 12px;
            height: 12px;
            background-color: #f73859;
            border-radius: 50%;
        }