/* 供应页面大图区域样式 */
.head-banner {
    width: 100%;
    height: 68vh;
    position: relative;
    overflow: hidden;
}

.head-banner-logo {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.content {
    display: flex;
    flex-flow: row nowrap;
    background-color: white;
    margin: 0 auto;
    padding: 0;
    width: 1024px;
}

.text-module {
    width: 100%;
    height: 100%;
    max-width: 1024px;
    margin: 20px auto;
    padding: 20px;
    color: #666;
   
}

.content .map {
    flex: 0 0 68%;
    padding: 20px;
    height: 100%;
    position: relative;
}

/* 地图交互点样式 */
.map-point {
    width: 12px;
    height: 12px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.map-point:hover {
    transform: scale(1.2);
}

.map-point.active {
    background-color: #ff0000;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.3);
}

.content .map img {
    width: 100%;
    height: 100%;
}

.content .textTips {
    margin: 20px;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.content .textTips .tips-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.content .textTips .tips-content {
    font-size: 12px;
    line-height: 1.6;
}

.head-banner-link {
    width: inherit;
}

.head-banner-title {
    text-align: center;
    padding: 20px;
}

.head-banner-bigImg {
    width: 100%;
    min-height: 68vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    outline: none;
    margin-bottom: -1px;
    /* 消除可能的间隙 */
}

.head-banner-bigImg h4 {
    color: white;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 按钮区域样式 */
.head-banner-btns {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.banner-btn {
    padding: 2px 23px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 300;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1;
    /* 减小行高、内边距和字体大小 */
}

.banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* 激活状态样式 */
.banner-btn.active-btn {
    background-color: white;
    color: #333;
    border-color: white;
    font-weight: 400;
}

.banner-btn.active-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

/* 按钮内链接样式，保持与按钮相同的外观 */
.banner-btn a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: inherit;
}

.banner-btn a:visited {
    color: inherit;
    text-decoration: none;
}

.banner-btn a:hover {
    text-decoration: none;
}

.banner-btn a:active {
    text-decoration: none;
}

/* 图片模块样式 */
.img-module {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1024px;
    margin: 20px auto;
}


.img-module img {
    max-width: 1024px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 小于1024px时全屏显示 */
@media (max-width: 1024px) {
    .img-module img {
        max-width: 100%;
    }
}

@media(max-width:1024px) {
    .content {
        display: flex;
        flex-flow: column nowrap;
        background-color: white;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .content .map {
        padding: 20px;
        flex: 0 0 100%;
        height: 100%;
    }

    .content .textTips {
        padding: 20px;
    }

    .content .textTips .tips-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .content .textTips .tips-content {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {

    .head-banner-logo img {
        width: 30% !important;
    }

    .head-banner-btns {
        gap: 5px;
        padding: 15px 10px;
    }

    .banner-btn {
        padding: 2px 5px;
        font-size: 10px;
        border-radius: 16px;
        line-height: 1;
    }
}