/*介绍*/
.introduce-container {
    width: 100%;
    /*height: 1000px;*/
    height: auto;
    background-color: #ffffff;
}

.introduce-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    max-width: 1600px;
    /*height: 100%;*/
    height: auto;
    margin: 0 auto;
    padding: 50px 0;
    /*border: 1px solid #f1132d;*/
}

.title-image {
    text-align: left;
    margin-bottom: 20px;
}

.title-image img {
    /* 标题图片样式 */
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 211px;
    height: 70px;
}


.introduce-main {
    display: flex;
    /*align-items: center;*/
    /*justify-content: center;*/
    gap: 30px; /* 左右两部分间距 */
}

.introduce-text {
    flex: 1; /* 左侧文字占据剩余空间 */
    /*padding: 50px;*/
    /*margin-top: 50px;*/
    margin-right: 20px;
}

.introduce-pic {
    /*flex: 0 0 40%; !* 右侧图片占据40%宽度 *!*/
    /*/300px;*/
    /*margin-right: -150px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.introduce-pic img {
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 1126px;
    height: 718px;
}

/**/

.join-container {
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #ffffff;
}

.join-content {
    display: flex;
    /*flex-direction: column;*/
    align-items: center;
    /*justify-content: center;*/
    /*justify-content: space-between;*/
    width: 100%;
    max-width: 1600px;
    /*height: 100%;*/
    margin: 0 auto;
    gap: 20px;
    padding: 40px 0;
    /*border: 1px solid #f1132d;*/
}


.join-left {
    flex: 1;
    /*background-color: #f9f9f9;*/
    /*border-radius: 8px;*/
    padding: 20px;
    display: flex;
    flex-direction: column;

}

.article-item {
    margin-bottom: 50px;
    margin-top: 50px;

}

.article-item h3 {
    font-size: 22px;
    color: #5e91a4;
    margin-bottom: 10px;
}

.article-item p {
    font-size: 16px;
    color: #666;
    line-height: 2.0;
}

.join-right {
    flex: 1;
    /*border-radius: 8px;*/
    /*overflow: hidden;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    display: flex;
}

.join-right img {
    width: 1125px;
    height: 715px;
    object-fit: cover;

    margin-right: -150px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/**/

.job-container {
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #f5f9fa;
}

.job-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    /*justify-content: space-between;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    gap: 20px;
    padding: 40px 0;
    /*border: 1px solid #f1132d;*/
}

.title-image-job {
    text-align: left;
    /*margin-bottom: 20px;*/
    padding: 30px 0;
}

.title-image-job img {
    /* 标题图片样式 */
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 425px;
    height: 70px;
}


.job-main {
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    align-items: stretch;
    justify-content: left;
    /*justify-content: space-between;*/
    gap: 20px;
    padding: 40px 0;
    max-width: 1600px;
    margin: 0 auto;

}

.job-item {
    /*flex: 1;*/
    flex: 1 1 calc(33.333% - 20px); /* 每个 item 占据 1/3 宽度，减去间距 */
    max-width: calc(33.333% - 20px);
    min-width: 510px;
    box-sizing: border-box;
    /*max-width: 380px;*/
    /*width: 400px;*/
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.job-item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.job-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-item span {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}



.apply-btn {
    background-color: #5e91a4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
}

.apply-btn:hover {
    background-color: #357abd;
}


/**/
.title-image-contact {
    text-align: left;
    margin-bottom: 20px;
}

.title-image-contact img {
    /* 标题图片样式 */
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 423px;
    height: 70px;
}

.contact-container{
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #ffffff;
}

.contact-content{
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    /*justify-content: space-between;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    gap: 20px;
    padding: 20px 0;
    /*border: 1px solid #f1132d;*/
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
    /*border-bottom: 1px solid #eee;*/
}

.contact-item {
    flex: 1;
    min-width: 200px;
    text-align: left;
    padding: 20px;
    /*background-color: #f9f9f9;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    border-left: 1px solid #ccc; /* 添加左边框 */
}
.contact-item:first-child {
    border-left: none; /* 第一个元素不显示左边框 */
}


.contact-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin: 0 auto 10px;
    border-radius: 50%;
}

.contact-item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 14px;
    color: #666;
}

.contact-map {
    margin-top: 40px;
    /*border-radius: 8px;*/
    overflow: hidden;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    margin-bottom: 40px;
}


/**/
.message-container{
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #f5f9fa;
}

.message-content{
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    /*justify-content: space-between;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    gap: 20px;
    padding: 40px 0;
    /*border: 1px solid #f1132d;*/
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    /*border-radius: 4px;*/
    font-size: 14px;
}

.form-textarea textarea {
    width: 100%;
    height: 250px;
    padding: 12px;
    border: 1px solid #ddd;
    /*border-radius: 4px;*/
    font-size: 14px;
    resize: vertical;
}

.form-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn-submit, .btn-reset {
    padding: 12px 30px;
    border: none;
    /*border-radius: 4px;*/
    cursor: pointer;
    font-size: 14px;
}

.btn-submit {
    background-color: #5e91a4;
    color: white;
}

.btn-reset {
    background-color: #f5f9fa;
    color: #666;
    /*border: 1px solid #ddd;*/
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}