body {
    margin: 0 auto;
    font-family: "微软雅黑", sans-serif;
    background-color: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.module {
    width: 30%;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    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;
    }
}

/* 建议*/
.container_title_suggestion {
    width: 80%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.container_title_input {
    margin-bottom: 20px;
}

.container_title_input label {
    font-size: 16px;
    color: #333;
}

.container_title_textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 1.5rem;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.container_title_captcha {
    margin-bottom: 20px;
}

.container_title_captcha label {
    font-size: 16px;
    color: #333;
}

.container_title_captcha_box {
    display: flex;
    align-items: center;
}

.container_title_input_field {
    flex-grow: 1;
    padding: 10px;
    margin-top: 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.container_title_captcha_image {
    margin-left: 10px;
    cursor: pointer;
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.container_title_submit {
    text-align: center;
}

.container_title_submit_button {
    padding: 10px 20px;
    font-size: 2rem;
    font-weight: bold;
    background-color: #ffc643;
    color: white;
    border: none;
    width: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.container_title_submit_button:hover {
    background-color: #ffb200;
}

@media (max-width: 768px) {
    .container_title_suggestion {
        width: 90%;
    }

    .container_title_input label,
    .container_title_captcha label {
        font-size: 14px;
    }

    .container_title_textarea,
    .container_title_input_field {
        font-size: 14px;
    }

    .container_title_submit_button {
        font-size: 16px;
    }
}