@charset "UTF-8";

/**
 * public
 * @description: 页面公共样式表
 */
@keyframes grow {

  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* @font-face {
  font-family: "SourceHanSerifCN";
  src: url("SourceHanSerifCN-Medium.woff2");
} */
* {
  padding: 0;
  margin: 0;
  -webkit-touch-callout: none;
  box-sizing: border-box;
  /* font-family: "SourceHanSerifCN"; */
}

.page-body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
}

a,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
html,
img,
input,
label,
legend,
li,
mark,
ol,
p,
section,
span,
textarea,
time,
td,
th,
ul {
  margin: 0;
  border: 0;
  padding: 0;
  font-style: normal;
  /*  自动换行 */
  word-wrap: break-word;
  /*  强制英文单词断行 */
  word-break: break-all;
}

a:focus,
a:hover {
  text-decoration: auto !important;
}

html {
  box-sizing: border-box;
}


body {
  font: 16px "Microsoft YaHei";
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* 
  font-family: "苹方", "PingFang", "MicrosoftYaHei", "微软雅黑", "Arial Narrow",
    HELVETICA; */
  font-weight: 500;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  /* 纵向滚动条 宽度 */
  width: 8px;
  /* 横向滚动条 高度 */
  height: 4px;
  /* 整体背景 */
  background: rgba(126, 126, 126, 0.1);
  /* 整体 圆角 */
  border-radius: 8px;
}

/* 滑块 */
::-webkit-scrollbar-thumb {
  background: #B92E32;
  border-radius: 8px;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}

em {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  word-wrap: break-word;
}

input,
textarea {
  /*webkit浏览器*/
  -webkit-user-select: auto;
}

input {
  outline: none;
}

img,
a {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* flex布局 */
.flex {
  display: flex;
}

.flex_1 {
  flex: 1;
}

.flex_bet {
  display: flex;
  justify-content: space-between;
}

/* 头尾 */
.flex_bet_align {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 尾部 */
.flex_end_align {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* 每个都有相同的边距 */
.flex_around_align {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex_align {
  display: flex;
  align-items: center;
}

/* 基线 */
.flex_baseline {
  display: flex;
  align-items: baseline;
}

/* 必要时拆行或拆列 */
.flex_content_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* 必要时拆行或拆列 居中 */
.flex_content_center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.t-oh {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t-lc2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.t-lc3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.t-lc4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}

.t-lc5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}

.minshow {
  display: none;
}

@font-face {
  font-family: "iconfont";
  src: url('../Font/iconfont.eot');
  /* IE9*/
  src: url('../Font/iconfont.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../Font/iconfont.woff') format('woff'),
    /* chrome, firefox */
    url('../Font/iconfont.ttf') format('truetype'),
    /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
    url('../Font/iconfont.svg#iconfont') format('svg');
  /* iOS 4.1- */
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 通用头部 -------------------------*/
.head {
  width: 100%;
  height: 100px;
  padding: 0 120px;
  position: fixed;
  bottom: 60px;
  left: 0;
  color: #333;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 0.3s ease;
  animation: fadeInDown 0.6s ease;
}

.head.dark {
  top: 0;
  bottom: auto;
}

.head.sunlight {
  top: 0;
  bottom: auto;
}

.head.bg-fixation {
  background-color: #FFFFFF;
}

.head .logo img {
  display: block;
  width: 480px;
  flex-shrink: 0;

}

.head .logo img.logobai {
  display: none;
}

.head.white .logo img.logobai {
  display: block;
}

.head.white .logo img.logohei {
  display: none;
}

.head .menu {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.head .menu .fir {
  height: 100%;
  position: relative;
  transition: all 0.5s;
}

.head .menu .fir:hover {
  font-weight: 700;
}

.head .menu .fir:hover::after {
  opacity: 1;
  top: 0;
}

.head .menu .fir.cur a {
  font-weight: 700;
}

.head .menu .fir a {
  padding: 0 25px;
  color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  white-space: nowrap;
  position: relative;
  transition: all 0s;
  -webkit-transition: all 0s;
}

.head .menu .fir:hover a::after,
.head .menu .fir.cur a::after {
  width: 30px;
}

.head .menu .fir .sub-menu {
  width: 160px;
  background: #fff;
  position: absolute;
  bottom: 100px;
  left: 50%;
  margin-left: -80px;
  z-index: -1;
  box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
  overflow: hidden;
  opacity: 0.95;
  display: none;
}

.head.dark .menu .fir .sub-menu {
  top: 100px;
  bottom: auto;
}

.head.sunlight .menu .fir .sub-menu {
  top: 100px;
  bottom: auto;
}

.head .menu .fir .sub-menu .sub-bg {
  display: inline-flex;
  padding: 10px 15px;
  width: 100%;
}

.head .menu .fir .sub-menu .sub-title {
  padding-right: 60px;
  display: none;
}

.head .menu .fir .sub-menu .sub-title h3 {
  font-size: 18px;
  line-height: 36px;
  color: #9d120f;
}

.head .menu .fir .sub-menu .sub-title p {
  white-space: nowrap;
  font-size: 24px;
  line-height: 36px;
  color: #eaedef;
  font-weight: 700;
}

.head .menu .fir .sub-menu .sub-items {
  position: relative;
  z-index: 2;
  width: 100%;
}

.head .menu .fir .sub-menu .sub-items a {
  width: auto;
  padding: 0;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  color: #4e4e4e !important;
  position: relative;
  transition: color 0.5s;
  font-weight: 400;
  text-align: center;
}

.head .menu .fir .sub-menu .sub-items a.active,
.head .menu .fir .sub-menu .sub-items a:hover {
  color: #9d120f !important;
  font-weight: 700;
}

active,
.head .menu .fir .sub-menu .sub-items a:hover {
  background-color: rgba(187, 32, 37, 0.1);
  border-radius: 6px;
}

.head .search {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-left: 20px;
  color: #fff;
}

.head .search .search-btn {
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50px;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #b92e32;
  line-height: 40px;
}

.head .search .search-btn:hover {
  transform: scale(1.1);
}

.head .search .search-btn i {
  font-size: 18px;
  color: #fff;
}

.head.white .menu .fir {
  color: #fff;
}

.head.white .menu .fir a {
  color: #fff;
}

.head.bg-fff {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.head.dark .menu .fir {
  color: #333;
}

.head.dark .menu .fir.cur a {
  color: #9d120f;
}

.head.dark .search {
  color: #333;
}

.head.sunlight .menu .fir a {
  color: #FFFFFF;
}

.head.sunlight .search {
  color: #FFFFFF;
}

.head.sunlight .logo img.logobai {
  display: block;
}

.head.sunlight .logo img.logohei {
  display: none;
}

.head.sunlight.bg-fff .menu .fir a {
  color: #333;
}

.head.sunlight.bg-fff .menu .fir.cur a {
  color: #9d120f;
}

.head.sunlight.bg-fff .search {
  color: #333;
}

.head.sunlight.bg-fff .logo img.logobai {
  display: none;
}

.head.sunlight.bg-fff .logo img.logohei {
  display: block;
}

.head.white .menu .fir.cur a {
  color: #ffffff;
}

.head:hover {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.indexpage .head:hover:not(.dark) {
  background: rgba(255,255,255,0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.indexpage .head:not(.dark) .menu .fir .sub-menu{
    background: rgba(255,255,255,0.6);
}
.indexpage .head:hover 

.head:hover .menu-btn i {
  color: #333;
}

.head:hover .menu .fir {
  color: #333;
}

.head:hover .menu .fir a {
  color: #333;
}

.head:hover .menu .fir a:hover {
  color: #b92e32;
}

.head:hover .menu .fir.cur a {
  color: #9d120f;
}

.head:hover .logo .logobai {
  display: none !important;
}

.head:hover .logo .logohei {
  display: block !important;
}

.head:hover .search {
  color: #333;
}

.head:hover .search .phonenum {
  color: #9d120f;
}

.head:hover .search .phonenum i {
  color: #9d120f;
}

.head:hover .search .phonenum::after {
  background: linear-gradient(0deg, transparent, #9b9b9b, transparent);
}

.head.open {
  background-color: #FFFFFF;
}

.headzw {
  height: 100px;
}

/* 通用头部end -------------------------*/


/* 右边悬浮 */
.contact {
  position: fixed;
  right: 20px;
  top: 50%;
  margin-top: 20px;
  z-index: 1000;
  transition: all 0.3s;
  width: 50px;
}

.contact .hxqybtn {
  width: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50px;
  margin-bottom: 9px;
  position: relative;
  background-color: rgba(187, 32, 37, 0.7);
  padding: 24px 0;
}

.contact .hxqybtn .text {
  font-size: 22px;
  line-height: 24px;
  width: 26px;
  display: inline-block;
  color: #FFFFFF;
}

.contact .hxqyshow {
  position: absolute;
  top: 0;
  right: 50px;
  padding-right: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.contact .hxqybtn:hover .hxqyshow {
  opacity: 1;
  padding-right: 27px;
  visibility: visible;
}

.contact .hxqyshow .box {
  width: 1564px;
  height: 385px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 28px 50px 0 50px;
}

.contact .hxqyshow .box .enterprise-box {
  width: 25%;
  float: left;
  padding-right: 10px;
}

.contact .hxqyshow .box .enterprise-box:first-child {
  width: 50%
}

.contact .hxqyshow .box .enterprise-box .title {
  line-height: 36px;
  color: #b92e32;
  text-align: left;
}

.contact .hxqyshow ul {
  text-align: left;
  float: left;
  width: 100%;
  padding-right: 20px;
  height: 284px;
  overflow: auto;
}

.contact .hxqyshow ul li {
  width: 100%;
  float: left;
}

.contact .hxqyshow .box .enterprise-box:first-child ul li {
  width: 50%;
}

.contact .hxqyshow ul li a {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  color: #333333;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.contact .hxqyshow ul li a:hover {
  color: #b92e32;
}

.contact .hxqyshow .more {
  width: 50px;
  height: 50px;
  background-color: #b92e32;
  border-radius: 8px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  right: 40px;
  bottom: 14px;
  color: #FFFFFF;
  font-size: 16px;
}

.contact .hxqyshow .more:hover {
  opacity: 0.6;
}


.contact .btn {
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  margin-bottom: 9px;
  position: relative;
  background-color: rgba(187, 32, 37, 0.7);
  padding: 0;
}

.contact .btn::before,
.contact .hxqybtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #bb2025;
  transition: all 0.5s ease-in-out;
  z-index: -1;
  opacity: 0;
  transform: scale(0);
}

.contact .btn.upbtn {
  display: none;
}

.contact .btn i {
  font-size: 22px;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
  line-height: 50px;
  font-size: 30px;
}

.contact .btn:hover::before,
.contact .hxqybtn:hover::before {
  opacity: 1;
  transform: scale(1);
}

.contact .btn:hover i {
  color: #fff;
}

.contact .btn:hover .showqrlist {
  opacity: 1;
  padding-right: 27px;
  visibility: visible;
}

.contact .showqrlist {
  position: absolute;
  top: -60px;
  right: 50px;
  padding-right: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.contact .showqrlist .box {
  height: 204px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 28px 18px 0;
  display: flex;
  justify-content: space-between;
}

.contact .showqrlist .item {
  width: 111px;
  height: 110px;
  margin: 0 10px;
}

.contact .showqrlist .item img {
  width: 111px;
  height: 110px;
  display: block;
  box-shadow: 0 4px 10px #c9c9c9;
  border-radius: 6px;
}

.contact .showqrlist .item .text {
  color: #656565;
  font-size: 16px;
  margin-top: 18px;
}

/* 右边悬浮end -------------------------*/
/* 下滑继续提示 -------------------------*/
.mouse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  z-index: 10;
}

.mouse p {
  margin-top: 12px;
  line-height: 1.2;
  color: #fff;
  font-size: 14px;
}

.mouse span {
  display: block;
  margin: auto;
  width: 20px;
  height: 28px;
  background: url(../Images/mouse1.png) center no-repeat;
  background-size: cover;
}

.mouse span::after {
  position: absolute;
  left: 50%;
  margin-left: -1px;
  top: 6px;
  content: "";
  width: 2px;
  height: 7px;
  background: #fff;
  animation: mouseDown 1.2s infinite alternate;
}

@keyframes mouseDown {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* SVG鼠标滚动提示 */
svg.mouse {
  fill: #fff;
  width: 100px;
  height: 120px;
  display: block;
  margin: 0 auto;
}

svg.mouse polygon {
  opacity: 0;
}

svg.mouse polygon:first-child {
  animation: mouseDown .9s linear 0s infinite;
}

svg.mouse polygon:nth-child(2) {
  animation: mouseDown .9s linear .3s infinite;
}

svg.mouse polygon:nth-child(3) {
  animation: mouseDown .9s linear .6s infinite;
}

/* 下滑继续提示end -------------------------*/
/* 页脚 -------------------------*/
/* 页脚 -------------------------*/
.foot {
  width: 100%;
  height: auto;
  background: #ffffff;
  color: #333;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible !important;
}

.foot.pubfoot {
  padding: 0 6.25vw;
}

/* 页脚主体 */
.foot .foot-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 0 30px;
  position: relative;
  z-index: 2;
  background: url(../Images/footerbg.jpg) no-repeat center;
  background-size: auto 100%;
  height: 337px;
  padding: 66px 120px 0;
  background-color: #EFEFEF;
}

/* 左侧区域 */
.foot .foot-body .foot-left {
  flex: 1;
  margin-right: 60px;
}

/* 邮件/招聘按钮 */
.foot .foot-body .foot-left .email {
  display: flex;
  gap: 20px;
  margin-bottom: 37px;
}

.foot .foot-body .foot-left .email .box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  font-size: 16px;
  color: #333;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
  width: 208px;
  height: 63px;
  background-color: #ffffff;
  box-shadow: 0px 3px 7px 0px rgba(59, 59, 59, 0.17);
  border-radius: 6px;
  justify-content: center;
}

.foot .foot-body .foot-left .email .box:hover {
  box-shadow: 0 6px 20px rgba(185, 46, 50, 0.18);
  transform: translateY(-3px);
  color: #9d120f;
}

.foot .foot-body .foot-left .email .box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 5px;
}

/* 地址/电话 */
.foot .foot-body .foot-left .foot-info {
  margin-bottom: 25px;
}

.foot .foot-body .foot-left .foot-info p {
  font-size: 18px;
  color: #666;
  line-height: 31px;
  margin: 0;
}

.foot .foot-body .foot-left .foot-info p i {
  margin-right: 6px;
  font-size: 14px;
  color: #999;
}

/* 下拉选择框区域 */
.foot .foot-body .foot-left .selects {
  display: flex;
  gap: 20px;
}

.foot .foot-body .foot-left .selects .selectbox {
  position: relative;
}

.foot .foot-body .foot-left .selects .selectbox .select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #d0d3d9;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

.foot .foot-body .foot-left .selects .selectbox .select:hover {
  border-color: #9d120f;
}

.foot .foot-body .foot-left .selects .selectbox .select .select-title {
  font-size: 14px;
  color: #666;
}

.foot .foot-body .foot-left .selects .selectbox .select i {
  font-size: 12px;
  color: #999;
  transition: transform 0.3s;
}

.foot .foot-body .foot-left .selects .selectbox.open .select {
  border-color: #9d120f;
}

.foot .foot-body .foot-left .selects .selectbox.open .select i {
  transform: rotate(180deg);
}

.foot .foot-body .foot-left .selects .selectbox .select-options {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  overflow: auto;
  max-height: 300px;
}

.foot .foot-body .foot-left .selects .selectbox.open .select-options {
  display: block;
}

.foot .foot-body .foot-left .selects .selectbox .select-options .select-option {
  padding: 10px 16px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  width: 100%;
}

.foot .foot-body .foot-left .selects .selectbox .select-options .select-option:hover {
  background: #f5f5f5;
  color: #9d120f;
}

/* 右侧二维码区域 */
.foot .foot-body .foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  /* padding-right: 90px; */
}

.foot .foot-body .foot-right .foot-code {
  display: flex;
  gap: 40px;
  text-align: center;
}

.foot .foot-body .foot-right .foot-code .codeb {
  text-align: center;
}

.foot .foot-body .foot-right .foot-code .codeb:first-child {
  position: relative;
}

.foot .foot-body .foot-right .foot-code img {
  width: 111px;
  height: 111px;
  background-color: #fff;
  box-sizing: border-box;
  display: block;
  padding: 6px;
  transition: transform 0.3s;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.foot .foot-body .foot-right .foot-code .codeb:hover img {
  transform: scale(1.08);
}

.foot .foot-body .foot-right .foot-code p {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  color: #666;
}

/* 底部版权栏 */
.foot .foot-copy {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  color: #222222;
  font-size: 14px;
  line-height: 23px;
}

.foot .foot-copy p {
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
}

.foot .foot-copy a {
  color: #222222;
  transition: color 0.4s;
  text-decoration: none;
  font-size: 14px;
}

.foot .foot-copy a:hover {
  color: #9d120f;
}

/* 页脚end -------------------------*/
/* 分页 -------------------------*/
.pageation {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pageation .page-item {
  min-width: 40px;
  padding: 0 12px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #333333;
  background-color: #f9f9f9;
  border-radius: 20px;
  margin: 0 6px;
}

.pageation .page-item .iconfont {
  font-size: 20px;
}

.pageation .wide {
  width: 80px;
}

.pageation a.page-item:hover {
  background-color: #b92e32;
  color: #fff;
  opacity: 0.9;
}

.pageation .page-item.active {
  background-color: #b92e32;
  color: #fff;
}

.pageation .text {
  line-height: 40px;
  color: #666666;
  font-size: 14px;
  margin: 0 10px;
}

.pageation .input {
  width: 58px;
  height: 38px;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #dddddd;
  margin: 0 4px;
  text-align: center;
  padding: 0 4px;
}

.pageation .submit {
  width: 58px;
  height: 40px;
  background-color: #b92e32;
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ffffff;
  margin: 0 6px;
}

/* 分页end -------------------------*/


.hnum {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hnum.animate {
  opacity: 1;
  transform: translateY(0);
}

.com-top-banner {
  /* height: 365px; */
  position: relative;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.com-top-banner .backbanner {
  width: 100%;
  display: inline-block;
}

.com-top-banner h3 {
  position: absolute;
  top: 0;
  z-index: 10;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding-top: 8%;
}

.com-top-banner .entitle {
  font-size: 22px;
  color: #FFFFFF;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 10;
  top: 0;
  padding-top: 8%;
  margin-top: 42px;
}

.com-top-banner .waves {
  position: absolute;
  width: 100%;
  height: 60px;
  margin-bottom: -7px;
  min-height: 60px;
  max-height: 100px;
  bottom: 0;
  left: 0;
}

.com-top-banner .waves .parallax>use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.com-top-banner .waves .parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 10s;
}

.com-top-banner .waves .parallax>use:nth-child(2) {
  animation-delay: -4s;
  animation-duration: 8s;
}

.com-top-banner .waves .parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 6s;
}

.wavetop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  width: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.3;
}

/* 通用样式 */
.pagecenter {
  width: 1440px;
  margin: 0 auto;
  padding-bottom: 70px;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: initial;
}

.pagee-news-details {
  width: 1280px;
  margin: 0 auto;
  padding-bottom: 114px;
}

/* 面包屑导航 */
.ywbk-breadcrumb {
  padding-top: 39px;
  padding-bottom: 37px;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
  z-index: 5;
}

.ywbk-breadcrumb .breadcrumb-left a {
  display: inline-block;
  padding: 0 26px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  color: #333333;
  text-align: center;
}

.ywbk-breadcrumb .breadcrumb-left a:hover {
  color: #b92e32;
}

.ywbk-breadcrumb .breadcrumb-left a.active {
  font-weight: 900;
  color: #ffffff;
  border-radius: 25px;
  background-color: #b92e32;
}

.ywbk-breadcrumb .back a {
  display: inline-block;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  width: 106px;
  height: 42px;
  background-color: #b92e32;
  border-radius: 21px;
  color: #FFFFFF;
}

.ywbk-breadcrumb .breadcrumb-right {
  font-size: 18px;
  color: #999999;
}

.ywbk-breadcrumb .breadcrumb-right a {
  color: #999999;
}

.ywbk-breadcrumb .breadcrumb-right a:hover {
  color: #B92E32;
}

.ywbk-breadcrumb .breadcrumb-right .breadcrumb-separator {
  display: inline-block;
  margin: 0 2px 0 2px;
}

.ywbk-breadcrumb .breadcrumb-right .active {
  color: #333333;
}

.ywbk-breadcrumb .breadcrumb-right.white * {
  color: #FFFFFF;
  opacity: 0.7;
}

.ywbk-breadcrumb .breadcrumb-right.white .active {
  color: #FFFFFF;
  opacity: 1;

}

.ywbk-breadcrumb .breadcrumb-right.white a:hover {
  opacity: 1;
  color: #FFFFFF;
}

/* 二级导航 */
.second-level {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.second-level .title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #333333;
  line-height: 1;
  margin: 0 36px;
  transition: color 0.3s;
  padding: 20px 0;
}

.second-level .title:hover {
  color: #b92e32;
}

.second-level .title.active {
  color: #b92e32;
  font-weight: bold;
}

.second-level .title.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #b92e32;
}

.second-level .title.active::before {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 100%;
  height: 0;
  height: 3px;
  background-color: #b92e32;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* 空数据提示 */
.nomores {
  text-align: center;
  padding: 50px 0;
  width: 100%;
}

.nomores img {
  width: 460px;
  margin: 0 auto;
}

.nomores p {
  font-size: 18px;
  color: #999999;
  margin: 20px 0;
}

/* 1680************************************************************************************************************ 屏幕适配 */
@media (max-width: 1680px) {
  .head .menu .fir a {
    padding: 0 22px;
  }

  .head .menu .fir .sub-menu .sub-bg {}

  .contact .hxqyshow .box {
    padding: 28px 30px 0 30px;
    width: 1400px;
    height: 340px;
  }
  .contact .hxqyshow ul{
    height: 250px;
  }

  .contact .hxqyshow ul li a {
    font-size: 15px;
    line-height: 30px;
  }

  .head .search .phonenum i {
    font-size: 20px;
  }

  .head .search .phonenum b {
    font-size: 18px;
    display: inline-block;
  }

  .head .search .phonenum::after {
    right: -20px;
  }

  /* 通用样式 */
  .pagecenter {
    padding-bottom: 50px;
  }

  .pagee-news-details {
    padding-bottom: 50px;
  }

  .com-top-banner .backbanner {
    height: 300px;
  }

  .com-top-banner h3,
  .com-top-banner .entitle {
    padding-top: 8%;
  }
}

/* 1440************************************************************************************************************ 屏幕适配 */
@media screen and (min-width: 1084px) and (max-width: 1540px) {
  .contact .hxqyshow .box {
    padding: 18px 20px 0;
    width: 1280px;
    height: 320px;
  }

  .contact .hxqyshow ul li a {
    font-size: 14px;
    line-height: 26px;
  }

  .pubmore {
    width: 52px;
    height: 32px;
  }

  .head {
    padding: 0 70px;
  }

  .head .menu .fir::after {
    background-size: 70px 50px;
  }

  .head .menu .fir a {
    padding: 0 18px;
    font-size: 16px;
  }

  .head .menu .fir .sub-menu .sub-bg {
    padding: 20px;
  }

  .head .search {
    padding: 0 18px;
  }

  .head .search .phonenum i {
    font-size: 18px;
  }

  .head .search .phonenum b {
    font-size: 16px;
    display: inline-block;
  }

  .head .search .phonenum::after {
    right: -15px;
  }

  .foot .foot-body {
    padding: 66px 80px 0;
  }

  /* 页脚 - 中屏优化 */
  .foot .foot-body .foot-left .email .box {
    width: 180px;
    height: 54px;
    font-size: 14px;
  }

  .foot .foot-body .foot-left .foot-info p {
    font-size: 15px;
  }

  .foot .foot-body .foot-left .selects .selectbox .select {
    width: 160px;
    height: 40px;
  }

  .foot .foot-body .foot-right {
    padding-right: 0;
  }

  .foot .foot-body .foot-right .foot-code {
    gap: 24px;
  }

  .foot .foot-body .foot-right .foot-code img {
    width: 90px;
    height: 90px;
  }

  .foot .foot-body .foot-right .foot-code p {
    font-size: 12px;
  }

  /* 右边悬浮 */
  .contact {
    right: 20px;
    top: 50%;
    margin-top: 20px;
    width: 40px;
  }

  .contact .hxqybtn {
    width: 40px;
    margin-bottom: 6px;
    padding: 16px 0;
  }

  .contact .hxqybtn .text {
    font-size: 20px;
    line-height: 22px;
    width: 22px;
  }

  .contact .hxqyshow {
    right: 50px;
  }

  .contact .hxqyshow .box {
    width: 1020px;
    height: 330px;
    padding: 12px 20px 0 20px;
    overflow: auto;
  }

  .contact .hxqyshow .box .enterprise-box .title {
    line-height: 36px;
  }

  .contact .hxqyshow ul {
    padding-right: 10px;
    height: 250px;
  }

  .contact .hxqyshow ul li a {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .contact .hxqyshow .more {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    line-height: 50px;
    right: 40px;
    bottom: 14px;
    font-size: 16px;
  }

  .contact .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 9px;
  }

  .contact .btn i {
    line-height: 40px;
    font-size: 24px;
  }

  .contact .showqrlist {
    top: -60px;
    right: 50px;
  }

  .contact .showqrlist .box {
    height: 180px;
    border-radius: 10px;
    padding: 16px 18px 0;
  }

  .contact .showqrlist .item {
    width: 111px;
    height: 110px;
    margin: 0 10px;
  }

  .contact .showqrlist .item img {
    width: 111px;
    height: 110px;
    border-radius: 6px;
  }

  .contact .showqrlist .item .text {
    font-size: 16px;
    margin-top: 18px;
  }

  /* 右边悬浮end -------------------------*/






  /* 通用样式 */
  .pagecenter {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .pagee-news-details {
    width: 980px;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .com-top-banner .backbanner {
    height: 300px;
  }

  .com-top-banner h3,
  .com-top-banner .entitle {
    padding-top: 10%;
  }

  /* 面包屑导航 */
  .ywbk-breadcrumb {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ywbk-breadcrumb .breadcrumb-left a {
    width: auto;
    padding: 0 20px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }

  .ywbk-breadcrumb .back a {
    font-size: 16px;
    line-height: 36px;
    height: 36px;
    width: 88px;
  }

  .ywbk-breadcrumb .breadcrumb-right {
    font-size: 16px;
  }

  /* 二级导航 */
  .second-level {
    padding-top: 20px;
  }

  .second-level .title {
    font-size: 16px;
    margin: 0 20px;
    padding: 16px 0;
  }
}

/* 1024************************************************************************************************************ 屏幕适配 */
@media screen and (max-width: 1083px) {
  .minshow {
    display: block !important;
  }

  .maxshow {
    display: none !important;
  }

  .head {
    height: 60px;
    padding: 0 0 0 3vw;
    top: 0;
  }

  .head .menu-btn {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
  }

  .head .menu-btn .close {
    display: none;
  }

  .head.open .menu-btn .open {
    display: none;
  }

  .head.open .menu-btn .close {
    display: inline-block;
  }

  .head .menu-btn i {
    font-size: 18px;
    color: #FFFFFF;
    float: none;
    opacity: 1;
  }

  .head.dark .menu-btn i {
    color: #222222;
  }

  .head.sunlight .menu-btn i {
    color: #FFFFFF;
  }

  .head.sunlight.bg-fff .menu-btn i {
    color: #333333;
  }

  .head.sunlight.open .menu-btn i {
    color: #333333;
  }

  .head .logo img {
    width: auto;
    height: 30px;
    object-fit: contain;
  }

  .head .menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .head .menu.active {
    display: flex;
  }

  .head .menu .fir {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f0f0f0;
  }

  .head .menu .fir:first-child::before {
    display: none;
  }

  .head .menu .fir .sub-menu {
    position: static;
    padding: 2vw 4vw;
    box-shadow: none;
    border-top: 1px solid #f0f0f0;
    margin-left: 0;
    width: 100%;
  }

  .head .menu .fir .sub-menu .sub-bg {
    padding: 0;
    width: 100%;
  }

  .head .menu .fir .sub-menu .sub-title {
    display: none;
  }

  .head .menu .fir .sub-menu .sub-items {
    width: 100%;
    padding: 0;
    margin-right: 0;
    border-right: 0;
  }

  .head .menu .fir .sub-menu .sub-items a {
    display: block;
    padding: 0 4vw;
    width: 100%;
    text-align: left;
  }

  .head .menu .fir::after {
    display: none;
  }

  .head .menu .fir::before {
    content: "\e607";
    font-family: "iconfont";
    font-size: 20px;
    line-height: 30px;
    position: absolute;
    right: 4vw;
    top: 16px;
    width: auto;
    height: auto;
    border: none;
    transform: translateX(0);
    transition: transform 0.2s;
    filter: none;
    display: block;
    left: auto;
    bottom: auto;
    color: #686868;
  }

  .head .menu .fir a {
    padding: 20px 20px;
    color: #333 !important;
    font-size: 16px;
    justify-content: flex-start;
    width: auto;
    height: 4em;
    display: inline-block;
  }

  .head .menu .fir.cur a,
  .head .menu .fir:active a {
    color: #173fb8;
  }

  .head .menu .fir:hover {
    font-weight: normal;
  }

  .head .menu .fir.open::before {
    transform: rotate(90deg);
  }

  .head .search {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }

  .head .search .caidan {
    font-size: 6vw;
    display: block;
  }

  .head .search .phonenum {
    display: none;
  }

  .head .search .search-btn {
    padding: 0 10px;
    width: 40vw;
    margin: 3vw auto 0;
  }

  .head .search .search-btn i {
    font-size: 24px;
  }

  .head.menu-open .menu {
    display: flex;
  }

  .head.menu-open .caidan::before {
    content: "\e654";
  }

  .headzw {
    height: 60px;
  }

  .kefuModal {
    width: 90vw;
  }

  .contact {
    top: auto;
    bottom: 15%;
    height: 12vw;
    margin: 0;
    right: 3vw;
  }

  .contact .hxqybtn,
  .contact .btn {
    display: none;
  }

  .contact .upbtn {
    display: inline-block;
    width: 12vw;
    height: 12vw;
  }

  .contact .btn i {
    font-size: 24px;
  }

  .pageation {
    margin-top: 6vw;
  }

  .pageation .page-item {
    line-height: 6vw;
    height: 6vw;
    padding: 0 2vw;
    border-radius: 1vw;
  }

  .pageation .text,
  .pageation .input,
  .pageation .submit {
    line-height: 6vw;
    height: 6vw;
    font-size: 12px;
    border-radius: 1vw;
  }

  .pageation .input {
    width: 7vw
  }

  .pageation .page-item .iconfont {
    font-size: 4vw;
  }

  /* 页脚 - 平板端优化（保留友情链接） */
  .foot .foot-body {
    flex-direction: column;
    padding: 40px 40px 20px;
    height: auto;
  }

  .foot .foot-body .foot-left {
    width: 100%;
    margin-right: 40px;
  }

  .foot .foot-body .foot-left .email {
    flex-wrap: wrap;
    gap: 3vw;
  }

  .foot .foot-body .foot-left .email .box {
    width: 180px;
    height: 55px;
    font-size: 15px;
  }

  .foot .foot-body .foot-left .email .box img {
    width: 28px;
    height: 28px;
  }

  .foot .foot-body .foot-left .foot-info p {
    font-size: 14px;
    line-height: 28px;
  }

  .foot .foot-body .foot-left .selects {
    flex-wrap: wrap;
    gap: 15px;
  }

  .foot .foot-body .foot-left .selects .selectbox .select {
    width: 140px;
    height: 40px;
    padding: 0 15px;
  }

  .foot .foot-body .foot-left .selects .selectbox .select .select-title {
    font-size: 14px;
  }

  .foot .foot-body .foot-left .selects .selectbox .select i {
    font-size: 12px;
  }

  .foot .foot-body .foot-left .selects .selectbox .select-options {
    max-height: 250px;
  }

  .foot .foot-body .foot-left .selects .selectbox .select-option {
    font-size: 13px;
    padding: 8px 15px;
  }

  .foot .foot-body .foot-right {
    width: 100%;
    margin-top: 4vw;
    padding-right: 0;
  }

  .foot .foot-body .foot-right .foot-code {
    gap: 0;
    width: 100%;
    justify-content: space-around;
  }

  .foot .foot-body .foot-right .foot-code img {
    width: 100px;
    height: 100px;
  }

  .foot .foot-body .foot-right .foot-code p {
    font-size: 10px;
  }

  .foot .foot-copy {
    padding: 15px 0;
    font-size: 13px;
  }

  .foot .foot-copy a {
    font-size: 13px;
  }

  /* 核心企业悬浮 - 平板端优化 */
  .contact .btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
  }

  .contact .hxqybtn .text {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 11px;
    padding: 5px;
  }

  .contact .hxqybtn .hxqyshow .box {
    max-width: 500px;
  }

  .contact .hxqybtn .hxqyshow .enterprise-box {
    padding: 15px;
  }

  .contact .hxqybtn .hxqyshow .enterprise-box ul li {
    font-size: 13px;
    line-height: 1.6;
  }


  .com-top-banner {
    height: 300px;
  }

  .com-top-banner .backbanner {
    height: 300px;
  }

  .com-top-banner h3,
  .com-top-banner .entitle {
    padding-top: 15%;
  }

  .com-top-banner .waves {
    height: 5vw;
    min-height: 5vw;
  }

  /* 通用样式 */
  .pagecenter {
    width: 100%;
    padding: 0 20px 30px;
    box-sizing: border-box;
  }

  .pagee-news-details {
    width: 100%;
    padding: 0 50px 30px;
  }

  /* 面包屑导航 */
  .ywbk-breadcrumb {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ywbk-breadcrumb .breadcrumb-left a {
    width: auto;
    height: 32px;
    padding: 0 12px;
    font-size: 16px;
    line-height: 32px;
  }

  .ywbk-breadcrumb .back a {
    width: 70px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
  }

  .ywbk-breadcrumb .breadcrumb-right {
    font-size: 14px;
  }

  /* 二级导航 */
  .second-level {
    padding-top: 10px;
  }

  .second-level .title {
    font-size: 14px;
    margin: 0 16px;
    padding: 10px 0;
  }

  /* 空数据提示 */
  .nomores {
    padding: 10vw 0;
  }

  .nomores img {
    width: 60%;
    max-width: 300px;
  }

  .nomores p {
    font-size: 16px;
  }
}

/* ==========================================
    移动端样式 (< 768px)
    ========================================== */
@media screen and (max-width: 767px) {

  /* 全局 */
  html {
    height: auto;
    overflow: auto;
  }

  body {
    height: auto;
  }

  /* 页脚 - 移动端优化（去掉友情链接） */
  .foot .foot-body {
    flex-direction: column;
    padding: 3vw 3vw;
    height: auto !important;
  }

  .foot .foot-body .foot-left {
    width: 100%;
    margin-right: 0;
  }

  .foot .foot-body .foot-left .email {
    gap: 10px;
    margin-bottom: 3vw;
    flex-wrap: nowrap;
  }

  .foot .foot-body .foot-left .email .box {
    width: 50%;
    height: 45px;
    font-size: 14px;
    justify-content: center;
  }

  .foot .foot-body .foot-left .email .box img {
    width: 20px;
    height: 20px;
  }

  .foot .foot-body .foot-left .foot-info {
    margin-bottom: 0;
  }

  .foot .foot-body .foot-left .foot-info p {
    font-size: 12px;
    line-height: 1.5em;
  }

  .foot .foot-body .foot-left .foot-info p i {
    font-size: 12px;
    margin-right: 5px;
  }

  /* 移动端隐藏友情链接（下拉选择框） */
  .foot .foot-body .foot-left .selects {
    display: none !important;
  }

  .foot .foot-body .foot-right {
    padding-right: 0;
    align-items: center;
    margin-top: 3vw;
  }

  .foot .foot-body .foot-right .foot-code {
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-around;
    width: 100%;
  }

  .foot .foot-body .foot-right .foot-code .codeb {
    width: 15vw;
  }

  .foot .foot-body .foot-right .foot-code img {
    width: 15vw;
    height: 15vw;
  }

  .foot .foot-body .foot-right .foot-code p {
    text-align: center;
    margin-top: 5px;
  }

  .foot .foot-copy {
    height: auto;
    display: block;
    padding: 2vw 3vw;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
  }

  .foot .foot-copy a {
    font-size: 11px;
  }

  .foot .foot-copy p {
    margin: 3px 0;
    font-size: 12px;
  }

  /* 侧边悬浮 - 移动端隐藏 */
  .contact {}

  /* 鼠标动画隐藏 */
  .mouse {
    display: none !important;
  }

  /* 禁用移动端hover效果 */
  .head:hover {
    box-shadow: none;
  }

  .head:hover .menu-btn i {
    color: inherit;
  }

  .head:hover .menu .fir {
    color: inherit;
  }

  .head:hover .menu .fir a {
    color: inherit;
  }

  .head:hover .menu .fir.cur a {
    color: inherit;
  }

  .com-top-banner {
    height: 40vw;
  }

  .com-top-banner .backbanner {
    height: 40vw;
  }

  .com-top-banner h3,
  .com-top-banner .entitle {
    padding-top: 20vw;
  }

  .com-top-banner h3 {
    font-size: 5vw;
    line-height: 5vw;
  }

  .com-top-banner .entitle {
    font-size: 3vw;
    margin-top: 6vw;
  }

  .com-top-banner .waves {
    height: 5vw;
    min-height: 5vw;
  }

  /* 通用样式 */
  .pagecenter {
    width: 100%;
    padding: 0 3vw 5vw;
  }

  .pagee-news-details {
    width: 100%;
    padding: 0 3vw 5vw;
  }

  .ywbk-breadcrumb .breadcrumb-left {
    scroll-snap-type: x mandatory;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    gap: 3vw;
    padding-bottom: 4px;
  }

  .ywbk-breadcrumb .breadcrumb-left a {
    scroll-snap-align: start;
    flex-shrink: 0;
    text-align: center;
    font-size: 15px;
  }

  .ywbk-breadcrumb .breadcrumb-right {
    display: none;
  }
}


/* 模态框 */
.msk-model{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 11111111111;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
}
.msk-model.open{
  display: block;
}
.msk-model .mskmodel-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  height: fit-content;
  background: #fff;
  border-radius: 20px;
  max-width: 90%;
  max-height: 90vh;

}
.msk-model .mskmodel-content .title{
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.msk-model .mskmodel-content .desc{
  font-size: 16px;
  line-height: 1.6;
  padding: 0px 30px 30px;
  overflow-y: hidden;
  overflow-y: scroll;
  margin-top: 20px;
}
.msk-model .mskmodel-content .title-box{
  border-bottom: 1px solid #ccc;
  padding: 16px 30px;
}
.msk-model .mskmodel-content .title-box button{
  height: 28px;
  line-height: 28px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  outline: none;
  padding-left: 20px;
}

.msk-model .mskmodel-content .title-box button:hover .iconfont{
  color: #B92E32;
}
.msk-model .mskmodel-content .title-box .iconfont{
  cursor: pointer;
}
@media screen and (max-width: 767px){
  .msk-model .mskmodel-content{
    border-radius: 10px;
    width: 600px !important;
  }
  .msk-model .mskmodel-content .title{
    font-size: 18px;
    line-height: 22px;
  }
  .msk-model .mskmodel-content .desc{
    font-size: 14px;
    line-height: 1.6;
    padding: 16px;
  }

  .msk-model .mskmodel-content .title-box button{
    padding-left: 10px;
  }
  .msk-model .mskmodel-content .title-box{
    padding: 10px 16px;
  }
}

.tac{
  text-align: center;
}

.fw-bold{
  font-weight: bold;
}
