/* ========== HTML根元素样式设置 ========== */
/* 设置根字体大小为视口宽度的1/19.2，用于rem单位适配；禁用文本大小调整；启用平滑滚动；设置滚动条样式 */
html {
  font-size: calc(100vw/19.2);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

/* 当html有act类时，禁止页面滚动（常用于弹窗打开时） */
html.act {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

/* ========== 通用重置样式 ========== */
/* 所有元素及其伪元素统一使用border-box盒模型 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 重置所有元素的margin、padding和outline */
* {
  margin: 0;
  padding: 0;
  outline: none;
}

/* 焦点样式（已注释）：仅在键盘导航时显示焦点轮廓 */
/* *:focus:not(:focus-visible) { outline: none }
*:focus-visible { outline: 2px solid var(--color-primary) } */

/* ========== CSS变量定义 ========== */
/* 定义全局CSS变量：主题色、文本色、边框色、图片滤镜、缓动函数等 */
:root {
  --vicolor: #CA1A20;
  --vicolor2: #005FA3;
  --vicolor3: #025A92;
  --theme-color: linear-gradient(107deg, #025A92 0%, #B31F24 100%);
  --text-color: #333333;
  --text-color2: #666666;
  --border-light: #E0E0E0;
  --imgwhite: brightness(0) invert(1);
  --imgblack: brightness(0);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 禁止文字选中工具类 ========== */
/* 禁止用户选中文本的工具类 */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ========== 自定义字体定义 ========== */
/* 定义Montserrat字体族 */
@font-face {
  font-family: 'mst';
  src: url("../fonts/Montserrat-Light-6.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'mst';
  src: url("../fonts/Montserrat-Regular-8.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'mst';
  src: url("../fonts/Montserrat-Medium-7.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'mst';
  src: url("../fonts/Montserrat-SemiBold-9.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'mst';
  src: url("../fonts/Montserrat-Bold-3.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

/* ========== 字体工具类 ========== */
/* 不同字重的工具类：syb(700粗体)、syn(500中等)、syr(400常规)、syl(300细体) */
.fw700 {
  font-family: 'mst';
  font-weight: 700;
}

.fw600 {
  font-family: 'mst';
  font-weight: 600;
}

.fw500 {
  font-family: 'mst';
  font-weight: 500;
}

.fw400 {
  font-family: 'mst';
  font-weight: 400;
}

.fw300 {
  font-family: 'mst';
  font-weight: 300;
}

/* ========== Body基础样式 ========== */
/* 设置body的基础样式：字体、颜色、背景、布局等 */
body {
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  padding: 0;
  width: 100%;
  color: var(--text-color);
  font-family: 'HarmonyOS_Sans_SC_Regular', Microsoft YaHei, -apple-system, BlinkMacSystemFont, PingFang SC, Segoe UI, Hiragino Sans GB, Helvetica Neue, Arial, Helvetica, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 14px;
  line-height: 1;
  background: #fff;
}

/* ========== 列表和链接样式重置 ========== */
/* 重置列表样式：去除默认的列表样式、内外边距 */
ul,
ul li,
ol li,
tr td,
dl,
dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* 清除浮动工具类 */
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* 链接样式：去除下划线，添加颜色过渡效果，禁用点击高亮 */
a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
  color: var(--text-color);
  -webkit-transition: color .4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: color .4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color .4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 表单元素样式 ========== */
/* 文本域和选择框的基础样式 */
textarea,
select {
  outline: none;
  color: #666;
  font-size: 14px;
  width: 100%;
}

/* 文本域：禁止调整大小，去除边框和内边距 */
textarea {
  resize: none;
  padding: 0;
  border: 0;
  font-family: 'hmr';
}

/* ========== 图片样式 ========== */
/* 图片基础样式：去除边框，最大宽度100%，块级显示，宽度100% */
img {
  border: none;
  max-width: 100%;
  display: block;
  width: 100%;
}

/* 空src的图片隐藏 */
img[src=""] {
  opacity: 0;
}
img.pic-contain,video.pic-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

img.pic-cover,video.pic-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 斜体标签重置为正常样式 */
i {
  font-style: normal;
}

/* ========== 图片工具类 ========== */
/* 编辑区域和行内块图片：行内块显示，自动宽高 */
.edit img,
.img_inline_block img {
  display: inline-block;
  height: auto;
  width: auto;
}

/* 字体粗细工具类 */
.fw_100 {
  font-weight: 100;
}

/* 占位图片：宽度100%，透明度0（用于占位） */
.img_cct {
  width: 100%;
  opacity: 0;
}

/* ========== 文本截断工具类 ========== */
/* 单行文本截断：超出显示省略号 */
.t_line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 多行文本截断：2-5行文本超出显示省略号 */
.t_line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}
.t_line2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 4;
  -moz-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

.t_line5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 5;
  -moz-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

/* ========== 输入框占位符样式 ========== */
/* 统一设置占位符文字颜色为#999 */
.place::-webkit-input-placeholder {
  color: #999;
}

.place:-moz-placeholder {
  color: #999;
}

.place::-moz-placeholder {
  color: #999;
}

.place:-ms-input-placeholder {
  color: #999;
}

/* ========== Swiper轮播组件样式 ========== */
/* Swiper按钮禁用状态：显示禁止光标 */
.swiper-button-disabled {
  cursor: not-allowed;
}

/* Swiper按钮锁定状态：隐藏并禁用交互 */
.swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}

/* ========== 文本对齐和转换工具类 ========== */
/* 文本对齐方式 */
.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justif {
  text-align: justify;
}

/* 文本换行和大小写转换 */
.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-bold {
  font-weight: bold;
}

/* ========== 图片悬停切换效果 ========== */
/* 双图片容器：第二张图片绝对定位覆盖在第一张上，默认隐藏 */
.imgTwo {
  position: relative;
}
.imgTwo img{
  transition: all 0.2s ease;
}

.imgTwo img:nth-child(2) {
  position: absolute;
  inset: 0px;
  margin: auto;
  opacity: 0;
}





/* 悬停时切换图片：隐藏第一张，显示第二张 */
.imgTwo:hover img:nth-child(1) {
  opacity: 0;
}

.imgTwo:hover img:nth-child(2) {
  opacity: 1;
}

.imgHover:hover .imgTwo img:nth-child(1) {
  opacity: 0;
}
.imgHover:hover .imgTwo img:nth-child(2) {
  opacity: 1;
}
.imgHover.active .imgTwo img:nth-child(1) {
  opacity: 0;
}
.imgHover.active .imgTwo img:nth-child(2) {
  opacity: 1;
}

/* ========== Z-index层级工具类 ========== */
/* 提供1-5的z-index层级工具类 */
.zId5 {
  z-index: 5;
}

.zId4 {
  z-index: 4;
}

.zId3 {
  z-index: 3;
}

.zId2 {
  z-index: 2;
}

.zId1 {
  z-index: 1;
}

/* ========== 滚动条样式 ========== */
/* 全局滚动条样式（已注释） */
/* ::-webkit-scrollbar {width:4px;height:1px;}
*::-webkit-scrollbar-thumb{ background:#000;}
*::-webkit-scrollbar-track{ background:rgba(0,0,0,0.4);} */
/* scroll类滚动条：5px宽度，主题色滑块，灰色轨道 */
.scroll::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}

.scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

.scroll::-webkit-scrollbar-track {
  background: #DDDDDD;
}

/* scroll2类滚动条：带圆角的滚动条样式 */
.scroll2::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}

.scroll2::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.scroll2::-webkit-scrollbar-track {
  background: #E3E3E3;
  border-radius: 3px;
}

/* ========== Input输入框样式重置 ========== */
/* 去除input默认边框、内边距和轮廓 */
input {
  padding: 0;
  border: 0;
  font-family: 'hmr';
  outline: none;
}

/* 提交按钮：透明背景，指针光标 */
input[type="submit"] {
  background-color: transparent;
  cursor: pointer;
}

/* 按钮类input：去除浏览器默认外观 */
input[type="button"],
input[type="submit"],
input[type="reset"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* 选择框：去除浏览器默认外观和IE下拉箭头 */
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

/* 通用颜色工具 */
.c-vi {
  color: var(--vicolor)
}

.c-red {
  color: #FF0000
}

.c-fff {
  color: #fff
}

.c-000 {
  color: #000
}

.c-111 {
  color: #111
}

.c-333 {
  color: #333
}

.c-666 {
  color: #666
}

.c-888 {
  color: #888
}
.c-868 {
  color: #868686
}
.c-999 {
  color: #999
}

.c-ef {
  color: #efefef;
}


/* 通用行高 */
.lh-1 {
  line-height: 1
}

.lh-15 {
  line-height: 1.5
}

.lh-2 {
  line-height: 2
}
.lh-125{
  line-height: 1.25;
}

.lh-13 {
  line-height: 1.3
}

.lh-133 {
  line-height: 1.33
}

.lh-14 {
  line-height: 1.4
}

.lh-142 {
  line-height: 1.42
}

.lh-166 {
  line-height: 1.66
}

.lh-175 {
  line-height: 1.75
}

.lh-187 {
  line-height: 1.87;
}




/* ========== 标题和字体大小工具类 ========== */
/* h3标题字重 */
h3 {
  font-weight: 500;
}

/* 字体大小工具类：从12px到80px，每2px递增 */
.f_12 {
  font-size: .12rem;
}

.f_14 {
  font-size: .14rem;
}

.f_16 {
  font-size: .16rem;
}

.f_18 {
  font-size: .18rem;
}

.f_20 {
  font-size: .20rem;
}

.f_22 {
  font-size: .22rem;
}

.f_24 {
  font-size: .24rem;
}

.f_26 {
  font-size: .26rem;
}

.f_28 {
  font-size: .28rem;
}

.f_30 {
  font-size: .30rem;
}

.f_32 {
  font-size: .32rem;
}

.f_34 {
  font-size: .34rem;
}

.f_36 {
  font-size: .36rem;
}

.f_38 {
  font-size: .38rem;
}

.f_40 {
  font-size: .40rem;
}

.f_42 {
  font-size: .42rem;
}

.f_44 {
  font-size: .44rem;
}

.f_46 {
  font-size: .46rem;
}

.f_48 {
  font-size: .48rem;
}

.f_50 {
  font-size: .50rem;
}

.f_52 {
  font-size: .52rem;
}

.f_54 {
  font-size: .54rem;
}

.f_56 {
  font-size: .56rem;
}

.f_58 {
  font-size: .58rem;
}

.f_60 {
  font-size: .60rem;
}

.f_62 {
  font-size: .62rem;
}

.f_64 {
  font-size: .64rem;
}

.f_66 {
  font-size: .66rem;
}

.f_68 {
  font-size: .68rem;
}

.f_70 {
  font-size: .70rem;
}

.f_72 {
  font-size: .72rem;
}

.f_74 {
  font-size: .74rem;
}

.f_76 {
  font-size: .76rem;
}

.f_78 {
  font-size: .78rem;
}

.f_80 {
  font-size: .80rem;
}

/* ========== 弹窗组件样式 ========== */
/* 弹窗容器：固定定位，全屏覆盖，默认缩放为0隐藏 */
.z_tanchuang {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  z-index: 10;
}

/* 弹窗背景遮罩层：半透明黑色背景，垂直居中 */
.z_tanchuang .tbox {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

/* 弹窗内容区域：白色背景，圆角，居中显示，最大宽度1200px */
.z_tanchuang .tbox .modal {
  background: white;
  padding: 50px;
  display: block;
  border-radius: 5px;
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  margin: 0 auto;
}

/* 弹窗关闭按钮：圆形按钮，位于弹窗右上角外侧 */
.z_tanchuang .tbox .modal .out {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff url(../img/login_out.png) center no-repeat;
  background-size: 30px;
  color: #000;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  top: 0;
  right: -50px;
  cursor: pointer;
}

/* 弹窗图片容器：最大宽度600px，居中 */
.z_tanchuang .tbox .modal .img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* 弹窗视频：块级显示，宽度100%，覆盖填充 */
.z_tanchuang .tbox .modal .img video {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* 弹窗图片：居中显示 */
.z_tanchuang .tbox .modal .img img {
  margin: 0 auto;
}

/* 关闭按钮悬停效果：旋转180度 */
.z_tanchuang .tbox .modal .out:hover {
  background: #fff url(../img/login_out.png) center no-repeat;
  background-size: 30px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

/* 弹窗内容区域变体：较小内边距 */
.z_tanchuang .tbox .modal2 {
  padding: 20px;
}

/* 弹窗图片容器变体：最大宽度1200px */
.z_tanchuang .tbox .modal .img {
  max-width: 1200px;
}

/* ========== 弹窗动画状态 ========== */
/* 弹窗打开动画：从中心展开，然后内容缩放进入 */
.z_tanchuang.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scaleY(0.01) scaleX(0);
  -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(0);
  -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗关闭动画：内容先缩放消失，然后背景收起 */
.z_tanchuang.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(1);
  -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* ========== 弹窗动画关键帧定义 ========== */
/* 定义弹窗展开、缩放进入、缩放退出、收起等动画效果 */

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@-webkit-keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

/* ========== 响应式媒体查询 ========== */
/* 超大屏幕（≥1921px）：使用rem单位，字体大小按比例缩放 */
@media screen and (min-width:1921px) {
  body {
    font-size: 0.14rem;
  }

  .f_12 {
    font-size: 0.12rem;
  }

  .f_14 {
    font-size: 0.14rem;
  }

  .f_16 {
    font-size: 0.16rem;
  }

  .f_18 {
    font-size: 0.18rem;
  }

  .f_20 {
    font-size: 0.2rem;
  }

  .f_22 {
    font-size: 0.22rem;
  }

  .f_24 {
    font-size: 0.24rem;
  }

  .f_26 {
    font-size: 0.26rem;
  }

  .f_28 {
    font-size: 0.28rem;
  }

  .f_30 {
    font-size: 0.3rem;
  }

  .f_32 {
    font-size: 0.32rem;
  }

  .f_34 {
    font-size: 0.34rem;
  }

  .f_36 {
    font-size: 0.36rem;
  }

  .f_38 {
    font-size: 0.38rem;
  }

  .f_40 {
    font-size: 0.40rem;
  }

  .f_42 {
    font-size: 0.42rem;
  }

  .f_44 {
    font-size: 0.44rem;
  }

  .f_46 {
    font-size: 0.46rem;
  }

  .f_48 {
    font-size: 0.48rem;
  }

  .f_50 {
    font-size: 0.50rem;
  }

  .f_52 {
    font-size: 0.52rem;
  }

  .f_54 {
    font-size: 0.54rem;
  }

  .f_56 {
    font-size: 0.56rem;
  }

  .f_58 {
    font-size: 0.58rem;
  }

  .f_60 {
    font-size: 0.60rem;
  }

  .f_62 {
    font-size: 0.62rem;
  }

  .f_64 {
    font-size: 0.64rem;
  }

  .f_66 {
    font-size: 0.66rem;
  }

  .f_68 {
    font-size: 0.68rem;
  }

  .f_70 {
    font-size: 0.70rem;
  }

  .f_72 {
    font-size: 0.72rem;
  }

  .f_74 {
    font-size: 0.74rem;
  }

  .f_76 {
    font-size: 0.76rem;
  }

  .f_78 {
    font-size: 0.78rem;
  }

  .f_80 {
    font-size: 0.80rem;
  }

  .f_90 {
    font-size: 0.90rem;
  }
}

/* 大屏幕（≤1680px）：字体大小适当缩小 */
/* @media screen and (max-width:1680px) {
  .f_14 {
    font-size: 13px;
  }

  .f_16 {
    font-size: 14px;
  }

  .f_18 {
    font-size: 16px;
  }

  .f_20 {
    font-size: 18px;
  }

  .f_22 {
    font-size: 20px;
  }

  .f_24 {
    font-size: 22px;
  }

  .f_26 {
    font-size: 24px;
  }

  .f_28 {
    font-size: 26px;
  }

  .f_30 {
    font-size: 28px;
  }

  .f_32 {
    font-size: 30px;
  }

  .f_34 {
    font-size: 32px;
  }

  .f_36 {
    font-size: 34px;
  }

  .f_38 {
    font-size: 36px;
  }

  .f_40 {
    font-size: 38px;
  }

  .f_42,
  .f_44 {
    font-size: 40px;
  }

  .f_46 {
    font-size: 42px;
  }

  .f_48 {
    font-size: 44px;
  }

  .f_50 {
    font-size: 46px;
  }

  .f_52 {
    font-size: 48px;
  }

  .f_54 {
    font-size: 48px;
  }

  .f_56 {
    font-size: 48px;
  }

  .f_58,
  .f_60,
  .f_62,
  .f_64,
  .f_66,
  .f_68,
  .f_70,
  .f_72,
  .f_74,
  .f_76,
  .f_78,
  .f_80 {
    font-size: 52px;
  }
} */

/* 中等大屏幕（≤1560px）：进一步缩小大号字体 */
/* @media (max-width: 1560px) {
  .f_14 {
    font-size: 13px;
  }

  .f_58,
  .f_60,
  .f_62,
  .f_64,
  .f_66,
  .f_68,
  .f_70,
  .f_72,
  .f_74,
  .f_76,
  .f_78,
  .f_80 {
    font-size: 48px;
  }
} */

/* 标准桌面屏幕（≤1440px）：字体大小继续缩小 */
/* @media screen and (max-width:1440px) {
  .f_16 {
    font-size: 14px;
  }

  .f_18 {
    font-size: 15px;
  }

  .f_20 {
    font-size: 17px;
  }

  .f_22 {
    font-size: 18px;
  }

  .f_24 {
    font-size: 20px;
  }

  .f_26 {
    font-size: 22px;
  }

  .f_28 {
    font-size: 22px;
  }

  .f_30 {
    font-size: 24px;
  }

  .f_32 {
    font-size: 24px;
  }

  .f_34 {
    font-size: 26px;
  }

  .f_36 {
    font-size: 28px;
  }

  .f_38,
  .f_40 {
    font-size: 30px;
  }

  .f_42,
  .f_44 {
    font-size: 32px;
  }

  .f_46 {
    font-size: 34px;
  }

  .f_48 {
    font-size: 36px;
  }

  .f_50 {
    font-size: 36px;
  }

  .f_52 {
    font-size: 38px;
  }

  .f_54 {
    font-size: 38px;
  }

  .f_56 {
    font-size: 40px;
  }

  .f_58 {
    font-size: 42px;
  }

  .f_60,
  .f_62,
  .f_64,
  .f_66,
  .f_68,
  .f_70,
  .f_72,
  .f_74,
  .f_76,
  .f_78,
  .f_80 {
    font-size: 44px;
  }
} */

/* 小桌面屏幕（≤1280px）：字体大小进一步缩小 */
/* @media screen and (max-width:1280px) {
  .f_14 {
    font-size: 12px;
  }

  .f_16 {
    font-size: 13px;
  }

  .f_18 {
    font-size: 14px;
  }

  .f_20 {
    font-size: 15px;
  }

  .f_22 {
    font-size: 16px;
  }

  .f_24 {
    font-size: 16px;
  }

  .f_26 {
    font-size: 20px;
  }

  .f_28 {
    font-size: 20px;
  }

  .f_30 {
    font-size: 20px;
  }

  .f_32 {
    font-size: 22px;
  }

  .f_34 {
    font-size: 23px;
  }

  .f_36 {
    font-size: 25px;
  }

  .f_38 {
    font-size: 26px;
  }

  .f_40 {
    font-size: 30px;
  }

  .f_42,
  .f_44 {
    font-size: 32px;
  }

  .f_46 {
    font-size: 30px;
  }

  .f_48,
  .f_50 {
    font-size: 34px;
  }

  .f_52 {
    font-size: 36px;
  }

  .f_54,
  .f_56,
  .f_58,
  .f_60,
  .f_62,
  .f_64,
  .f_66,
  .f_68,
  .f_70,
  .f_72,
  .f_74,
  .f_76,
  .f_78,
  .f_80 {
    font-size: 40px;
  }
} */

/* 平板和移动端（≤1024px）：根字体大小改为60px，字体大小大幅缩小，隐藏PC端元素，显示移动端元素 */
/* @media screen and (max-width:1024px) {
  html {
    font-size: 60px;
  }

  .f_14,
  .f_16 {
    font-size: 12px;
  }

  .f_18,
  .f_20 {
    font-size: 14px;
  }

  .f_22,
  .f_24,
  .f_26,
  .f_28 {
    font-size: 16px;
  }

  .f_30,
  .f_32,
  .f_34 {
    font-size: 18px;
  }

  .f_36,
  .f_40,
  .f_42,
  .f_44,
  .f_46 {
    font-size: 20px;
  }

  .f_48,
  .f_50,
  .f_52,
  .f_54,
  .f_56,
  .f_58,
  .f_60,
  .f_62,
  .f_64,
  .f_68,
  .f_70,
  .f_72,
  .f_74,
  .f_76,
  .f_78,
  .f_80 {
    font-size: 30px;
  }

  .pcbox {
    display: none;
  }

  .phbox {
    display: block;
  }
} */