/*基础CSS*/
html {
	font-size: 14px;
	overflow-x: hidden;
}
li {
	list-style: none;
}
a {
	color: #212529
}
a:hover {
	text-decoration: none;
}
p, dl, dt, dd, ul {
	margin: 0px;
	padding: 0px;
}
.red{
	color:red;
}
.text-secondary a {
	color: #6c757d;
}
.card, .figure {
	margin: 15px 0;
}
.navbar-expand-lg .navbar-nav .nav-link {
	padding-right: 1.2rem;
	padding-left: 1.2rem;
	font-size: 14px;
}
.navbar-brand {
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.shadow-sm-top {
	box-shadow: 0 -.125rem .25rem rgba(0,0,0,.075) !important;
}
/*上下外边距*/
.mt-6, .my-6 {
	margin-top: 4rem !important;
}
.mt-7, .my-7 {
	margin-top: 5rem !important;
}
.mt-8, .my-8 {
	margin-top: 6rem !important;
}
.mt-9, .my-9 {
	margin-top: 7rem !important;
}
.mt-10, .my-10 {
	margin-top: 8rem !important;
}
.mb-6, .my-6 {
	margin-bottom: 4rem !important;
}
.mb-7, .my-7 {
	margin-bottom: 5rem !important;
}
.mb-8, .my-8 {
	margin-bottom: 6rem !important;
}
.mb-9, .my-9 {
	margin-bottom: 7rem !important;
}
.mb-10, .my-10 {
	margin-bottom: 8rem !important;
}
/*上下内边距*/
.pt-6, .mp-6 {
	padding-top: 4rem !important;
}
.pt-7, .py-7 {
	padding-top: 5rem !important;
}
.pt-8, .py-8 {
	padding-top: 6rem !important;
}
.pt-9, .py-9 {
	padding-top: 7rem !important;
}
.pt-10, .py-10 {
	padding-top: 8rem !important;
}
.pb-6, .py-6 {
	padding-bottom: 4rem !important;
}
.pb-7, .py-7 {
	padding-bottom: 5rem !important;
}
.pb-8, .py-8 {
	padding-bottom: 6rem !important;
}
.pb-9, .py-9 {
	padding-bottom: 7rem !important;
}
.pb-10, .py-10 {
	padding-bottom: 8rem !important;
}
/*边框*/
.border-top-dashed {
	border-top: 1px dashed #dee2e6 !important;
}
.border-right-dashed {
	border-right: 1px dashed #dee2e6 !important;
}
.border-bottom-dashed {
	border-bottom: 1px dashed #dee2e6 !important;
}
.border-right-dashed {
	border-top: 1px dashed #dee2e6 !important;
}
/*字距*/
.ls-1 {
	letter-spacing: 1px;
}
.ls-2 {
	letter-spacing: 2px;
}
.ls-3 {
	letter-spacing: 3px;
}
.ls-4 {
	letter-spacing: 4px;
}
.ls-5 {
	letter-spacing: 5px;
}
/* —————————— 页头导航开始 —————————— */

/* 固定定位的页头容器 */
.header {
  height: 80px;               /* 高度固定为80px */
  position: fixed;            /* 固定在视口顶部，不随滚动移动 */
  width: 100%;                /* 宽度占满整个屏幕 */
  left: 0;
  top: 0;                     /* 贴紧顶部 */
  background: #fff;           /* 白色背景 */
  z-index: 22;                /* 层级较高，确保在其他内容之上 */
}

/* 页头内部居中容器（最大宽度限制） */
.header .wrap {
  height: 100%;               /* 高度继承父容器（80px） */
  max-width: 1440px;          /* 最大宽度1440px，适配大屏 */
  margin: auto;               /* 水平居中 */
  display: flex;              /* 使用 Flex 布局 */
  align-items: center;        /* 子元素垂直居中 */
}

/* Logo 样式 */
.header .logo {
  width: 201px;
  height: 51px;               /* 固定尺寸，通常用于 img 或 background */
}

  .header .fl {
display: flex;
justify-content: center; 
align-items: center;
  }


/* 导航右侧区域（包含菜单和图标） */
.header .fr {
  flex: 1;                    /* 占据剩余空间 */
  display: flex;
  align-items: center;
  margin-left: 30px;          /* 左右留白 */
  margin-right: 30px;
}

/* 主导航菜单 ul */
.header .fr ul {
  display: flex;
  flex: 1;                    /* 占满 .fr 的剩余空间 */
  margin-left: 100px;         /* 左右大幅内边距（桌面端留白） */
  margin-right: 100px;
}

/* 每个菜单项 li */
.header .fr ul li {
  flex: 1;                    /* 平分 ul 宽度 */
  position: relative;         /* 为子元素绝对定位做准备 */
}

/* 菜单项底部动态指示条（默认宽度0） */
.header .fr ul li:after {
  width: 0px;                 /* 初始隐藏 */
  transition: all 0.3s ease;  /* 平滑过渡效果 */
  height: 2px;                /* 指示条高度 */
  background: #17a2b8;        /* 青蓝色 */
  border-radius: 4px;         /* 圆角 */
  content: '';                /* 伪元素必须有 content */
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;               /* 水平居中 */
  bottom: 12px;               /* 距离文字底部12px */
}

/* 菜单项链接 a */
.header .fr ul li > a {
  font-size: 18px;
  text-align: center;         /* 文字居中 */
  color: #333;                /* 默认深灰色 */
  display: block;
  line-height: 101px;         /* 行高大于容器高度（80px），可能是为了兼容旧设计或视觉微调 */
  transition: all 0.3s ease;  /* 颜色/图标平滑变化 */
}

/* 菜单项中的图标（如向下箭头） */
.header .fr ul li > a i {
  vertical-align: 3px;        /* 微调图标垂直位置 */
}

/* 鼠标悬停时图标旋转（模拟下拉箭头翻转） */
.header .fr ul li:hover > a i {
  transform: rotate(-180deg); /* 向上翻转180度 */
  vertical-align: -5px;       /* 调整对齐，避免跳动 */
}

/* 悬停或当前激活项：显示指示条（宽度80%） */
.header .fr ul li:hover:after,
.header .fr ul li.on:after {
  width: 80%;
}

/* 悬停或当前激活项：文字变青蓝色 */
.header .fr ul li:hover > a,
.header .fr ul li.on > a {
  color: #17a2b8;
}

/* 下拉菜单 dl（默认隐藏） */
.header .fr ul li dl {
  border: 1px solid #17a2b8;
  background: rgba(255, 255, 255, 0.96); /* 半透明白底 */
  position: absolute;
  width: 160px;               /* 固定宽度 */
  top: 130%;                  /* 初始位置在下方不可见处 */
  left: 50%;
  transform: translateX(-50%);/* 水平居中 */
  padding: 20px 0;
  opacity: 0;                 /* 透明度为0（隐藏） */
  transition: all 0.3s ease;  /* 平滑显示 */
  overflow: hidden;
  visibility: hidden;         /* 完全不可见（不影响布局） */
}

/* 下拉菜单中的链接 */
.header .fr ul li dl a {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #666;                /* 灰色文字 */
  padding: 10px 0;
  transition: all 0.3s ease;
}

/* 下拉菜单链接悬停效果 */
.header .fr ul li dl a:hover {
  color: #17a2b8;             /* 变青蓝 */
}

/* 鼠标悬停时显示下拉菜单 */
.header .fr ul li:hover dl {
  top: 100%;                  /* 移到紧贴主菜单下方 */
  opacity: 1;
  visibility: visible;
}

/* 页头右侧功能图标容器（如搜索、菜单按钮） */
.header .fr .head-icon {
  display: flex;
}

/* 功能图标链接 */
.header .fr .head-icon a {
  margin-left: 16px;
  color: #333;
  font-size: 15px;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;               /* 默认半透明 */
  transition: all 0.3s ease;
}

/* 图标悬停时完全不透明 */
.header .fr .head-icon a:hover {
  opacity: 1;
}

/* 图标内部容器（确保居中） */
.header .fr .head-icon a .menu-icons {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 移动端菜单按钮默认隐藏（桌面端不用） */
.header .fr .head-icon .menu-ico {
  display: none;
}

/* 关闭图标默认隐藏 */
.header .fr .head-icon .menu-ico .fa-close {
  display: none;
}

/* 当菜单按钮激活（.on）时：显示关闭图标，隐藏菜单图标 */
.header .fr .head-icon .menu-ico.on .fa-close {
  display: block;
}
.header .fr .head-icon .menu-ico.on .fa-navicon {
  display: none;
}

/* 移动端导航菜单（默认隐藏） */
.mobile-nav {
  position: fixed;
  top: 60px;                  /* 在 header 下方（注意：header 高度会变） */
  display: none;              /* 桌面端隐藏 */
  width: 100%;
  z-index: 22;
}

/* 移动端菜单项 */
.mobile-nav li {
  position: relative;
}

.mobile-nav li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  background: rgba(23, 162, 184, 1.0); /* 青蓝背景 */
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 移动端下拉子菜单（默认隐藏） */
.mobile-nav li dl {
  display: none;
}

/* 移动端子菜单链接 */
.mobile-nav li dl dd a {
  text-indent: 2em;           /* 缩进表示层级 */
  font-size: 13px;
  background: rgba(23, 162, 184, 0.9);
  color: rgba(255, 255, 255, 0.6);
}

/* 移动端菜单项悬停效果 */
.mobile-nav li a:hover {
  background: #17a2b8;
  color: #fff;
}

/* 当前激活项（此处样式可能未完全实现，red 与整体风格不符） */
.mobile-nav li a.on {
  color: red;
}

/* 移动端下拉箭头按钮 */
.mobile-nav li .mdown {
  position: absolute;
  right: 20px;
  top: 7px;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  /* 使用背景图作为下箭头 */
  background: rgba(255, 255, 255, 0.3) url(/template/blue/images/down.png) no-repeat center;
  background-size: 10px auto;
}

/* 点击后箭头向上翻转 */
.mobile-nav li .mdown.on {
  transform: rotate(-180deg);
}

/* 为防止 fixed header 遮挡内容，页面顶部预留空间 */
.mb-h60 {
  height: 80px;               /* 与 header 高度一致 */
}

/* 移除所有元素聚焦时的默认轮廓线（提升UI美观） */
*:focus {
  outline: none;
}

/* 遮罩层（用于移动端菜单或弹窗背景） */
.mask {
  width: 100%;
  height: 100%;
  z-index: 222;               /* 高于 header */
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  display: none;              /* 默认隐藏 */
}

/* 搜索弹窗 */
.alert-search {
  width: 360px;
  border-radius: 3px;
  display: none;              /* 默认隐藏 */
  position: fixed;
  left: 0;
  z-index: 333;               /* 高于遮罩 */
  top: 50%;
  transform: translateY(-50%);/* 垂直居中 */
  background: #f2f2f2;
  padding: 25px;
  left: 0;
  right: 0;
  margin: auto;               /* 水平居中 */
}

/* 搜索框内部布局 */
.alert-search .boxc {
  display: flex;
}

/* 搜索输入框 */
.alert-search .intxt {
  flex: 1;
  width: 100%;
  height: 35px;
  background: #fff;
  border: 1px solid #17a2b8;
  padding: 0 12px;
  font-size: 14px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px; /* 左侧圆角 */
}

/* 输入框 placeholder 样式 */
.alert-search .intxt::-webkit-input-placeholder {
  color: #bfbfbf;
}

/* 搜索按钮 */
.alert-search .sbtn {
  width: 50px;
  height: 35px;
  background: #17a2b8;
  outline: none;
  border: 0;
  color: #fff;
  border-radius: 0 3px 3px 0; /* 右侧直角+微圆角 */
}

/* ———————— 响应式断点 ———————— */


/* 屏幕 ≤1300px（平板/小笔记本）：切换为移动端样式 */
@media (max-width: 1300px) {
  .header {
    height: 60px;             /* 降低 header 高度 */
  }
  .header .logo {
    height: 45px;
    width: auto;              /* 保持比例 */
  }
  .header .fr {
    margin-left: 30px;
    margin-right: 12px;
    flex: none;               /* 不再伸展 */
  }
  .header .fr ul {
    display: none;            /* 隐藏桌面菜单 */
  }
  .header .wrap {
    justify-content: space-between; /* Logo 和菜单按钮分列两端 */
  }
  .header .fr .head-icon .menu-ico {
    display: block;           /* 显示汉堡菜单按钮 */
  }
  .mb-h60 {
    height: 60px;             /* 调整预留高度 */
  }
}

/* 屏幕 ≤750px（手机）：搜索弹窗变窄 */
@media (max-width: 750px) {
  .alert-search {
    width: 80%;               /* 占屏幕80% */
  }
}

/* —————————— 页头导航结束 —————————— */

/*复制粘贴网页标题网址开始*/
        .dialog {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 10px 15px;
            border-radius: 3px;
            box-shadow: 0px 0px 5px #1434A4;
            border: 1px solid blue;
            z-index: 1000;
            text-align: center;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

/*复制粘贴网页标题网址结束*/
/*分页*/
.page-num:not(:disabled) {
	cursor: pointer;
}
.page-num, .page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #17a2b8;
	background-color: #fff;
	border: 1px solid #dee2e6;
}
a.page-num:hover, .page-link:hover {
	text-decoration: none;
	box-shadow: 0px 0px 0px #17a2b8 !important;
}
.page-num-current {
	z-index: 1;
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
}
.page-num-current:hover {
	color: #fff;
}
/*繁简字体*/
.fanjian{
background:rgba(0,150,136,0.5);
color:white;
border-radius: 15px;
margin-left:15px;
width:49px;
padding-left:8px;
padding-right:8px;
border:solid 1px #ebebeb;
text-align: center;
align-items: center;        /* 子元素垂直居中 */
}
.fanjian:hover {
color:white;
border:solid 1px red;
}

/*其他*/
.pages {
	min-height: 500px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.code, .code img {
	height: 145px;
}
.position, .position a {
	color: #999;
}
.content {
	color: #666;
	line-height: 2;
	margin-left:8px;
	margin-right:8px;
	font-size:20px;
	text-align: justify;
	word-break:break-all;
	word-wrap: break-word;
}
.content p{
	line-height: 28px;
	margin-top:10px;
	margin-bottom:10px;
}
.content div{
	line-height: 28px;
	margin-top:10px;
	margin-bottom:10px;
}
.content img, .content iframe {
	max-width: 100% !important;
}
.content li {
	list-style: disc outside none;
	margin-left: 20px;
}
/*产品轮播*/
.view {
	max-width: 500px;
}
.view .swiper-slide {
	height: 300px;
	max-width: 500px;
	padding: 0 3px;
	box-sizing: border-box;
	overflow: hidden;
	text-align: center;
}
.view .swiper-slide img {
	height: 100%;
}
.view .arrow-left {
	background: url(../images/index_tab_l.png) no-repeat left center;
	position: absolute;
	left: 10px;
	width: 28px;
	height: 300px;
	z-index: 10;
	display: none;
}
.view .arrow-right {
	background: url(../images/index_tab_r.png) no-repeat right center;
	position: absolute;
	right: 10px;
	width: 28px;
	height: 300px;
	z-index: 10;
	display: none;
}
.preview {
	position: relative;
	width: 440px;
	left: 30px;
}
.preview .swiper-slide {
	width: 87.5px;
	height: 70px;
	margin: 0 3px;
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
}
.preview .swiper-slide img {
	display: inline-block;
	height: 100%;
}
.preview .active-nav {
	border: 1px solid #F00;
}
.preview .arrow-left {
	background: #fff url(../images/feel3.png) no-repeat left center;
	position: absolute;
	left: -20px;
	top: 0;
	width: 20px;
	height: 70px;
	z-index: 10;
}
.preview .arrow-right {
	background: #fff url(../images/feel4.png) no-repeat right center;
	position: absolute;
	right: -20px;
	top: 0;
	width: 20px;
	height: 70px;
	z-index: 10;
}

@media only screen and (max-width: 768px) {
.view .swiper-slide {
	height: 200px;
}
.preview {
	display: none;
}
.view .arrow-left, .view .arrow-right {
	height: 200px;
	display: block;
}
}


.fangkuang {
border:solid 1px #dcdcdc;
}
.fangkuang:hover{
border:solid 1px #17a2b8;
}

.fangkuang1:hover{
background: #17a2b8;
color:white;
box-shadow: 0px 0px 5px #17a2b8;
border-radius: 15px;
padding: 4px 6px;
}
.fangkuang2:hover{
border:solid 1px #17a2b8;
}

.tuoyuankuang {
border:solid 1px #dcdcdc;box-shadow: 0px 0px 10px #dcdcdc;
}

.tuoyuankuang:hover{
border:solid 1px #17a2b8;box-shadow: 0px 0px 10px #17a2b8;
}


/*业务领域开始*/
.boxstyle
{
    background:white;
    padding-bottom:36px;
    border:solid 1px #dcdcdc;

}
.boxstyle:hover
{
    border:solid 1px #17a2b8;
    box-shadow: 0px 0px 2px #17a2b8;
}

.process_col {font-size: 14px; text-align: center;}
.process_col img{display: block; margin: 0 auto;width: auto;max-width: 100%; -webkit-transition: -webkit-transform 0.5s ease-out; -moz-transition: -moz-transform 0.5s ease-out; -o-transition: -o-transform 0.5s ease-out; -ms-transition: -ms-transform 0.5s ease-out;}
.process_col img:hover {-webkit-transform: rotateZ(360deg); -moz-transform: rotateZ(360deg); -o-transform: rotateZ(360deg); -ms-transform: rotateZ(360deg); transform: rotateZ(360deg);}
/*业务领域结束*/

/*手机端底部*/
.phone-bg
{
	background: #17a2b8;
}
.phone-bg:hover
{
	background: #138496;
}

/*在线客服*/
.online {
	position: fixed;
	bottom: 150px;
	right: 10px;
	width: 60px;
	z-index: 999;
	color: #999;
}
.online a {
	color: #666;
}
.online a:hover {
	text-decoration: none;
}
.online dl {
	background: #17a2b8;
	padding: 10px 5px;
	margin-bottom: 1px;
	position: relative;
}
.online dl dd {
	color: #fff;
	text-align: center;
	font-size: 12px;
	cursor: pointer;
}
.online dl dd i {
	font-size: 25px;
}
.online dl:hover {
	background: #138496;
}
.online dl dt {
	position: absolute;
	top: 0px;
	right: 60px;
	background: #fff;
	border: 1px solid #ccc;
	z-index: 9999;
	display: none;
	padding: 10px 15px;
	font-weight: normal;
}
.online dl dt h3 {
	display: block;
	font-size: 16px;
	color: #666;
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
}
.online dl dt h3 i {
	margin-right: 5px;
}
.online dl dt h3 span {
	float: right;
	cursor: pointer;
}
.online dl dt input {
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-top: 15px;
	height: 40px;
	line-height: 40px;
	padding: 3px 5px;
	width: 100%;
}
.online dl dt button {
	margin: 10px 0;
	border: none;
	border-radius: 5px;
	width: 100%;
	font-size: 18px;
	height: 40px;
	line-height: 40px;
	background: #17a2b8;
	color: #fff;
	cursor: pointer;
}

/*sm屏幕以上*/
@media only screen and (min-width: 576px) {
.card-img-200 {
	height: 200px;
	overflow: hidden;
}
.card-img-180 {
	height: 180px;
	overflow: hidden;
}
.card-img-150 {
	height: 150px;
	overflow: hidden;
}
.card-img-120 {
	height: 120px;
	overflow: hidden;
}
.card-img-100 {
	height: 100px;
	overflow: hidden;
}
.card-img-80 {
	height: 80px;
	overflow: hidden;
}
.card-img-50 {
	height: 50px;
	overflow: hidden;
}
}
/*sm屏幕以下*/
@media only screen and (max-width: 576px) {
.page-num {
	display: none;
}
.head-sm-height {
	height: 61px !important;
}
}
/*********响应式样式******************/

/*行距*/
.lh-1 {
	line-height: 1;
}
.lh-2 {
	line-height: 2;
}
.lh-3 {
	line-height: 3;
}
.lh-4 {
	line-height: 4;
}
/*字体大小*/
.fs-12 {
	font-size: .857rem;
}
.fs-14 {
	font-size: 1rem;
}
.fs-16 {
	font-size: 1.142rem;
}
.fs-18 {
	font-size: 1.285rem;
}
.fs-20 {
	font-size: 1.428rem;
}
.fs-22 {
	font-size: 1.571rem;
}
.fs-24 {
	font-size: 1.714rem;
}
.fs-26 {
	font-size: 1.857rem;
}
.fs-28 {
	font-size: 2rem;
}
.fs-30 {
	font-size: 2.142rem;
}
.fs-32 {
	font-size: 2.286rem;
}
.fs-34 {
	font-size: 2.429rem;
}
.fs-36 {
	font-size: 2.571rem;
}
.fs-38 {
	font-size: 2.714rem;
}
.fs-40 {
	font-size: 2.857rem;
}
/*高度*/
.h-5px {
	height: 5px;
}
.h-10px {
	height: 10px;
}
.h-15px {
	height: 15px;
}
.h-20px {
	height: 20px;
}
.h-25px {
	height: 25px;
}
.h-30px {
	height: 30px;
}
.h-35px {
	height: 35px;
}
.h-40px {
	height: 40px;
}
.h-45px {
	height: 45px;
}
.h-50px {
	height: 50px;
}
.h-55px {
	height: 55px;
}
.h-60px {
	height: 60px;
}
.h-65px {
	height: 65px;
}
.h-70px {
	height: 70px;
}
.h-75px {
	height: 75px;
}
.h-80px {
	height: 80px;
}
.h-85px {
	height: 85px;
}
.h-90px {
	height: 90px;
}
.h-95px {
	height: 95px;
}
.h-100px {
	height: 100px;
}
.h-110px {
	height: 110px;
}
.h-120px {
	height: 120px;
}
.h-130px {
	height: 130px;
}
.h-140px {
	height: 140px;
}
.h-150px {
	height: 150px;
}
.h-160px {
	height: 160px;
}
.h-170px {
	height: 170px;
}
.h-180px {
	height: 180px;
}
.h-190px {
	height: 190px;
}
.h-200px {
	height: 200px;
}
.h-210px {
	height: 210px;
}
.h-220px {
	height: 220px;
}
.h-230px {
	height: 230px;
}
.h-240px {
	height: 240px;
}
.h-250px {
	height: 250px;
}
.h-260px {
	height: 260px;
}
.h-270px {
	height: 270px;
}
.h-280px {
	height: 280px;
}
.h-290px {
	height: 290px;
}
.h-300px {
	height: 300px;
}
.h-310px {
	height: 310px;
}
.h-320px {
	height: 320px;
}
.h-330px {
	height: 330px;
}
.h-340px {
	height: 340px;
}
.h-350px {
	height: 350px;
}
.h-360px {
	height: 360px;
}
.h-370px {
	height: 370px;
}
.h-380px {
	height: 380px;
}
.h-390px {
	height: 390px;
}
.h-400px {
	height: 400px;
}
.h-410px {
	height: 410px;
}
.h-420px {
	height: 420px;
}
.h-430px {
	height: 430px;
}
.h-440px {
	height: 440px;
}
.h-450px {
	height: 450px;
}
.h-460px {
	height: 410px;
}
.h-470px {
	height: 470px;
}
.h-480px {
	height: 480px;
}
.h-490px {
	height: 490px;
}
.h-500px {
	height: 500px;
}

/*sm屏幕以上*/
@media only screen and (min-width: 576px) {
/*行距*/
.lh-sm-1 {
	line-height: 1;
}
.lh-sm-2 {
	line-height: 2;
}
.lh-sm-3 {
	line-height: 3;
}
.lh-sm-4 {
	line-height: 4;
}
/*字体大小*/
.fs-sm-12 {
	font-size: .857rem;
}
.fs-sm-14 {
	font-size: 1rem;
}
.fs-sm-16 {
	font-size: 1.142rem;
}
.fs-sm-18 {
	font-size: 1.285rem;
}
.fs-sm-20 {
	font-size: 1.428rem;
}
.fs-sm-22 {
	font-size: 1.571rem;
}
.fs-sm-24 {
	font-size: 1.714rem;
}
.fs-sm-26 {
	font-size: 1.857rem;
}
.fs-sm-28 {
	font-size: 2rem;
}
.fs-sm-30 {
	font-size: 2.142rem;
}
.fs-sm-32 {
	font-size: 2.286rem;
}
.fs-sm-34 {
	font-size: 2.429rem;
}
.fs-sm-36 {
	font-size: 2.571rem;
}
.fs-sm-38 {
	font-size: 2.714rem;
}
.fs-sm-40 {
	font-size: 2.857rem;
}
/*高度*/
.h-sm-5px {
	height: 5px;
}
.h-sm-10px {
	height: 10px;
}
.h-sm-15px {
	height: 15px;
}
.h-sm-20px {
	height: 20px;
}
.h-sm-25px {
	height: 25px;
}
.h-sm-30px {
	height: 30px;
}
.h-sm-35px {
	height: 35px;
}
.h-sm-40px {
	height: 40px;
}
.h-sm-45px {
	height: 45px;
}
.h-sm-50px {
	height: 50px;
}
.h-sm-55px {
	height: 55px;
}
.h-sm-60px {
	height: 60px;
}
.h-sm-65px {
	height: 65px;
}
.h-sm-70px {
	height: 70px;
}
.h-sm-75px {
	height: 75px;
}
.h-sm-80px {
	height: 80px;
}
.h-sm-85px {
	height: 85px;
}
.h-sm-90px {
	height: 90px;
}
.h-sm-95px {
	height: 95px;
}
.h-sm-100px {
	height: 100px;
}
.h-sm-110px {
	height: 110px;
}
.h-sm-120px {
	height: 120px;
}
.h-sm-130px {
	height: 130px;
}
.h-sm-140px {
	height: 140px;
}
.h-sm-150px {
	height: 150px;
}
.h-sm-160px {
	height: 160px;
}
.h-sm-170px {
	height: 170px;
}
.h-sm-180px {
	height: 180px;
}
.h-sm-190px {
	height: 190px;
}
.h-sm-200px {
	height: 200px;
}
.h-sm-210px {
	height: 210px;
}
.h-sm-220px {
	height: 220px;
}
.h-sm-230px {
	height: 230px;
}
.h-sm-240px {
	height: 240px;
}
.h-sm-250px {
	height: 250px;
}
.h-sm-260px {
	height: 260px;
}
.h-sm-270px {
	height: 270px;
}
.h-sm-280px {
	height: 280px;
}
.h-sm-290px {
	height: 290px;
}
.h-sm-300px {
	height: 300px;
}
.h-sm-310px {
	height: 310px;
}
.h-sm-320px {
	height: 320px;
}
.h-sm-330px {
	height: 330px;
}
.h-sm-340px {
	height: 340px;
}
.h-sm-350px {
	height: 350px;
}
.h-sm-360px {
	height: 360px;
}
.h-sm-370px {
	height: 370px;
}
.h-sm-380px {
	height: 380px;
}
.h-sm-390px {
	height: 390px;
}
.h-sm-400px {
	height: 400px;
}
.h-sm-410px {
	height: 410px;
}
.h-sm-420px {
	height: 420px;
}
.h-sm-430px {
	height: 430px;
}
.h-sm-440px {
	height: 440px;
}
.h-sm-450px {
	height: 450px;
}
.h-sm-460px {
	height: 410px;
}
.h-sm-470px {
	height: 470px;
}
.h-sm-480px {
	height: 480px;
}
.h-sm-490px {
	height: 490px;
}
.h-sm-500px {
	height: 500px;
}
}

/*md屏幕以上*/
@media only screen and (min-width: 768px) {
/*行距*/
.lh-md-1 {
	line-height: 1;
}
.lh-md-2 {
	line-height: 2;
}
.lh-md-3 {
	line-height: 3;
}
.lh-md-4 {
	line-height: 4;
}
/*字体大小*/
.fs-md-12 {
	font-size: .857rem;
}
.fs-md-14 {
	font-size: 1rem;
}
.fs-md-16 {
	font-size: 1.142rem;
}
.fs-md-18 {
	font-size: 1.285rem;
}
.fs-md-20 {
	font-size: 1.428rem;
}
.fs-md-22 {
	font-size: 1.571rem;
}
.fs-md-24 {
	font-size: 1.714rem;
}
.fs-md-26 {
	font-size: 1.857rem;
}
.fs-md-28 {
	font-size: 2rem;
}
.fs-md-30 {
	font-size: 2.142rem;
}
.fs-md-32 {
	font-size: 2.286rem;
}
.fs-md-34 {
	font-size: 2.429rem;
}
.fs-md-36 {
	font-size: 2.571rem;
}
.fs-md-38 {
	font-size: 2.714rem;
}
.fs-md-40 {
	font-size: 2.857rem;
}
/*高度*/
.h-md-5px {
	height: 5px;
}
.h-md-10px {
	height: 10px;
}
.h-md-15px {
	height: 15px;
}
.h-md-20px {
	height: 20px;
}
.h-md-25px {
	height: 25px;
}
.h-md-30px {
	height: 30px;
}
.h-md-35px {
	height: 35px;
}
.h-md-40px {
	height: 40px;
}
.h-md-45px {
	height: 45px;
}
.h-md-50px {
	height: 50px;
}
.h-md-55px {
	height: 55px;
}
.h-md-60px {
	height: 60px;
}
.h-md-65px {
	height: 65px;
}
.h-md-70px {
	height: 70px;
}
.h-md-75px {
	height: 75px;
}
.h-md-80px {
	height: 80px;
}
.h-md-85px {
	height: 85px;
}
.h-md-90px {
	height: 90px;
}
.h-md-95px {
	height: 95px;
}
.h-md-100px {
	height: 100px;
}
.h-md-110px {
	height: 110px;
}
.h-md-120px {
	height: 120px;
}
.h-md-130px {
	height: 130px;
}
.h-md-140px {
	height: 140px;
}
.h-md-150px {
	height: 150px;
}
.h-md-160px {
	height: 160px;
}
.h-md-170px {
	height: 170px;
}
.h-md-180px {
	height: 180px;
}
.h-md-190px {
	height: 190px;
}
.h-md-200px {
	height: 200px;
}
.h-md-210px {
	height: 210px;
}
.h-md-220px {
	height: 220px;
}
.h-md-230px {
	height: 230px;
}
.h-md-240px {
	height: 240px;
}
.h-md-250px {
	height: 250px;
}
.h-md-260px {
	height: 260px;
}
.h-md-270px {
	height: 270px;
}
.h-md-280px {
	height: 280px;
}
.h-md-290px {
	height: 290px;
}
.h-md-300px {
	height: 300px;
}
.h-md-310px {
	height: 310px;
}
.h-md-320px {
	height: 320px;
}
.h-md-330px {
	height: 330px;
}
.h-md-340px {
	height: 340px;
}
.h-md-350px {
	height: 350px;
}
.h-md-360px {
	height: 360px;
}
.h-md-370px {
	height: 370px;
}
.h-md-380px {
	height: 380px;
}
.h-md-390px {
	height: 390px;
}
.h-md-400px {
	height: 400px;
}
.h-md-410px {
	height: 410px;
}
.h-md-420px {
	height: 420px;
}
.h-md-430px {
	height: 430px;
}
.h-md-440px {
	height: 440px;
}
.h-md-450px {
	height: 450px;
}
.h-md-460px {
	height: 410px;
}
.h-md-470px {
	height: 470px;
}
.h-md-480px {
	height: 480px;
}
.h-md-490px {
	height: 490px;
}
.h-md-500px {
	height: 500px;
}
}

/*lg屏幕以上*/
@media only screen and (min-width: 992px) {
/*行距*/
.lh-lg-1 {
	line-height: 1;
}
.lh-lg-2 {
	line-height: 2;
}
.lh-lg-3 {
	line-height: 3;
}
.lh-lg-4 {
	line-height: 4;
}
/*字体大小*/
.fs-lg-12 {
	font-size: .857rem;
}
.fs-lg-14 {
	font-size: 1rem;
}
.fs-lg-16 {
	font-size: 1.142rem;
}
.fs-lg-18 {
	font-size: 1.285rem;
}
.fs-lg-20 {
	font-size: 1.428rem;
}
.fs-lg-22 {
	font-size: 1.571rem;
}
.fs-lg-24 {
	font-size: 1.714rem;
}
.fs-lg-26 {
	font-size: 1.857rem;
}
.fs-lg-28 {
	font-size: 2rem;
}
.fs-lg-30 {
	font-size: 2.142rem;
}
.fs-lg-32 {
	font-size: 2.286rem;
}
.fs-lg-34 {
	font-size: 2.429rem;
}
.fs-lg-36 {
	font-size: 2.571rem;
}
.fs-lg-38 {
	font-size: 2.714rem;
}
.fs-lg-40 {
	font-size: 2.857rem;
}
/*高度*/
.h-lg-5px {
	height: 5px;
}
.h-lg-10px {
	height: 10px;
}
.h-lg-15px {
	height: 15px;
}
.h-lg-20px {
	height: 20px;
}
.h-lg-25px {
	height: 25px;
}
.h-lg-30px {
	height: 30px;
}
.h-lg-35px {
	height: 35px;
}
.h-lg-40px {
	height: 40px;
}
.h-lg-45px {
	height: 45px;
}
.h-lg-50px {
	height: 50px;
}
.h-lg-55px {
	height: 55px;
}
.h-lg-60px {
	height: 60px;
}
.h-lg-65px {
	height: 65px;
}
.h-lg-70px {
	height: 70px;
}
.h-lg-75px {
	height: 75px;
}
.h-lg-80px {
	height: 80px;
}
.h-lg-85px {
	height: 85px;
}
.h-lg-90px {
	height: 90px;
}
.h-lg-95px {
	height: 95px;
}
.h-lg-100px {
	height: 100px;
}
.h-lg-110px {
	height: 110px;
}
.h-lg-120px {
	height: 120px;
}
.h-lg-130px {
	height: 130px;
}
.h-lg-140px {
	height: 140px;
}
.h-lg-150px {
	height: 150px;
}
.h-lg-160px {
	height: 160px;
}
.h-lg-170px {
	height: 170px;
}
.h-lg-180px {
	height: 180px;
}
.h-lg-190px {
	height: 190px;
}
.h-lg-200px {
	height: 200px;
}
.h-lg-210px {
	height: 210px;
}
.h-lg-220px {
	height: 220px;
}
.h-lg-230px {
	height: 230px;
}
.h-lg-240px {
	height: 240px;
}
.h-lg-250px {
	height: 250px;
}
.h-lg-260px {
	height: 260px;
}
.h-lg-270px {
	height: 270px;
}
.h-lg-280px {
	height: 280px;
}
.h-lg-290px {
	height: 290px;
}
.h-lg-300px {
	height: 300px;
}
.h-lg-310px {
	height: 310px;
}
.h-lg-320px {
	height: 320px;
}
.h-lg-330px {
	height: 330px;
}
.h-lg-340px {
	height: 340px;
}
.h-lg-350px {
	height: 350px;
}
.h-lg-360px {
	height: 360px;
}
.h-lg-370px {
	height: 370px;
}
.h-lg-380px {
	height: 380px;
}
.h-lg-390px {
	height: 390px;
}
.h-lg-400px {
	height: 400px;
}
.h-lg-410px {
	height: 410px;
}
.h-lg-420px {
	height: 420px;
}
.h-lg-430px {
	height: 430px;
}
.h-lg-440px {
	height: 440px;
}
.h-lg-450px {
	height: 450px;
}
.h-lg-460px {
	height: 410px;
}
.h-lg-470px {
	height: 470px;
}
.h-lg-480px {
	height: 480px;
}
.h-lg-490px {
	height: 490px;
}
.h-lg-500px {
	height: 500px;
}
}
