@charset "UTF-8";
body {
  background: #fff;
}

i, em {
  font-style: normal;
}

/** 超出隐藏 **/
.overflow-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

/* 字体颜色 */
.color-white {
  color: #ffffff;
}

.color-black {
  color: #000;
}

.color-theme {
  color: #b50101;
}

.color-default {
  color: #333333;
}

.color-grey {
  color: #666666;
}

.color-muted {
  color: #999999;
}

.color-normal {
  color: #909399;
}

.color-lighter {
  color: #e5e5e5;
}

.color-success {
  color: #4cd964;
}

.color-warning {
  color: #f0ad4e;
}

.color-error {
  color: #dd524d;
}

img {
  max-width: 100%;
}

.header {
  padding: 0.2rem;
  border-bottom: 1px solid #ccc;
}
.header .logo {
  display: block;
  padding: 10px;
  max-width: 300px;
}
.header .nav-list {
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.header .nav-list .item {
  display: block;
  font-size: 18px;
}
.header .tel-box {
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}
.header .tel-box .tel {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 40px;
  height: 40px;
  padding: 0 1rem;
  background-color: #b50101;
  color: #ffffff;
  font-size: 20px;
}
.header .tel-box .tel .icon {
  font-size: 22px;
}

.footer {
  padding: 20px 0;
  background-color: #e5e5e5;
}
.footer .info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.2rem 1rem;
  font-size: 14px;
}

.view-title {
  padding: 20px 0 10px;
}
.view-title .title {
  position: relative;
  color: #333;
  font-size: 32px;
}
.view-title .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 2px;
  background: #b50101;
}

.view-title-sub {
  padding: 20px 0 10px;
  position: relative;
  font-size: 20px;
  line-height: 40px;
  font-weight: bold;
}
.view-title-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background: #666666;
}

.empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #909399;
}
.empty .icon {
  font-size: 99px;
}

/*banner*/
.banner {
  margin-top: 15px;
  position: relative;
  height: 400px;
  background: #ccc;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.banner .banner-box-list {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner .banner-box-list .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-box-list .banner-txt {
  position: relative;
  z-index: 1;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner .banner-box-list .banner-txt .txt-title {
  font-size: 48px;
  color: #ffffff;
  text-shadow: 2px 2px 3px #333333;
}
.banner .banner-box-list .banner-txt .txt-subtitle {
  font-size: 30px;
  color: #333333;
}
.banner .banner-box-list .banner-txt .txt-btn {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: 16px;
}
.banner .banner-box-list .banner-txt .txt-btn .btn-item {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #b50101;
  border-radius: 5px;
  color: #fff;
}
.banner .banner-box-list .banner-txt .txt-btn .btn-item:hover {
  background: rgba(181, 1, 1, 0.8);
  color: #fff;
}
.banner .banner-box-list .banner-txt .txt-btn .btn-item2 {
  display: inline-block;
  padding: 0 15px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border: solid 2px #ffffff;
  border-radius: 5px;
  color: #ffffff;
}
.banner .banner-box-list .banner-txt .txt-btn .btn-item2:hover {
  border-color: #b50101;
  color: #b50101;
}

@media (max-width: 1200px) {
  .banner {
    height: 300px;
  }
  .banner .banner-box-list .banner-txt .txt-title {
    font-size: 30px;
  }
}
.about {
  padding-bottom: 20px;
}
.about .about-lists .item {
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
}
.about .about-lists .item .content {
  font-size: 18px;
}

.product {
  padding-bottom: 20px;
}
.product .lists {
  display: flex;
  flex-direction: row;
}
.product .lists .item {
  margin-top: 10px;
  display: block;
  background: #efefef;
  border-radius: 5px;
  overflow: hidden;
}
.product .lists .item .img-box {
  width: 100%;
  overflow: hidden;
}
.product .lists .item .txt-box {
  padding: 0.5rem;
}
.product .lists .item .txt-box .title {
  font-size: 18px;
  padding: 0.5rem 0;
}
.product .lists .item .txt-box .pro-tabs {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.product .lists .item .txt-box .pro-tool {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 12px;
  color: #666666;
}

.flink {
  padding-bottom: 20px;
}
.flink .lists {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.page-body {
  margin-top: 15px;
}

/*分类*/
.small-nav {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #efefef;
  border-radius: 5px 5px 0 0;
  height: 80px;
  gap: 50px;
}
.small-nav .nav-title {
  padding: 0 20px;
  font-size: 22px;
}
.small-nav a {
  display: block;
  line-height: 50px;
  font-size: 16px;
  border-bottom: 3px solid #fff;
}
.small-nav .curr, .small-nav a:hover {
  border-bottom: 3px solid #b50101;
  color: #b50101;
}

/*新闻动态*/
.news {
  padding: 10px 0;
}
.news .item {
  margin-top: 15px;
  display: block;
  background-color: #f8f8f8;
}
.news .item .img-box {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.news .item .img-box .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .item .title {
  margin: 15px 15px 0;
  font-size: 16px;
  height: 30px;
}
.news .item .tool {
  margin: 15px 15px 0;
  border-top: 1px solid #ccc;
  padding: 10px 5px 20px;
  display: flex;
  flex-direction: row;
  color: #666;
  font-size: 12px;
  gap: 15px;
}
.news .item:hover {
  background-color: #efefef;
}
.news .item:hover .img-box .img {
  transform: scale(1.1);
}

.info h1 {
  display: block;
}
.info .tool {
  margin-top: 10px;
  font-size: 14px;
  background: #e5e5e5;
  padding: 10px;
}
.info .content img {
  max-width: 100%;
}
.info .content {
  font-size: 18px;
  line-height: 150%;
  padding: 10px 0;
}
.info .pages {
  border-top: 0.5px solid #e5e5e5;
  padding: 20px 0;
}
.info .pages .item {
  display: flex;
  flex-direction: row;
}
.info .recommend .lists {
  padding: 10px 0;
  line-height: 30px;
}
.info .recommend .lists .item {
  display: block;
}

.contact .tel-add {
  padding: 20px 0;
  font-size: 18px;
  line-height: 200%;
}
.contact .content {
  padding: 20px 5px;
  font-size: 18px;
  line-height: 150%;
}

.tags .lists {
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.tags .lists .item {
  display: block;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .view-title-sub {
    margin: 0 -0.75rem;
    border-top: 20px solid #efefef;
    padding: 10px 20px;
  }
  .about .about-lists .item {
    border-width: 0;
    border-radius: 0;
    padding: 0;
  }
  .about .about-lists .item .content {
    padding: 20px;
    font-size: 16px;
    line-height: 180%;
  }
}

/*# sourceMappingURL=style-cn.css.map */
