
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

.img {
    height: 100px;
    width: auto;
}


.highlight-item h3 {
    color: #003366;
    margin: 0 0 5px 0;
    font-size: 22px;
}

.highlight-item p {
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

.apply-btn {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s;
}

.apply-btn:hover {
    background: #004080;
}

.section {
    margin: 30px 0;
}

.section h2 {
    color: #003366;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    font-size: 22px;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.section p, .section ul {
    color: #444;
    line-height: 1.6;
    font-size: 16px;
}

.section ul {
    padding-left: 20px;
}

.section li {
    margin-bottom: 8px;
}

.quickLinks {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.quickLinks a {
    color: #0066cc;
    text-decoration: none;
}

.quickLinks a:hover {
    text-decoration: underline;
}

.loan-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.loan-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background-image: url('../images/bj.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 5px;
}
.loan-info {
    flex: 2;
    min-width: 300px;
    /*background-color: white;*/
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.loan-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1e88e5;
}
.loan-rate {
    font-size: 17px;
    color: #e53935;
    font-weight: bold;
    margin-bottom: 15px;
}
.loan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.meta-item {
    flex: 1;
    min-width: 150px;
}
.meta-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}
.meta-value {
    font-weight: bold;
}

.apply-btn {
    display: inline-block;
    background-color: #1e88e5;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.apply-btn:hover {
    background-color: #1565c0;
}