/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #0056b3;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0056b3;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #0056b3;
    color: #fff;
    border: 2px solid #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.btn-secondary {
    background-color: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.btn-secondary:hover {
    background-color: #0056b3;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #0056b3;
    border: 1px solid #0056b3;
    padding: 8px 20px;
}

.btn-outline:hover {
    background-color: #0056b3;
    color: #fff;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: #0056b3;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo p {
    color: #666;
    font-size: 0.9rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0056b3;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: #0056b3;
}

/* 页面头部样式 */
.page-header {
    background-color: #0056b3;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 首页英雄区域样式 */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/indexbanner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 特点区域样式 */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* 贷款类型区域样式 */
.loan-types {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.loan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.loan-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.loan-card:hover {
    transform: translateY(-10px);
}

.loan-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.loan-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
}

.loan-card p {
    padding: 0 20px 20px;
    color: #666;
}

.loan-card .btn {
    margin: 0 20px 20px;
}

/* 客户评价区域样式 */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote {
    margin-bottom: 20px;
}

.quote i {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.client {
    display: flex;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA区域样式 */
.cta-section {
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTB8fGluZGlhbiUyMG9mZmljZXxlbnwwfHwwfHw%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-content .btn {
    border-color: #fff;
}

.cta-content .btn-primary {
    background-color: #fff;
    color: #0056b3;
}

.cta-content .btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

/* 页脚样式 */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-about p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    color: #bbb;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #0056b3;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* 关于我们页面样式 */
.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #f5f8fa;
    border-radius: 8px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 5px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-box, .vision-box, .values-box {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission-box .icon, .vision-box .icon, .values-box .icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.mission-box h2, .vision-box h2, .values-box h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.values-box ul {
    text-align: left;
    margin-top: 20px;
}

.values-box ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-box ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0056b3;
}

.leadership {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-member .designation {
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px 20px;
    color: #666;
}

.milestones {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #0056b3;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.year {
    width: 120px;
    text-align: right;
    padding-right: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0056b3;
}

.event {
    width: calc(100% - 150px);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.event:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
}

.event h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.recognition {
    padding: 80px 0;
    background-color: #fff;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.award-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.award-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.award-item p {
    color: #666;
}

/* 服务页面样式 */
.services-intro {
    padding: 80px 0;
    background-color: #fff;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-intro-content p {
    margin-bottom: 30px;
    color: #666;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    background-color: #f5f8fa;
    padding: 10px 20px;
    border-radius: 30px;
}

.highlight i {
    color: #0056b3;
    margin-right: 10px;
}

.loan-services {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
    text-align: center;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.service-details {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #333;
}

.detail-value {
    color: #0056b3;
}

.service-card .btn {
    display: block;
    text-align: center;
}

.other-services {
    padding: 80px 0;
    background-color: #fff;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.other-service-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.other-service-card:hover {
    transform: translateY(-10px);
}

.other-service-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.other-service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.application-process {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.apply-cta {
    text-align: center;
    margin-top: 50px;
}

.apply-cta p {
    margin-top: 20px;
    color: #666;
}

.documents-required {
    padding: 80px 0;
    background-color: #fff;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.document-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.document-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
    text-align: center;
}

.document-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.document-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.document-card ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0056b3;
}

.documents-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
}

.documents-note i {
    color: #0056b3;
    margin-right: 5px;
}

.faq {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    color: #0056b3;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* 投资者关系页面样式 */
.investor-overview {
    padding: 80px 0;
    background-color: #fff;
}

.investor-intro {
    max-width: 900px;
    margin: 0 auto;
}

.investor-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.investor-intro p {
    margin-bottom: 40px;
    color: #666;
    text-align: center;
}

.financial-highlights {
    margin-top: 50px;
}

.financial-highlights h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #333;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.highlight-box {
    background-color: #f5f8fa;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-10px);
}

.highlight-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}

.highlight-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.highlight-growth {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 600;
}

.financial-reports {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.report-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: translateY(-10px);
}

.report-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-right: 20px;
    flex-shrink: 0;
}

.report-details h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.report-details p {
    color: #666;
    margin-bottom: 15px;
}

.report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #888;
}

.report-meta span {
    display: flex;
    align-items: center;
}

.report-meta i {
    margin-right: 5px;
}

.corporate-governance {
    padding: 80px 0;
    background-color: #fff;
}

.governance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.governance-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.governance-card {
    background-color: #f5f8fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.governance-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
    text-align: center;
}

.governance-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.governance-card p {
    color: #666;
    margin-bottom: 20px;
}

.governance-list {
    list-style: none;
}

.governance-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.governance-list li:last-child {
    border-bottom: none;
}

.investor-calendar {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.calendar-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calendar-card.upcoming {
    border-left: 4px solid #4CAF50;
}

.calendar-card.past {
    border-left: 4px solid #9e9e9e;
    opacity: 0.8;
}

.calendar-date {
    background-color: #f5f8fa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.date-month {
    font-size: 1rem;
    color: #0056b3;
    font-weight: 600;
}

.date-year {
    font-size: 0.9rem;
    color: #666;
}

.calendar-details {
    padding: 20px;
    flex-grow: 1;
}

.calendar-details h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.calendar-details p {
    color: #666;
    margin-bottom: 10px;
}

.event-time {
    color: #0056b3;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-time i {
    margin-right: 5px;
}

.credit-ratings {
    padding: 80px 0;
    background-color: #fff;
}

.ratings-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.ratings-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.ratings-table th, .ratings-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.ratings-table th {
    background-color: #f5f8fa;
    color: #333;
    font-weight: 600;
}

.ratings-table tr:hover {
    background-color: #f9f9f9;
}

.ratings-note {
    text-align: center;
    color: #666;
    margin-top: 20px;
}

.ratings-note i {
    color: #0056b3;
    margin-right: 5px;
}

.shareholder-info {
    padding: 80px 0;
    background-color: #f5f8fa;
}

.shareholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.shareholder-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shareholder-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-placeholder {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.chart-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip: rect(0px, 100px, 200px, 0px);
    border: 100px solid;
}

.chart-center {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    top: 50px;
    left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 10px;
}

.legend-label {
    color: #666;
}

.dividend-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dividend-table th, .dividend-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.dividend-table th {
    background-color: #f5f8fa;
    color: #333;
    font-weight: 600;
}

.dividend-table tr:hover {
    background-color: #f9f9f9;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .year {
        width: 100%;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .event {
        width: 100%;
        margin-left: 30px;
    }
    
    .event:before {
        left: -30px;
        top: 20px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .feature-grid, .loan-grid, .testimonial-slider, .services-grid, .other-services-grid, .process-steps, .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}