.servicesMain {
    position: relative;
    width: 100%;
    min-height: 100%;
    /* background-image: url('../img/blankBg.png');
    background-size: 100% 100%;
    background-repeat: repeat-y;
    background-position: center center; */
}

.main {
    position: relative;
    z-index: 1;
    padding-top: 100px; /* 为固定header留出空间 */
}

.topBgWrap {
    width: 100%;
}

.topBgWrap .topBgImg {
    width: 100%;
    object-fit: cover;
}

.topBgWrap .topLine {
    width: 100%;
    height: 24px;
    background-image: url('../img/topLine.png');
    background-size: 100% 24px;
    background-repeat: repeat-x;
    background-position: center center;
    margin-top: -6px;
    object-fit: cover;
}


/* tabs */
.tabsWrap {
    width: 1400px;
    margin-bottom: 90px;
    margin: 0 auto;
}

.tabsWrap .tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1160px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.tabsWrap .tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.tabsWrap .tabs .tab .tabImg {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 4px;
}

.tabsWrap .tabs .tab span {
    font-family: "XinYiJiXiangSong";
    font-weight: 400;
    font-size: 36px;
    color: #000000;
    letter-spacing: 3px;
}

.tabsWrap .tabs .tab.active span {
    color: #9E5B20;
}

.tabContent {
    width: 1400px;
    margin: 0 auto;
    margin-bottom: 94px;
}

.tabContent .tabContentItem {
    display: none;
}

.tabContent .tabContentItem.active {
    display: block;
}


/* 常见问题 */
.tab1Wrap {
    padding: 30px;
    background: #fff;
    border: 1px solid #9E5B20;
}

.tab1Wrap .qWrap {
    width: 40px;
    height: 40px;
    background: #9E5B20;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab1Wrap .qWrap span {
    font-family: "AlibabaPuHuiTi-3-65-Medium";
    font-size: 28px;
    color: #FFFFFF;
    line-height: 32px;
}

.tab1Wrap .aWrap {
    width: 40px;
    height: 40px;
    background: #E9DBCC;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab1Wrap .aWrap span {
    font-family: "AlibabaPuHuiTi_3_65_Medium";
    font-size: 28px;
    color: #9E5B20;
    line-height: 32px;
}

.tab1Wrap .qaItem {}

.qaItem .qaTitle {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.qaItem .qaTitle .title {
    font-family: "AlibabaPuHuiTi_3_65_Medium";
    font-size: 32px;
    color: #000000;
}

.qaItem .qaInfo {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 30px;
}

.qaItem .qaInfo .rightWrap {
    flex: 1;
}

.qaItem .qaInfo .rightWrap p {
    font-family: "AlibabaPuHuiTi_3_55_Regular";
    font-size: 24px;
    color: #666666;
}

.qaItemBotBor {
    border-bottom: 1px dashed #C57A4F;
}

/* 游客须知 */
.tab2Wrap {
    padding: 30px;
    background: #fff;
    border: 1px solid #9E5B20;
}


.tab2Wrap .tab2Info .tab2Title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tab2Wrap .tab2Info .tab2Title .tab2Tag {
    width: 14px;
    height: 14px;
    background: #9E5B20;
    transform: rotate(45deg);
}

.tab2Wrap .tab2Info .tab2Title .title {
    color: #9E5B20;
    font-size: 24px;
    font-family: "AlibabaPuHuiTi-3-55-Regular";
}

.tab2Wrap .tab2Info p {
    color: #666666;
    font-size: 22px;
    font-family: "AlibabaPuHuiTi-3-55-Regular";
    margin-bottom: 14px;
}

/* 意见反馈 */
.tab3Wrap {
    padding: 30px;
    background: #fff;
    border: 1px solid #9E5B20;
}

/* 反馈表单样式 */
.feedbackForm {}

.formTitle {
    text-align: center;
    margin-bottom: 40px;
}

.formTitle h2 {
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    font-size: 32px;
    color: #FF0000;
    margin-bottom: 8px;
    font-weight: bold;
}

.formTitle span {
    font-family: 'AlibabaPuHuiTi-3-55-Regular';
    font-size: 24px;
    color: #333333;
}

.feedbackFormContent {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.formSection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.formSection label {
    font-family: 'AlibabaPuHuiTi-3-65-Medium';
    font-size: 20px;
    color: #666666;
    font-weight: 500;
}

.required::before {
    content: '*';
    color: #FF0000;
}

.feedbackTextarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 1px solid #9D9D9D;
    border-radius: 8px;
    font-family: 'AlibabaPuHuiTi-3-55-Regular';
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;

}

.feedbackTextarea:focus {
    border-color: #9E5B20;
}

.feedbackTextarea::placeholder {
    color: #CCCCCC;
}

.formRow {
    display: flex;
    gap: 30px;
}

.formField {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.formField label {
    width: 110px;
    font-family: 'AlibabaPuHuiTi-3-65-Medium';
    font-size: 20px;
    color: #666666;
    font-weight: 500;
}

.formInput {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-family: 'AlibabaPuHuiTi-3-55-Regular';
    font-size: 16px;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease;
}

.formInput:focus {
    border-color: #9E5B20;
}

.formInput::placeholder {
    color: #999999;
}

.formSubmit {
    text-align: center;
    margin-top: 20px;
}

.submitBtn {
    width: 200px;
    height: 56px;
    background: #9E5B20;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-family: 'AlibabaPuHuiTi-3-65-Medium';
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submitBtn:hover {
    background: #8B4A1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 91, 32, 0.3);
}

.submitBtn:active {
    transform: translateY(0);
}

/* 服务评价 */
.tab4Wrap {
    padding: 30px;
    background: #fff;
    border: 1px solid #9E5B20;
}

.tab4Wrap .tab4Items {}

.tab4Wrap .tab4Item {
    padding-bottom: 20px;
    border-bottom: 1px dashed #C57A4F;
    margin-bottom: 26px;
}

.tab4Wrap .tab4Item .titleWrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.tab4Wrap .tab4Item .titleWrap .leftItem {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab4Wrap .tab4Item .titleWrap .leftItem .avatarImg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.tab4Wrap .tab4Item .titleWrap .leftItem span {
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 28px;
    color: #000000;
    line-height: 40px;
}

.tab4Wrap .tab4Item .titleWrap .timer {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 24px;
    color: #999999;
    line-height: 24px;
}

.tab4Wrap .tab4Item .content p {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: #666666;
}

.tab4Wrap .ratingTitle {
    display: flex;
    align-items: center;
}

.tab4Wrap .ratingTitle span {
    font-family: "AlibabaPuHuiTi_3_65_Medium";
    font-size: 28px;
    color: #9E5B20;
    line-height: 40px;
}

.tab4Wrap .ratingTitle .tips {
    font-family: AlibabaPuHuiTi_3_55_Regular;
    font-size: 20px;
    color: #999999;
    line-height: 28px;
}

.tab4Wrap .formSubmit {
    margin-top: 0;
    text-align: right;
}

/* 失物招领 */
.tab5Wrap {
    padding: 30px;
    background: #fff;
    border: 1px solid #9E5B20;
}


.tab5Wrap .infoItemWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tab5Wrap .infoItemWrap .infoItem {
    flex: 1;
}

.tab5Wrap .infoItemWrap .infoItem .infoTitle {
    font-family: "AlibabaPuHuiTi_3_55_Regular";
    font-size: 24px;
    color: #666666;
    line-height: 33px;
    margin-bottom: 10px;
}

.tab5Wrap .infoItemWrap .infoItem .info {
    font-family: "AlibabaPuHuiTi_3_55_Regular";
    font-size: 26px;
    color: #9E5B20;
    line-height: 40px;
    margin-bottom: 26px;
}

.tab5Wrap .infoItemWrap .infoMap {
    width: 830px;
    height: 350px;
    object-fit: cover;
}

@media screen and (max-width: 1400px) {
    .tabsWrap {
        width: 1280px;
    }

    .tabsWrap .tabs {
        width: 900px;
        margin-bottom: 60px;
    }

    .tabsWrap .tabs .tab .tabImg {
        width: 90px;
        height: 90px;

    }

    .tabContent {
        width: 1200px;
    }

    .tab5Wrap .infoItemWrap .infoMap {
        width: 700px;
        height: 294px;
    }

    .tab5Wrap .infoItemWrap .infoItem .info {
        font-size: 22px;
    }

    .tabsWrap .tabs .tab span {
        font-size: 24px;
    }
}
/* 隐藏全局滚动条 - Webkit浏览器 */
::-webkit-scrollbar {
    display: none;
}

/* 隐藏全局滚动条 - Firefox和IE */
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
