.content{
    background: #fff;
}
/*contact-top*/
.contact-top{
    width: 100%;
    /*height: 74vh;*/
    position: relative;
    overflow: hidden;
}
.location{
    /*position: absolute;*/
    /*left: 0;*/
    position: relative;
    margin-top: 180px;
    width: 100%;
    z-index: 9;
}
.location a{
    color: #CCC;
}

.location a:nth-child(n + 2)::before {
    background: url(../images/location-j.svg) no-repeat;
    content: "";
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 10px;
    background-size: 100% 100%;
}
.contact-top .index-banner{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9;
}

 .swiper-slide-img-bg {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateZ(0) scale(1);
    transition: all 2.5s ease-in-out;
}
.index-banner .swiper-slide-active .swiper-slide-img-bg {
    transform: translateZ(0) scale(1);
}

.contact-top .index-banner-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 8;
}

.index-banner .swiper-slide-banText{
    position: relative;
    /*left: 0;*/
    /*top: 0;*/
    width: 100%;
    height: 100%;
    z-index: 9;
}

.swiper-slide-banText>.my-container {
    height: 100%;
}

.index-banner .swiper-slide-banText-view{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 200px;

}
.swiper-slide-banText-left-text{
    color: #FFF;
    font-family: "Pontano Sans";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.swiper-slide-banText-left-office{
    color: #FFF;
    font-family: "Pontano Sans";
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    max-width: 320px;
}
.swiper-slide-banText-left-office-title{
    margin-bottom: 40px;
}

@media screen and (max-width: 1366px) {
     .swiper-slide-banText-view{
        padding-right: 50px;
    }

}
@media screen and (max-width: 991px) {
    .swiper-slide-banText-view{
        padding-right: 70px;
    }

}

@media screen and (max-width: 767px) {
    .location{
        display: none;
    }
    .index-banner .swiper-slide-banText-view{
        padding-top: 100px;
        padding-right: 0;
    }
    .swiper-slide-banText-view{
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 20px;
    }
    .swiper-slide-banText-left-office-title{
        margin-bottom: 10px;
    }
}
/*contact-top*/


/*form*/
.feedback-content{
    margin-top: -130px;
    position: relative;
    z-index: 9;
}
.feedback-form{
    display: flex;
    flex-direction: row;
    background: #ffffff;
    padding:80px 100px;
    gap: 157px;
}
.feedback-form-content{
    display: flex;
    flex-direction: column;
}

.form-container {
    margin-top: 70px;
    width: 100%;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 20px;
}

label {
    color: #333;
    margin-bottom: 20px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #eee;
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;
}

input:focus{
    border: 1px solid #eee;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-view{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.submit-btn {
    background-color: #F4B915;
    color: #333;
    border: none;
    padding: 16px 39px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #F4B915;
}

/* 响应式设计 */
@media (max-width:991px) {
    .feedback-form{
        flex-direction: column;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .feedback-form{
        padding: 10px;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-group {
        width: 100%;
    }
}



