/*全局样式*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}


/*顶部横幅图片*/
.contact-top {
    width: 100%;
    height: 450px;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)),
        url('/images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.contact-top .top-title {
    color: white;
    font-size: 50px;
    margin-left: 200px;
}



.container-outer {
    width: 100%;
    padding-bottom: 80px;
}

.container-wrapper {
    width: 80%;
    max-width: 1200px;;
    margin: 0 auto;
}


.item-content-style1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.item-content-style1:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.container .title{
    font-size: 30px;
    padding:50px 0;
}

.item-content-style1 img {
    object-fit: cover;
    width: 100%;
}

.address-info{
    font-size: 20px;
    padding: 60px 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.address-info img{
    width: 20px;
    height: 100%;
}