
a {
    text-decoration: none; /* 去除下划线 */
    color: inherit; /* 继承父元素的文本颜色，去除默认文本颜色 */
}


@media (min-width: 1200px) {
    .container {
        max-width: 75%;
    }
}


p{
    margin: 0;
}
.container {
    width: 75%;
    margin: auto;
}

h1 {
    font-size: 30px;
    margin: 64px 0 48px;
    font-weight: 800;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.market-title{
    width: 100%;
    height: 13rem;
    line-height: 13rem;
    color: black;
    background-color: #F5F5F5;
}

.header-breadcrumb{
    width: 100%;
    color: black;
    background-color: #0C2F4F;
}

.header-breadcrumb a{
    color: white;
}
/*contact*/
.contact-content h1, h2 {
    color: #333;
}
.contact-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-content input[type="text"],
.contact-content input[type="email"],
.contact-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-content button {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.contact-content button:hover {
    background-color: #0056b3;
}
.contact-content .grid {
    display: flex;
    gap: 20px;
}
.contact-content .grid > div {
    flex: 1;
}

/*solution*/

/*footer*/
.footer {
    width: 78%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: auto;
}

.footer .service-center {
    flex: 1 1 300px;
    background-color: white;

    padding: 20px;
    margin: 10px;

}

.footer .logo {
    width: 100px;
    height: auto;
}

.footer .latest-news, .latest-events, .headquarter {
    flex: 1 1 300px;
    background-color: white;

    padding: 20px;
    margin: 10px;
}

.footer h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer p span{
    font-weight: bold;
}
.footer a {
    color: #007BFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}