﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}


.browser-bar {
    background-color: #333;
    color: #999;
    font-size: 12px;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.browser-bar a {
    color: #ccc;
    text-decoration: none;
    margin-left: 10px;
}
.browser-bar .icons {
    display: flex;
    gap: 5px;
}

/* -------- 鏍囬鍖哄煙 (涓夐〉鍏辩敤, index.htm 浼樺厛) -------- */
.header-wrap {
    background-color: #fff;
    width: 100%;
    border-bottom: 1px solid #eee;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: left;
}
.header-inner h1 {
    font-size: 32px;
    color: #2c4b9a;
    font-weight: bold;
}

/* -------- 瀵艰埅鏍?(涓夐〉鍏辩敤, index.htm 浼樺厛) -------- */
.navbar-wrap {
    background-color: #2c4b9a;
    width: 100%;
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}
.navbar-inner a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
}
.navbar-inner a:hover,
.navbar-inner a.active {
    color: #ffdd57;
}

/* -------- Banner 鍖哄煙 (index.htm) -------- */
.banner-wrap {
    width: 100%;
    padding: 20px 0;
}
.banner-box {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.banner-left {
    z-index: 2;
}
.banner-logo {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.banner-logo i {
    margin-right: 10px;
    font-size: 24px;
}
.banner-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}
.banner-text h2 span {
    font-weight: bold;
}
.btn-open-account {
    display: inline-block;
    margin-top: 25px;
    background-color: white;
    color: #ff6b4a;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.btn-open-account:hover {
    transform: scale(1.05);
}
.banner-right {
    position: relative;
    width: 350px;
    height: 250px;
}
.banner-right .illustration-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.banner-right .chart-sim {
    background: rgba(255,255,255,0.2);
    width: 150px;
    height: 100px;
    border-radius: 8px;
    position: absolute;
    bottom: 20px;
    right: 0;
    border: 2px solid rgba(255,255,255,0.5);
}
.banner-right .dollar-icon {
    font-size: 30px;
    color: #ffe082;
    position: absolute;
    top: 40px;
    right: 180px;
}
.risk-warning {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 14px;
    opacity: 0.8;
}
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: rgba(0,0,0,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}
.arrow-left {
    left: 0;
}

/* -------- 棣栭〉鍐呭鍖?(index.htm - 鐎戝竷寮忎袱鍒楀竷灞€) -------- */
.content-wrap {
    width: 100%;
    background-color: #f9f9f9;
    padding: 40px 0;
}
.content-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
}
.column-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.column-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.column-box h3 {
    font-size: 18px;
    color: #2c4b9a;
    border-bottom: 2px solid #2c4b9a;
    padding-bottom: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-list {
    list-style: none;
    padding: 0;
}
.news-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
}
.news-list li:last-child {
    border-bottom: none;
}
.news-title {
    color: #333;
    flex: 1;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list li:hover .news-title {
    color: #2c4b9a;
    cursor: pointer;
}
.news-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}
.more-link {
    display: block;
    text-align: right;
    margin-top: 12px;
    color: #2c4b9a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.more-link:hover {
    text-decoration: underline;
}

/* -------- 鍒嗙被鍒楄〃椤靛唴瀹瑰尯 (cate.html) -------- */
.content-list-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

/* 鍒嗙被椤垫爣棰?*/
.page-title-wrap {
    width: 100%;
    background: linear-gradient(135deg, #2c4b9a 0%, #1a2f5a 100%);
    padding: 30px 0;
}
.page-title-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}
.page-title-inner h2 {
    font-size: 28px;
    font-weight: bold;
}
.page-title-inner p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

/* 鏂伴椈鍒楄〃椤?(cate.html) */
.news-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid #2c4b9a;
}
.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.news-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.news-item h3 a {
    color: #333;
    text-decoration: none;
}
.news-item h3 a:hover {
    color: #2c4b9a;
}
.news-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.news-summary {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
}
.news-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.news-tags span {
    background: #f0f2f5;
    color: #666;
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 20px;
}
.read-more {
    display: inline-block;
    margin-top: 8px;
    color: #2c4b9a;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}
.read-more i {
    margin-left: 5px;
    transition: margin-left 0.2s;
}
.read-more:hover i {
    margin-left: 10px;
}

/* 鍒嗛〉 (cate.html) */
.pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.pagination-wrap a,
.pagination-wrap span {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.pagination-wrap a:hover {
    background: #2c4b9a;
    color: white;
    border-color: #2c4b9a;
}
.pagination-wrap .active {
    background: #2c4b9a;
    color: white;
    border-color: #2c4b9a;
}

/* -------- 鏂囩珷璇︽儏椤?(news.html) -------- */
.content-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* 鏂囩珷涓讳綋 */
.article-main {
    flex: 1;
    min-width: 300px;
}
.article-header {
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.article-header h1 {
    font-size: 32px;
    color: #2c4b9a;
    line-height: 1.4;
    margin-bottom: 15px;
}
.article-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: #999;
    align-items: center;
    flex-wrap: wrap;
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-body {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}
.article-body p {
    margin-bottom: 18px;
}
.article-body h3 {
    font-size: 20px;
    color: #2c4b9a;
    margin-top: 25px;
    margin-bottom: 12px;
}
.article-body blockquote {
    border-left: 4px solid #2c4b9a;
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 20px 0;
    color: #555;
    font-style: italic;
}

.article-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.article-tags span {
    background: #f0f2f5;
    color: #666;
    font-size: 12px;
    padding: 3px 14px;
    border-radius: 20px;
}
.article-share {
    display: flex;
    gap: 10px;
    align-items: center;
}
.article-share span {
    font-size: 14px;
    color: #666;
}
.article-share a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}
.article-share a:hover {
    color: #2c4b9a;
}

/* 渚ц竟鏍?- 鐩稿叧鎺ㄨ崘 */
.sidebar {
    width: 320px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    height: fit-content;
}
.sidebar h3 {
    font-size: 18px;
    color: #2c4b9a;
    border-bottom: 2px solid #2c4b9a;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.sidebar ul li:last-child {
    border-bottom: none;
}
.sidebar ul li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s;
}
.sidebar ul li a:hover {
    color: #2c4b9a;
}
.sidebar ul li .s-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* 涓婁竴绡?/ 涓嬩竴绡?*/
.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    gap: 20px;
}
.article-nav a {
    flex: 1;
    display: block;
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    background: #f9f9f9;
    border-radius: 6px;
    transition: background 0.2s;
}
.article-nav a:hover {
    background: #eef1f5;
}
.article-nav .nav-label {
    font-size: 12px;
    color: #999;
    display: block;
}
.article-nav .nav-title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

/* -------- 搴曢儴淇℃伅 (index.htm mx-footer 浼樺厛) -------- */
.footer-wrap {
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    padding: 15px 0;
    margin-top: 20px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    padding: 0 20px;
}

/* 鎼滅储妗?*/
.search-box {
    display: flex;
    align-items: center;
}
.search-box input {
    padding: 8px 10px;
    border: 1px solid #ddd;
    outline: none;
    border-radius: 4px 0 0 4px;
}
.search-box button {
    padding: 8px 15px;
    background-color: #2c4b9a;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* mx-footer 鏍峰紡 (index.htm) */
.mx-footer {
    padding: 24px 0;
    background: #fff;
    color: #aaa;
}
.mx-footer a {
    color: #8a8a8a;
}
.mx-footer a:hover {
    color: var(--primary-color, #2c4b9a);
}
.mx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-copyright {
    text-align: center;
    color: #8a8a8a;
}
.footer-copyright .mx-f-item {
    margin-left: 16px;
}

/* 鍥炲埌椤堕儴鎸夐挳 */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(221, 85, 51, 0.78);
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 999;
}

/* -------- 鍝嶅簲寮?(index.htm 浼樺厛) -------- */
@media (max-width: 768px) {
    .navbar-inner {
        gap: 15px;
        flex-wrap: wrap;
        padding-left: 10px;
    }
    .banner-box {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 40px 20px;
    }
    .banner-left {
        margin-bottom: 30px;
        width: 100%;
    }
    .btn-open-account {
        width: 80%;
    }
    .banner-right {
        display: none;
    }
    /* 鎵嬫満绔敼涓哄崟鍒?*/
    .content-inner {
        grid-template-columns: 1fr;
    }
    .content-detail-inner {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .article-nav {
        flex-direction: column;
    }
    .news-item {
        padding: 20px;
    }
    .news-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}
