body {
    margin: 0;
    font-family: "微软雅黑", sans-serif;
    background-color: #f3f3f3;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.module {
    width: 30%;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.module:hover {
    transform: scale(1.05);
}

.top {
    padding: 20px;
}

.top .image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.middle {
    padding: 10px;
}

.middle h3 {
    font-size: 20px;
    color: #333;
}

.bottom {
    padding: 10px;
    background-color: #f9f9f9;
}

.bottom a {
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

.bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .module {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .module {
        width: 90%;
    }
}

/*标题*/

.container_title_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: 10rem;
}

.container_title_title {
    flex-grow: 1;
    text-align: center;
}

.container_title_title h1 {
    font-size: 30px;
    color: #333;
}

.container_title_button .container_title_btn img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .container_title_header {
        flex-direction: column;
        text-align: center;
    }
    .container_title_button {
        margin-top: 10px;
    }
}

/* 新增样式 */
#contact_us_box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 20px;
    align-content: flex-end;
    flex-wrap: nowrap;
}

#contact_us_box .module {
    width: 80%;  /* 改为宽度80% */
    margin-bottom: 20px;
    transition: transform 0.3s;
}

#contact_us_box .module:hover {
    transform: scale(1.05);
}

/* 内部结构变为左右布局 */
#contact_us_box .module-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
}

#contact_us_box .module-inner .image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

#contact_us_box .module-inner .info {
    flex-grow: 1;
    text-align: center;
}

#contact_us_box .module-inner .info h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}
