

.image_shadow{
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}
.flex-col {
    display: flex;
    flex-direction: column;
}



/* 常见问题区域 */
.faq-section {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    padding-top: 10px;
}

.faq-container {
    width: 100%;
    height: auto;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1200px;/*上 1vw　→　左右 2vw　→　下 0。*/

}

.faq-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.faq-title {
    font-size: 46px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.faq-grid {
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: wrap;*/
    display: grid;
    grid-template-columns: 1fr 1fr; /* 两列等宽 */
    gap: 2vw;                       /* 列间距 */
    margin: 1vw 2vw 0;              /* 上 1vw 左右 2vw 下 0 */
}
.faq-content{
    flex: 1 1 auto;         /* 占满剩余宽度 */
    min-width: 0;           /* 防止文字撑破布局 */
}

.faq-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.faq-icon img {
    width: 20px;
    height: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
}

.faq-answer {
    font-size: 16px;
    display: block;
    margin-top: 10px;
}



/* 联系表单区域 */
.contact-form {
    background-image: url('/v2/img/event_ireland/sgk-2@2x.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.form-field {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0px;
    display: flex;
    align-items: center;
    flex: 1;
}

.field-label {
    background-color: #408267;
    color: #333333;
    font-weight: 500;
    border-radius: 50px;
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    padding: 8px 15px;
}

.label-text {
    width: 49px;
    height: 15px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 10px;
    color: #ffffff;
    line-height: 15px;
    text-align: center;
    font-style: normal;
}

.form-field input {
    flex: 1;
    height: 15px;
    color: #333333;
    font-size: 10px;
    font-family: PingFangSC-Regular;
    text-align: left;
    line-height: 15px;
    margin: 0;
    border: none;
    background: transparent;
    outline: none;
    min-width: 0;
}

.submit-btn {
    background-color: #FFC54E;
    border-radius: 20px;
    height: auto;
    flex: 1;
    margin: 0;
    display: block;
    padding: 15px 25px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-text {
    color: #333;
    font-size: 18px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 15px;
    display: block;
    text-align: center;
    width: 100%;
}