
.banner {
    width: 100%;
    height: 360px;
    position: relative;
}
.crumbs{
    font-size: 14px;
    position: absolute;
    width: 100%;
    bottom: 10px;
    color: white;
}
.crumbs a{
    color: white;
    text-decoration: none;
}
.banner > img {
    width: 1920px;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    background: #fff;
    margin-top: -50px; /* Overlap banner if needed, or just margin */
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 30px 0;
    margin-bottom: 30px;
}

.contact-card {
    flex: 1;
    display: flex;
    flex-direction: row; /* Change from column to row */
    justify-content: center; /* Center the content */
    border-right: 1px solid #eee;
    text-align: left; /* Align text left */
    padding: 20px; /* Add some padding */
}

.contact-card:last-child {
    border-right: none;
}

.contact-icon-img {
    width: 32px;
    height: 32px;
    margin-bottom: 0; /* Remove bottom margin */
    margin-right: 15px; /* Add right margin for spacing */
}

.contact-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.highlight {
    font-size: 20px;
    color: #FF6600;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 30px;
}

.highlight-text {
    font-size: 16px;
    color: #FF6600;
    font-weight: bold;
    margin-top: 30px;
}

.sub-text {
    font-size: 12px;
    color: #999;
}

.qr-code img {
    width: 80px;
    height: 80px;
}

/* Service Content Box */
.service-content-box {
    display: flex;
    background-color: #fff;
    min-height: 500px;
    margin-bottom: 40px;
}

/* Sidebar */
.service-sidebar {
    width: 200px;
    background-color: #f8f9fa;
    padding-top: 20px;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
}

.service-sidebar li {
    width: 100%;
}

.service-sidebar li a {
    display: block;
    padding: 15px 30px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.service-sidebar li.active a,
.service-sidebar li a:hover {
    background-color: #fff;
    color: #3B83F2;
    border-left: 4px solid #3B83F2;
    font-weight: bold;
}

/* List Content */
.service-list {
    flex: 1;
    padding: 20px 40px;
    background-color: #fff;
}

.notice-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.notice-info:hover {
    background-color: #fafafa;
}

.notice-title {
    font-size: 16px;
    color: #333;
    max-width: 600px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}

.notice-title:before {
    content: "•";
    color: #3B83F2;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.notice-meta {
    display: flex;
    align-items: center;
}

.notice-date {
    color: #999;
    margin-right: 20px;
}

.download-icon svg {
    cursor: pointer;
}
