* {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1vw;
}

.container {
    width: 100%;
    text-align: center;
}


.flexRowCenter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flexColumnCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flexColumnContentCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flexRow{
    display: flex;
    flex-direction: row;
}
.flexColumn{
    display: flex;
    flex-direction: column;
}
.justify-space-between{
    justify-content: space-between;
}
.align-flex-start{
    align-items: flex-start;
}
.align-flex-center{
    align-items: center;
}
.mt-5{
    margin-top: 0.5vw;
}
.mt-10{
    margin-top: 1vw;
}
.mt-18{
    margin-top: 1.8vw;
}
.mt-26{
    margin-top: 2.6vw;
}
.mt-31{
    margin-top: 3.1vw;
}
.mt-70{
    margin-top: 7vw;
}
.mb-52{
    margin-bottom: 5.2vw;
}
.mb-63{
    margin-bottom: 6.3vw;
}
.mr-52{
    margin-right: 5.2vw;
}
.mb-40{
    margin-bottom: 4vw;  
}
.ml-14{
    margin-left: 1.4vw;
}
.mr-14{
    margin-right: 1.4vw;
}


.indented-paragraphs p {
    text-indent: 2em;
    /* 缩进两个字符宽度 */
    margin: 0;
    /* 移除默认外边距 */
    color: #6D6D6D;
    font-size: 0.9vw;
    line-height: 1.7vw;
}

.inline {
    display: inline-block;
}
/* 通用颜色样式 */
.color-black{
    color: #000;
}
.color-green{
    color: #05C1A1;
}
.bg-gray{
    background-color: #F8F8F8;
}
/* 导航栏样式 */
.nav-container {
    background: #fff;
    display: flex;
    width: 100%;
    height: 4.2vw;
    flex-direction: row;
    align-items: center;
}

.nav-left-logo {
    margin-left: 10vw;
    display: flex;
    width: 10vw;
    height: 2.4vw;
}

nav {
    display: flex;
    justify-content: center;
    width: 30vw;
    height: 4.2vw;
    overflow: hidden;
    margin-left: 20vw;
}

.nav-list {
    display: flex;
    list-style: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 4.2vw;
}

.nav-link {
    color: #000;
    text-decoration: none;
    display: inline-block;
    line-height: 4.2vw;
    height: 4.2vw;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* 下标效果 - 使用伪元素创建 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 0.16vw;
    background: #05C1A1;
    border-radius: 0.1vw;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

/* 悬停效果 */
.nav-link:hover {
    color: #05C1A1;
    transform: translateY(-0.15vw);
}

.nav-link:hover::after {
    width: 70%;
}

/* 活动状态效果 */
.nav-item.active .nav-link {
    color: #05C1A1;
    font-weight: 600;
}

.nav-item.active .nav-link::after {
    width: 100%;
    background: #05C1A1;
    height: 0.2vw;
}

.nav-right-container {
    margin-left: 9.2vw;
    height: 4.2vw;
    width: 9vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-right-container img {
    width: 2.1vw;
    height: 2.1vw;
}

.nav-right-container a{
    height: 4.2vw;
    line-height: 4.2vw;
    text-decoration: none;
    color: #05C1A1;
}

/* 页面内容区域 */
.page-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.page-content.active {
    display: block;
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 内容展示区 */
.content-section {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: left;
    width: 100%;
}

/* 内容区域banner */
.section-banner {
    width: 100%;
    height: 37.5vw;
    position: relative;
}

.section-banner .banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-title-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0;
    text-shadow: 1px 1px 1px rgba(159,159,159,0.73);
}

.banner-title-wrap h1{
    line-height: 7.8vw;
    font-size: 5.2vw;
}
.banner-title-wrap h2{
    line-height: 5.7vw;
    font-size: 3.125vw;
}
.banner-title-wrap h3{
    line-height: 5.7vw;
    font-size: 3.125vw;
}
.banner-title-wrap span{
    line-height: 4.2vw;
    font-size: 1.6vw;
}

.banner-footer-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 93%);
    width: 80vw;
    height: 8.7vw;
    z-index: 2;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 1.25vw;
    border: 1px solid #E9E9E9;
    box-shadow: 0.2vw 0.2vw 0.8vw 0.1vw rgba(222, 222, 222, 0.16);
    margin-bottom: 2vw;
}

.banner-footer-item-wrap {
    width: 26vw;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.banner-footer-left-wrap {
    width: 5.2vw;
    height: 5.2vw;
    overflow: hidden;
}

.banner-footer-left-wrap img {
    width: 5.2vw;
    height: 5.2vw;
}

.banner-footer-right-wrap {
    padding: 1.6vw 0.7vw;
    width: 18vw;
    height: 8.7vw;
    color: #3F4243;
    display: flex;
    flex-direction: column;
}

.banner-footer-right-title {
    margin-top: 0.8vw;
    height: 2.5vw;
    line-height: 2.5vw;
    font-size: 1.1vw;
}

.banner-footer-right-subtitle {
    height: 2.2vw;
    line-height: 2.2vw;
    font-size: 0.8vw;
    color: #6E6E6E;
}

/* 袋小保banner样式 */
#bao-banner-title-wrap{
    top: 20%;
    left: 9%;
    transform: translate(0%, 0%);
    text-align: left;
}
.bannerfooter-bao-item-wrap {
    height: 100%;
    width: 20vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.bannerfooter-bao-item-wrap #banner-logo {
    width: 4.6vw;
    height: 4.6vw;
}

.bannerfooter-bao-item-wrap .seg-item .title{
    font-size: 3.125vw;
    font-weight: bold;
}
.bannerfooter-bao-item-wrap .seg-item .title span{
    font-size: 1.04vw;
}

.right-separator {
    margin-top: 2.1vw;
    width: 1px;
    height: 4.2vw;
    background-color: #18DBB3;
    display: block;
}

/* 内容区域-容器 */
.section-ctx {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 主标题部分 */
.section-title-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 3.2vw;
    align-items: center;
    justify-content: center;
}

.section-title {
    color: #3F4243;
    font-size: 2.1vw;
    line-height: 3.65vw;
    text-align: center;
    font-weight: bold;
    height: 3.65vw;
}

.section-line {
    width: 7vw;
    background-color: #05C1A1;
    height: 2px;
    border-radius: 2px;
}

.section-subtitle {
    color: #6D6D6D;
    font-size: 1.2vw;
    margin: 0.8vw 0;
    height: 2.7vw;
    line-height: 2.7vw;
}

/* 副标题-第二部分 */
.section-second-wrap {
    font-size: 1.7vw;
    font-weight: 400;
    margin: 3.2vw 0;
    text-align: center;
    color: #3F4243;
}

.section-second-seg-show-wrap {
    margin-top: 4.1vw;
    height: 5.5vw;
    display: flex;
    flex-direction: row;
    padding: 0 18vw;
    justify-content: center;
    align-items: center;
}

.seg-item {
    margin: 0 1.8vw;
    height: 100%;
    text-align: center;
}

.seg-item .title {
    font-size: 2.5vw;
    height: 3.5vw;
    line-height: 3.5vw;
    letter-spacing: 0.05vw;
}
.seg-item .title span{
    font-size: 1vw;
}

.seg-item .title::after {
    font-size: 0.8vw;
}

.seg-item .subtitle {
    color: #6D6D6D;
    font-size: 0.9vw;
    height: 2vw;
    line-height: 2vw;
}



/* 四宫格图片wrap */
.section-grid-wrap {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    padding: 0 17vw;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.section-grid-item-wrap {
    display: flex;
    flex-direction: column;
    width: 30.3vw;
    min-height: 22.1vw;
    margin: 0.7vw;
    background: #FFFFFF;
    box-shadow: 0.2vw 0.2vw 0.8vw 0.1vw rgba(222, 222, 222, 0.16);
    border-radius: 1.2vw;
    border: 1px solid #E9E9E9;
    padding: 0 2.1vw;
    transition: all 0.3s ease;
}

.section-grid-item-wrap:hover {
    transform: translateY(-0.3vw);
}

.grid-flag {
    margin-top: 2.1vw;
    width: 1.9vw;
    height: 0.4vw;
    background-color: #05C1A1;
}

.grid-title {
    font-size: 1.5vw;
    color: #6D6D6D;
    height: 2.7vw;
    margin-top: 0.4vw;
    line-height: 2.7vw;
}

.grid-line {
    height: 1px;
    background-color: #E2E5EC;
    margin: 0.3vw 0;
}

.grid-desc {
    margin-top: 0.3vw;
    color: #AAAAAA;
    font-size: 0.85vw;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10; /* 显示2行文字 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.grid-ctx {
    height: 11.1vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.grid-ctx .offset_x {
    width: 100%;
    height: 100%;
}

.grid-ctx .grid-ctx-item {
    width: 6.7vw;
    height: 8.8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 3.3vw;
}

.grid-ctx-item .icon {
    width: 6.7vw;
    height: 6.7vw;
}

.home-liuliang-img{
    width: 22.3vw;
    height: 10.2vw;
}
.grid-ctx-item .logo-name {
    width: 6.7vw;
    height: 2.1vw;
    line-height: 2.1vw;
    font-family: 0.9vw;
    text-align: center;
}

.ctx-biglogo {
    margin-top: 3.5vw;
    width: 61vw;
    height: 39.5vw;
}

.ctx-biglogo2{
    margin-top: 5.2vw;
    width: 60vw;
    height: 44.7vw;
}
.ctx-sub-logos-wrap {
    padding: 0 15.6vw;
    margin-top: 4vw;
    width: 100%;
    height: 13.2vw;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.sub-logo-item {
    width: 13.4vw;
    height: 13.2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.sub-logo-item .sub-logo {
    width: 4.8vw;
    height: 4.8vw;
}

.sub-logo-item .sub-logo-title {
    height: 4.3vw;
    font-size: 1.56vw;
    line-height: 4.3vw;
    font-weight: 100;
}

.section-sub-ctx {
    margin-top: 3.1vw;
    height: 27.8vw;
    width: 62.5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.sub-ctx-left-wrap {
    position: relative;
    width: 31.25vw;
    height: 21.6vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.sub-ctx-left-wrap-img {
   width: 8.3vw ;
   height: 21.6vw; 
}

.sub-ctx-left-img {
    position: relative;
    width: 8.3vw;
    height: 21.6vw;
}

.sub-ctx-left-textlist-wrap {
    position: relative;
    margin-left: 2.8vw;
    display: flex;
    flex-direction: column;
    width: 14.8vw;
    height: 21.6vw;
}

.sub-ctx-left-textlist-item {
    height: 4vw;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.textlist-item-icon {
    width: 1.9vw;
    height: 1.9vw;
    margin-right: 0.5vw;
}

.textlist-item-title {
    height: 4vw;
    line-height: 4vw;
    font-size: 0.9vw;
    color: #6D6D6D;
}

.sub-ctx-right-wrap {
    position: relative;
    width: 31.25vw;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 2vw;
}

/* 首页-袋小保设备-右侧文字wrap */
#home_device_right_wrap{
    height: 21.6vw;
}
#home_device_right_wrap .grid-flag{
    margin-top: 0;
}
/* 袋小保-限塑-右侧文字wrap */
#bao-xiansu-right-wrap{
    height: 24.8vw;
}
#bao-xiansu-right-wrap .grid-flag{
    margin-top: 0;
}
/* 应用场景 */
#home-scene-img-wrap{
    width: 100%;
    height: auto;
}
.home-scene{
    width: 30.6vw;
    height: 16.5vw;
    margin: 4.4vw 0.5vw 3.1vw 0.5vw;
}

.customer-wrap {
    margin-top: 2.6vw;
    width: 63vw;
    height: 23.8vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.customer-wrap img {
    margin: 0.3vw;
    width: 12vw;
    height: 5.9vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.customer-wrap img:hover {
    transform: translateY(-0.3vw);
    background: #F8F8F8;
}

.customer-wrap .style1{
    width: 15vw;
    height: 14.6vw;
}
.news-list-wrap {
    margin: 3.6vw 18.7vw;
    width: 62.5vw;
    height: 25.3vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.new-item-wrap {
    height: 25.3vw;
    width: 18.2vw;
    border-radius: 1vw;
    box-shadow: 0.2vw 0.3vw 0.5vw 0.1px rgba(209, 209, 209, 0.31);
    background-color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    border-color: rgba(0, 0, 0, 0);
}

.new-item-wrap:hover {
    transform: translateY(-0.3vw);
    background: #F8F8F8;
}

.news-header {
    width: 18.2vw;
    height: 12.5vw;
}

.new-text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.4vw;
}

.new-title {
    height: 3.2vw;
    width: 100%;
    margin-top: 0.6vw;
    line-height: 1.6vw;
    font-size: 1.1vw;
    text-align: center;
    color: #000;
    overflow: hidden;
    max-lines: 2;
}

.new-subtitle {
    width: 100%;
    margin-top: 0.5vw;
    color: #AAAAAA;
    text-align: left;
    font-size: 0.7vw;
    line-height: 1vw;
    overflow: hidden;
    max-lines: 5;
}

.new-text-footer {
    color: #00D8B4;
    font-size: 0.7vw;
    height: 1.8vw;
    line-height: 1.8vw;
    text-align: left;
}

.home-news-arrow{
    width: 0.7vw;
    height: 0.5vw;
}

/* 底部容器 */
.footer {
    width: 100%;
    height: 19.6vw;
    background-color: #171E30;
    display: flex;
    flex-direction: column;
}

.footer-ctx {
    height: 15vw;
    display: flex;
    flex-direction: row;
}

.footer-subctx-wrap {
    width: 50vw;
    height: 15vw;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-left: 18.8vw;
    margin-top: 2.7vw;
    height: 2.3vw;
    width: 10vw;
}

.footer-text {
    margin-left: 18.8vw;
    margin-top: 4.7vw;
    line-height: 1.6vw;
    height: 4.8vw;
    font-size: 0.7vw;
    text-align: left;
    width: 18vw;
    color: #FFFFFF;
}

.footer-qrcode {
    width: 7.7vw;
    height: 7.7vw;
}

.footer-qrtext {
    text-align: center;
    width: 100%;
    height: 2.9vw;
    line-height: 2.9vw;
    color: #FFFFFF;
    font-size: 0.6vw;
}

.footer-end {
    height: 4.6vw;
    line-height: 4.6vw;
    text-align: center;
    font-size: 0.6vw;
    color: #FFFFFF;
}
/* 跃海传媒页面样式 */
/* 医院场景 - 流量副标题 */
.hai-section-line-text{
    margin-top: 4vw;
    color: #6D6D6D;
    font-size: 1.875vw;
    line-height: 2.6vw;
    text-align: left;
    padding: 0 18.75vw;
    width: 100%;
}

.hai-section-line-text span{
    margin-left: 2.8vw;
    color: #05C1A1;
    font-size: 1.35vw;
}
/* 大健康领域头部优质账号 */
.section-grid-item-wrap2{
    margin: 6px;
    width: 15.1vw;
    height: 15.1vw;
    box-shadow: 3px 4px 16px 1px rgba(235,235,235,0.39);
    border-radius: 23px 23px 23px 23px;
    border: 1px solid #E9E9E9;
    padding: 0 0.78vw;
    transition: all 0.3s ease;
}

.section-grid-item-wrap2:hover {
    transform: translateY(-0.3vw);
}

.section-grid-item-wrap2 .grid-flag{
    width: 1.56vw;
    height: 0.26vw;
    margin: 1.5vw 0.78vw 0 0.78vw !important;
}
.section-grid-item-wrap2 .grid-title{
    font-size: 1.2vw;
    line-height: 1.7vw;
    margin-top: 0.5vw;
}
.section-grid-item-wrap2 .grid-line{
    margin-top: 0;
    margin-bottom: 0;
    width: 13.3vw;
}
.section-grid-item-wrap2 .grid-ctx{
    width: 100%;
    height: 7vw;
    justify-content: space-between;
}
.section-grid-item-wrap2 .grid-ctx img{
    width: 5.3vw;
    height: 5.3vw;
}
.section-grid-item-wrap2 .grid-ctx .text{
    width: 7.3vw;
    height: 6vw;
    font-size: 0.625vw;
    line-height: 1.6;
    color: #6D6D6D;
}
.section-grid-item-wrap2 .grid-footer{
    margin: 0.78vw 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.section-grid-item-wrap2 .grid-footer div{
    font-size: 0.73vw;
    line-height: 1.6;
    color: #333E4D;
}
/* 医患群体私域社群 */
.hai-siyu-item{
    width: 31.25vw;
    height: auto;
}
.siyu-header{
    width: 26.3vw;
}
.siyu-header-text-wrap .grid-flag{
    margin-top: 0;
}
.siyu-header-text-wrap{
    justify-content: flex-start;
}

.siyu-wx-icon{
    width: 3.65vw;
    height: 3.65vw;
}
.siyu-content{
    width: 26.3vw;
}
.siyu-content .title{
    color: #AAAAAA;
    font-size: 1.15vw;
    line-height: 1.6;
    height: auto;
    white-space: pre-line;
    align-items: left;
    min-height: 4.2vw;
}
.siyu-content .list-item{
    height: 3.125vw;
    line-height: 3.125vw;
}

.siyu-right{
    width: 8.3vw;
    height: 17vw;
}
/* 小海豚大数据精准服务 */
.ctx-biglogo3{
    margin: 0 3.65vw;
    width: 16.6vw;
    height: 33.8vw;
}
.hai-data-server-wrap{
    margin: 0 3.65vw;
    height: 100%;
    width: 12.1vw;
}
.hai-data-server-wrap .title{
    width: 100%;
    color: #05C1A1;
    font-size: 2.5vw;
    line-height: 6.6vw;
    height: 6.6vw;
    margin-bottom: 2.24vw;
}
.hai-data-server-wrap .title span{
    color: #6D6D6D;
    font-size: 1.46vw;
}
.hai-data-server-wrap .list-item2{
    font-size: 1.35vw;
    line-height: 5vw;
}

.hai-data-server-wrap .list-item2 img{
    width: 2.24vw;
    height: 2.24vw;
    margin-right: 1vw;
}

/* 客户 */
#hai-customer-wrap{
    height: auto !important;
}


/* 袋小保页面样式 */
.bao-xiansu-wrap{
    height: 3.3vw;
}

.bao-xiansu-wrap img{
    width: 2.6vw;
    height: 2.6vw;
    margin-right: 1vw;
}
.bao-xiansu-wrap a{
    font-size: 2.1vw;
    line-height: 3.3vw;
}
.bao-xiansu-subtitle{
    font-size: 1.7vw;
    line-height: 2.9vw;
    height: 2.9vw;
}
.bao-xiansu-bigimg{
    width: 69.5vw;
    height: 40.8vw;
    margin-top: 1.8vw;
}

#bao-xiansu-zhengce-sub-wrap img{
    width: 32.3vw;
    height: 24.8vw;
}

#bao-product-subtext{
    text-align: center;
    height: auto;
    width: 62.5vw;
}

#bao-product1-wrap img{
    width: 53.1vw;
    height:19.5vw;
    margin-top: 1.4vw;
}
.bao-product2-textlist-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
    margin-left: 1.8vw;
}

.bao-product2-sub-icon {
    width: 2.2vw;
    height: 2.2vw;
    margin-right: 0.5vw;
}

.bao-product2-sub-text {
    font-size: 1vw;
    height: 4.6vw;
    line-height: 4.6vw;
    color: #6D6D6D;
}
.bao-product3-pic{
    width: 54.9vw;
    height: 27.2vw;
    margin: 1.6vw 0;
}

.bao-product-type-ctxwrap {
    margin-top: 1.6vw;
}

.bao-product-typ-item-img {
    width: 30vw;
    height: 31.6vw;
    margin: 0 1.5vw;
}

.bao-product-typ-item-text {
    font-size: 1.3vw;
    line-height: 2.1vw;
    color: #6D6D6D;
    text-align: center;
    margin-top: 2.6vw;
}
.bao-yingjian-bgimg{
    width: 100%;
    height: 30.3vw;
    margin-top: 4vw;
}

.bao-yingjian-ctximg{
    width: 49vw;
    height: 26vw;
    margin-top: -28.2vw;
}

#bao-open-title-wrap{
    margin-top: 7.2vw;
}
.text-img-style1-wrap {
    width: 30.5vw;
    height: 26.4vw;
    text-align: center;
    border-radius: 0.5vw;
    overflow: hidden;
    margin: 0 0.7vw;
}

.style1-title {
    line-height: 3.7vw;
    height: 3.7vw;
    font-size: 1.5vw;
    color: #333E4D;
}

.style1-pic {
    width: 30.5vw;
    height: 22.7vw;
}

.text-img-style1-subtext {
    width: 100%;
    height: 6.4vw;
    color: #fff;
    font-size: 1vw;
    line-height: 1.8vw;
    padding: 0 1.4vw;
    background-color: rgba(0, 0, 0, 0.6);
    margin-top: -6.4vw;
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: center;
}

.text-img-style2-wrap {
    text-align: center;
    border-radius: 0.5vw;
    overflow: hidden;
    width: 20.2vw;
    height: 18vw;
    margin: 2.1vw 0.5vw;
    color: #333E4D;
}

.style2-title {
    line-height: 3vw;
    height: 3vw;
    font-size: 1.5vw;
}

.style2-pic {
    width: 20.2vw;
    height: 15vw;
}

.text-img-style2-subtext {
    width: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    height: 5.6vw;
    font-size: 0.9vw;
    line-height: 1.5vw;
    padding: 0 1vw;
    margin-top: -5.6vw;
}

#bao-guanfang-title-wrap{
    margin: 2.3vw;
}
.bao-guanfang-img{
    width: 62.5vw;
    height: 27.4vw;
    margin-top: 1vw;
}
#bao-hospital-wrap{
    height: auto;
    margin: 2.6vw 18.7vw;
    width: 63vw;
}

/* 加入我们 */
.join-company-img {
    width: 30.7vw;
    height: 25.6vw;
    margin: 0 0.7vw;
}

.join-company-paragraph-wrap {
    width: 30.4vw;
    margin: 0 0.7vw;
}

.join-company-paragraph-wrap p {
    letter-spacing: 0.1vw;
}

.join-culture img {
    width: 19.6vw;
    height: 14.8vw;
    margin: 2.1vw 0.9vw 0 0.9vw;
}

.join-develop-img {
    width: 56.1vw;
    height: 30vw;
    margin-top: 2.6vw;
}

.join-env-img {
    width: 62.5vw;
    height: 30.5vw;
    margin-top: 2.3vw;
}

.join-contact-wrap {
    display: grid;
    grid-template-columns: repeat(2, 27.2vw);
    grid-template-rows: repeat(2, 3vw);
    margin-top: 2.6vw;
    margin-bottom: 1.6vw;
}

.join-contact-item {
    font-size: 1.3vw;
    line-height: 3vw;
    color: #6D6D6D;
}

/* 地图 */
.my-map {
    margin: 1.4vw auto 3.5vw auto;
    width: 62.5vw;
    height: 18.8vw;
}
.my-map img{
    width: 62.5vw;
    height: 18.8vw;
}

/* 新闻详情页 */
.news-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    text-align: center;
    background-color: #F8F8F8;
    padding: 4.6vw 18.75vw;
}
.news-container h1{
    font-size: 1.88vw;
    color: #333E4D;
    height: 4.4vw;
    line-height: 4.4vw;
    text-align: center;
}

.news-container .news-author-wrap{
    margin: 2.1vw 1vw;
    width: 100%;
    height: 1.6vw;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.news-author-wrap div{
    margin-left: 1.6vw;
    line-height: 1.6vw;
    text-align: right;
    font-size: 0.9vw;
    color: #817D7D;
}

.news-content img{
    margin: 2.6vw auto;
    width: 100%;
    height: auto;
}

.news-content p{
    text-indent: 2em;
    /* 缩进两个字符宽度 */
    margin: 0;
    /* 移除默认外边距 */
    color: #6D6D6D;
    font-size: 1.15vw;
    line-height: 2.5vw;
    text-align: left;
    letter-spacing: 0.1vw;
}

/* .news-content h1,h2{
    text-align: left;
    display: inline-block; 
} */

