/**
* 媒体查询样式
* 开发者: 天水云图网络科技有限公司
* 邮箱: services@ytuiring.cn
* 网站: https://www.ytuiring.cn
* 
*/
/* 比例化媒体查询（1920px设计稿 → 1600px内容区） */
.container {
  width: calc(100% - 2rem);
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .container {
    width: calc(100vw * 0.95);
  }
}
@media screen and (min-width: 576px) {
  .container {
    width: calc(100vw * 0.95);
  }
}
@media screen and (min-width: 999px) {
  .container {
    width: calc(899px * 0.95);
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: calc(992px * 0.95);
  }
}
@media screen and (min-width: 1100px) {
  .container {
    width: calc(1100px * 0.95);
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: calc(1200px * 0.65);
  }
}
@media screen and (min-width: 1400px) {
  .container {
    width: calc(1400px * 0.65);
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: calc(1600px * 0.65);
  }
}
@media screen and (min-width: 1920px) {
  .container {
    width: 1400px;
  }
}
/* 中等屏幕适配（小桌面/大平板：≤1200px） */
@media (max-width: 1600px) {
  .page-header .page-header-container .page-navs {
    gap: 0;
  }
  .page-header .page-header-container .page-navs .page-nav {
    display: block;
    height: 65px;
    font-size: 18px;
    padding: 0 20px;
    line-height: 65px;
    position: relative;
  }
  .page-footer {
    display: none;
  }
  .page-mb-footer {
    display: block;
  }
}
@media (max-width: 1200px) {
  .page-header {
    padding-top: 0px;
  }
  .hgpt-body {
    padding-top: 65px;
    .page-header {
      background-color: #fff;
      .page-header-container .mb-navbtn .mb-navbtn-line1,
      .page-header-container .mb-navbtn .mb-navbtn-line2,
      .page-header-container .mb-navbtn .mb-navbtn-line3 {
        background-color: #333;
      }
    }
  }
  .page-header .page-header-container .page-navs {
    display: none;
  }
  .page-header .page-header-container .mb-navbtn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 25px;
    object-fit: cover;
    position: relative;
    cursor: pointer;
  }
  .page-header .page-header-container .mb-navbtn .mb-navbtn-line1,
  .page-header .page-header-container .mb-navbtn .mb-navbtn-line2,
  .page-header .page-header-container .mb-navbtn .mb-navbtn-line3 {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    border-radius: 6px;
  }
  .page-header .page-header-container .mb-navbtn_active {
    flex-direction: row;
  }
  .page-header .page-header-container .mb-navbtn_active .mb-navbtn-line1,
  .page-header .page-header-container .mb-navbtn_active .mb-navbtn-line2,
  .page-header .page-header-container .mb-navbtn_active .mb-navbtn-line3 {
    width: 3px;
    height: 100%;
  }
  .page-header .page-header-container .mb-navbtn-black .mb-navbtn-line1,
  .page-header .page-header-container .mb-navbtn-black .mb-navbtn-line2,
  .page-header .page-header-container .mb-navbtn-black .mb-navbtn-line3 {
    background-color: #333;
  }
  .mb-navbar {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100vh;
    background-color: #fff;
    width: 80%;
    right: -81%;
    transition: right 0.3s ease-in-out;
    z-index: 100;
    padding: 40px 20px;
    box-sizing: border-box;
  }
  .mb-navbar .mb-page-navs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mb-navbar .mb-page-navs .mb-page-nav {
    font-size: 20px;
    padding: 5px 20px 10px;
    border-bottom: 1px solid #d1d1d1;
    color: #c12866;
  }
  .mb-navbar .mb-page-navs .mb-page-nav:last-child {
    border-bottom: none;
  }
  .mb-navbar .mb-page-navs .mb-page-nav-dropdown .mb-page-nav-dropdown-title {
    position: relative;
  }
  .mb-navbar .mb-page-navs .mb-page-nav-dropdown .mb-page-nav-dropdown-title img {
    transition: transform 0.3s ease-in-out;
  }
  .mb-navbar .mb-page-navs .mb-page-nav-dropdown .mb-page-nav-dropdown-panel {
    display: none;
    flex-direction: column;
    padding: 10px;
  }
  .mb-navbar .mb-page-navs .mb-page-nav-dropdown .mb-page-nav-dropdown-panel .mb-page-nav-dropdown-item {
    padding: 10px;
    color: #999;
  }
  .mb-navbar .mb-page-navs .mb-page-nav-dropdown_active .mb-page-nav-dropdown-title img {
    transform: rotate(180deg);
  }
  .mb-navbar .mb-page-navs .mb-page-nav-dropdown_active .mb-page-nav-dropdown-panel {
    display: flex;
  }
  .mb-navbar .mb-page-navs .mb-page-nav-active {
    color: #ff9500;
  }
  .mb-navbar-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99;
    display: none;
  }
  .mb-navbar_active {
    right: 0;
  }
  .index-menus-container {
    display: none;
  }
  .index-mb-menus-container {
    display: block;
  }
  .index-news-container {
    margin-top: 150px;
  }
  .index-news-container .index-news .index-news-item {
    gap: 40px;
  }
  .index-news-container .index-news .index-news-item .index-news-thumb {
    flex: 1;
  }
  .index-news-container .index-news .index-news-item .index-news-content {
    max-width: 40%;
  }
  .index-client-container {
    background-image: none;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 50px 0 200px;
  }
  .index-client-container .index-client .index-client-title {
    margin-bottom: 100px;
  }
  .index-client-container .index-client .index-client-title .index-client-title-cn {
    font-size: 2em;
  }
  .index-client-container .index-client .index-client-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  .index-client-container .index-client .index-client-items .index-client-item:nth-child(n + 10) {
    display: none;
  }
  .contact-container .contact-main {
    flex-direction: column;
    padding: 100px 20px;
    gap: 0;
  }
  .contact-container .contact-main .contact-info {
    width: 100%;
    padding: 20px 0;
  }
  .contact-container .contact-main .contact-info::after {
    content: none;
  }
  .contact-container .contact-main .contact-info .contact-info-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .contact-container .contact-main .contact-info .contact-info-item {
    margin-bottom: 10px;
    font-size: 0.9em;
  }
  .contact-container .contact-main .contact-form {
    width: 100%;
    padding: 40px 40px;
  }
  .contact-container .contact-main .contact-form .contact-form2-title {
    font-size: 1.2em;
  }
}
/* 小屏幕适配（平板竖屏/大手机：≤999px） */
/* 超小屏幕应急处理（手机：≤480px） */
@media (max-width: 999px) {
  body {
    background-color: #f5f5f5;
  }
  .page-container {
    padding: 0px 0 30px;
  }
  .page-container .page-container-header {
    margin-bottom: 20px;
  }
  .page-container .page-container-header .page-container-title {
    font-size: 44px;
  }
  .page-container .page-container-header .page-container-meta {
    font-size: 14px;
  }
  .page-container .page-container-content {
    font-size: 16px;
    line-height: 35px;
  }
  .page-container .page-container-content .page-container-content-title {
    font-size: 30px;
    line-height: 40px;
  }
  .index-header {
    background-color: #fff;
    padding-bottom: 40px;
  }
  .index-header .index-header-bg {
    display: none;
  }
  .index-header .index-mb-header-bg {
    display: block;
  }
  .index-header .index-header-grids {
    gap: 20px;
  }
  .index-header .index-header-grids .index-header-grid img {
    max-width: 100%;
    height: 50px;
  }
  .index-news-container {
    display: none;
    margin-top: 50px;
  }
  .index-news-container .index-news .index-news-item {
    gap: 20px;
    flex-direction: column;
  }
  .index-news-container .index-news .index-news-item .index-news-thumb {
    width: 100%;
  }
  .index-news-container .index-news .index-news-item .index-news-content {
    width: 100%;
    max-width: 100%;
  }
  .index-client-container {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
    background-image: none;
  }
  .index-client-container .index-client .index-client-title {
    margin-bottom: 20px;
  }
  .index-client-container .index-client .index-client-title .index-client-title-cn {
    font-size: 1.5em;
  }
  .index-client-container .index-client .index-client-title .index-client-title-cn::after {
    content: none;
  }
  .index-client-container .index-client .index-client-items {
    gap: 20px;
  }
  .index-client-container .index-client .index-client-items .index-client-item:nth-child(n + 10) {
    display: none;
  }
  .index-client-container .index-client .index-client-items .index-client-item {
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
    position: relative;
  }
  .index-client-container .index-client .index-client-items .index-client-item img {
    width: 80%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 80%;
    object-fit: contain;
  }
  .hgpt-page .hgpt-page-header,
  .hgpt-page .hgpt-about-main {
    display: none;
  }
  .hgpt-page .hgpt-mb-about-main {
    display: block;
    width: 100%;
  }
  .hgpt-page .hgpt-brand-main {
    margin-top: 20px;
    flex-direction: column;
    gap: 0;
  }
  .hgpt-page .hgpt-brand-main .hgpt-brand-text {
    width: 100%;
  }
  .hgpt-page .hgpt-brand-main .hgpt-brand-text .hgpt-brand-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .hgpt-page .hgpt-brand-main .hgpt-brand-text .hgpt-brand-title::after {
    width: 2em;
    height: 2px;
    right: auto;
    left: 0;
    top: auto;
    bottom: -5px;
  }
  .hgpt-page .hgpt-brand-main .hgpt-brand-grids {
    width: 100%;
    gap: 0;
  }
  .hgpt-page .hgpt-brand-main .hgpt-brand-grids .hgpt-brand-grid img {
    display: block;
    max-width: 60%;
  }
  .hgpt-page .hgpt-brand-main .hgpt-brand-grids .hgpt-brand-grid .hgpt-brand-year {
    font-size: 0.8em;
    margin-top: 30px;
  }
  .hgpt-page .hgpt-brand-main .hgpt-brand-grids .hgpt-brand-grid:first-child .hgpt-brand-year {
    margin-top: 0;
  }
  .hgpt-page .hgpt-culture-main {
    background-image: url("../images/other/bg-01.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
  }
  .hgpt-page .hgpt-culture-main .hgpt-culture-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .hgpt-page .hgpt-culture-main .hgpt-culture-title::after {
    background-color: #fff;
    left: 0;
    right: auto;
  }
  .hgpt-page .hgpt-culture-main .hgpt-culture-content {
    line-height: 26px;
  }
  .hgpt-page .hgpt-culture-main .hgpt-culture-content p {
    margin-bottom: 20px;
    text-indent: 2em;
  }
  .hgpt-page .hgpt-culture-main .hgpt-culture-content p:last-child {
    margin-bottom: 0;
  }
  .hgpt-page .hgpt-team-main {
    background-color: #f5f5f5;
    margin-top: 20px;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-title {
    font-size: 1.5em;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-title::after {
    left: 0;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters {
    padding: 0 20px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 30px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    /* 在iOS上提供平滑滚动 */
    scrollbar-width: none;
    /* 隐藏滚动条 - Firefox */
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters::-webkit-scrollbar {
    display: none;
    /* 隐藏滚动条 - Chrome, Safari, Edge */
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character {
    background-color: #fff;
    flex-direction: column;
    flex: 0 0 100%;
    /* 每个项目占满容器宽度 */
    width: 100%;
    gap: 20px;
    margin-bottom: 0;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 24px;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character:nth-child(even) {
    flex-direction: column;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character:nth-child(even) .hgpt-team-character-info .hgpt-team-character-name {
    text-align: left;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character .hgpt-team-character-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character .hgpt-team-character-avatar img {
    display: block;
    width: 120px;
    height: 120px;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character .hgpt-team-character-avatar .hgpt-mb-team-names {
    display: block;
    font-size: 1.3em;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character .hgpt-team-character-avatar2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character .hgpt-team-character-info {
    width: 100%;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character .hgpt-team-character-info .hgpt-team-character-name {
    display: none;
  }
  .hgpt-page .hgpt-team-main .hgpt-team-characters .hgpt-team-character .hgpt-team-character-info .hgpt-team-character-intro {
    line-height: 24px;
    white-space: wrap;
  }
  .hgpt-page .hgpt-history-main {
    margin-top: 40px;
    background-color: #fff;
    padding: 20px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .bg1-group {
    background: none;
  }
  .cus-page {
    padding: 0;
  }
  .cus-page .cus-page-header {
    display: none;
  }
  .cus-page .cus-mb-page-header {
    display: block;
  }
  .cus-page .cus-page-item {
    margin-bottom: 50px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .cus-page .cus-page-item .cus-page-item-title {
    font-size: 1.2em;
  }
  .cus-page .cus-page-item .cus-page-item-title-r {
    text-align: left;
  }
  .cus-page .cus-page-item .cus-page-item-title-r::after {
    left: 0;
    right: auto;
  }
  .cus-page .cus-page-item .cus-page-item-main {
    margin-top: 20px;
    /* 图片轮播进度指示器样式 */
  }
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-desc {
    line-height: 30px;
  }
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-desc p {
    margin-bottom: 20px;
    text-indent: 2em;
  }
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-img-title {
    margin-bottom: 20px;
    color: #2175b2;
  }
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-imgs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-bottom: 30px;
    scrollbar-width: none;
  }
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-imgs::-webkit-scrollbar {
    display: none;
  }
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-imgs img,
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-imgs div {
    flex: 0 0 100vw;
    width: 100vw;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    scroll-snap-align: start;
    margin-right: 0 !important;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .cus-page .cus-page-item .cus-page-item-main .cus-page-item-imgs div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .cus-page .cus-page-item .cus-page-item-main .gallery-progress-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: -20px;
    margin-bottom: 30px;
  }
  .cus-page .cus-page-item .cus-page-item-main .gallery-progress-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .cus-page .cus-page-item .cus-page-item-main .gallery-progress-indicator.active {
    width: 24px;
    border-radius: 12px;
    background-color: #2175b2;
  }
  .nuclear-container {
    margin-bottom: 100px;
  }
  .nuclear-container .nuclear-main {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-products-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-products-sub-title {
    font-size: 1em;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product {
    margin-bottom: 30px;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product .nuclear-product-desc {
    line-height: 26px;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product .nuclear-product-photos {
    margin-top: 20px;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product .nuclear-product-photos img {
    width: 80%;
    height: auto;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product-line6 .nuclear-product-line6-title {
    font-size: 1.2em;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product-line6 .nuclear-product-line6-main {
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product-line6 .nuclear-product-line6-main .nuclear-product-line6-texts {
    line-height: 32px;
  }
  .nuclear-container .nuclear-main .nuclear-products .nuclear-product-line6 .nuclear-product-line6-main .nuclear-product-line6-img {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
  .patient-page-logo {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .art-container {
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 50px;
  }
  .art-container .art-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .art-container .art-content {
    line-height: 26px;
  }
  .art-container .art-content p {
    margin-bottom: 20px;
  }
  .testing-certificate {
    flex-direction: column;
    gap: 20px;
  }
  .testing-certificate .testing-certificate-imgs {
    width: 100%;
    gap: 0;
  }
  .rehab-pc-img {
    display: none;
  }
  .rehab-mb-img {
    display: block;
  }
  .construction-body {
    background-attachment: #f5f5f5;
  }
  .construction-body .cus-page .cus-mb-page-header {
    margin-bottom: 0;
  }
  .construction-body .cus-page-item-container {
    background-color: #fff;
    padding: 20px 0;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .construction-body .cus-page-item-container:last-child {
    margin-bottom: 0;
  }
  .radiotherapy-container .radiotherapy-main {
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item {
    margin-bottom: 50px;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item .radiotherapy-item-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item .radiotherapy-item-contents .radiotherapy-item-content {
    flex-direction: column;
    gap: 20px;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item .radiotherapy-item-contents .radiotherapy-item-content .radiotherapy-item-content-info {
    width: 100%;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item .radiotherapy-item-contents .radiotherapy-item-content .radiotherapy-item-content-info .radiotherapy-item-content-title {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item .radiotherapy-item-contents .radiotherapy-item-content .radiotherapy-item-content-info .radiotherapy-item-content-title img {
    height: 50px;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item .radiotherapy-item-contents .radiotherapy-item-content .radiotherapy-item-content-info .radiotherapy-item-content-desc {
    line-height: 30px;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item .radiotherapy-item-contents .radiotherapy-item-content .radiotherapy-item-content-img {
    width: 100%;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item1 .radiotherapy-item-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    background-size: 100%;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item1 .radiotherapy-item-tabs .radiotherapy-item-tab {
    height: 80px;
    width: 80px;
    line-height: 80px;
    font-size: 1.2em;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item2 .radiotherapy-item-tabs {
    margin-bottom: 30px;
    width: 100%;
  }
  .radiotherapy-container .radiotherapy-main .radiotherapy-item2 .radiotherapy-item-tabs .radiotherapy-item-tab {
    padding: 10px 15px;
    font-size: 1.2em;
  }
}
