@charset "UTF-8";
/* ==========================================================================
   公共样式模板（中文网站）
   目录：
   1. 变量定义
   2. 全局重置
   3. 基础排版（中文字体优化）
   4. 布局容器
   5. 通用组件（按钮/标签/列表/表单）
   6. 工具类
   7. 响应式
   ========================================================================== */
/* --------------------------------------------------------------------------
   1. 变量定义
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   2. 全局重置
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --swiper-navigation-color: #826133;
  --swiper-theme-color: #826133;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  background-color: #f5f6f7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote,
dl, dd, pre {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #826133;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: rgb(100.6961325967, 75.1348066298, 39.5038674033);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

/* --------------------------------------------------------------------------
   3. 基础排版（中文字体优化）
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #333333;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  color: #666666;
}

code, kbd, pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

blockquote {
  padding: 10px 15px;
  border-left: 4px solid #826133;
  background-color: #ebeef5;
  color: #666666;
}

.rich-text {
  line-height: 1.9;
  word-break: break-word;
}
.rich-text h2 {
  margin: 20px 0 12px;
}
.rich-text h3 {
  margin: 16px 0 10px;
}
.rich-text p {
  text-align: justify;
}
.rich-text img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
}
.rich-text a {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   4. 布局容器
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  padding: 30px 0;
}

.flex {
  display: flex;
}
.flex.flex-center {
  align-items: center;
  justify-content: center;
}
.flex.flex-between {
  align-items: center;
  justify-content: space-between;
}
.flex.flex-column {
  flex-direction: column;
}
.flex.flex-wrap {
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   5. 通用组件
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.btn:hover {
  opacity: 0.9;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.btn-primary {
  color: #ffffff;
  background-color: #826133;
}
.btn.btn-primary:hover {
  background-color: rgb(100.6961325967, 75.1348066298, 39.5038674033);
}
.btn.btn-outline {
  color: #826133;
  border-color: #826133;
  background-color: transparent;
}
.btn.btn-outline:hover {
  color: #ffffff;
  background-color: #826133;
}
.btn.btn-default {
  color: #333333;
  border-color: #e4e7ed;
  background-color: #ffffff;
}
.btn.btn-default:hover {
  border-color: #826133;
  color: #826133;
}
.btn.btn-lg {
  padding: 10px 30px;
  font-size: 16px;
}
.btn.btn-sm {
  padding: 4px 12px;
  font-size: 12px;
}

.tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  color: #666666;
  background-color: #ebeef5;
  border-radius: 4px;
}
.tag.tag-primary {
  color: #826133;
  background-color: rgba(130, 97, 51, 0.1);
}

.card {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.card .card-header {
  padding: 15px 20px;
  border-bottom: 1px solid #ebeef5;
  font-size: 16px;
  font-weight: 600;
}
.card .card-body {
  padding: 20px;
}

.page-title {
  padding: 12px 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid #826133;
}
.page-title small {
  margin-left: 10px;
  font-size: 12px;
  font-weight: normal;
  color: #999999;
}

.form-item {
  margin-bottom: 18px;
}
.form-item label {
  display: block;
  margin-bottom: 6px;
  color: #333333;
}

.form-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #ffffff;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: #826133;
}
.form-input::placeholder {
  color: #999999;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
}
.pagination a:hover, .pagination span:hover {
  color: #826133;
  border-color: #826133;
}
.pagination a.active, .pagination span.active {
  color: #ffffff;
  background-color: #826133;
  border-color: #826133;
}

/* --------------------------------------------------------------------------
   6. 工具类
   -------------------------------------------------------------------------- */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #826133;
}

.text-muted {
  color: #999999;
}

.text-danger {
  color: #e53e3e;
}

.text-success {
  color: #38a169;
}

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

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

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

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

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

/* --------------------------------------------------------------------------
   7. 响应式
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 20px 0;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 12px;
  }
  .hide-on-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-on-desktop {
    display: none !important;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: 0.65s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.5);
}
.header-topline {
  background-color: rgba(55, 54, 51, 0.8);
  line-height: 46px;
}
.header-topline-inner {
  display: flex;
  justify-content: space-between;
}
.header-topline-inner .topline-info {
  font-size: 13px;
  color: #fff;
}
.header-topline-inner .topline-sidebar a {
  color: #fff;
}
.header .toggle {
  display: none;
}
.header-main {
  padding: 20px 0;
}
.header-main-inner {
  display: flex;
  justify-content: space-between;
}
.header .logo-inner {
  display: flex;
  align-items: center;
}
.header .logo-inner img {
  height: 50px;
}
.header .logo-inner dl {
  margin-left: 10px;
  line-height: 1;
}
.header .logo-inner dl dt {
  color: #000;
  font-size: 26px;
  font-weight: bold;
}
.header .logo-inner dl dd {
  margin-top: 5px;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: normal;
}

.menu {
  display: none;
}

.hide-header {
  transform: translate(0, -46px);
}
.hide-header .header-topline-sidebar {
  transform: translate(0, -9px);
}

.nav {
  display: flex;
  align-items: center;
}
.nav li {
  position: relative;
}
.nav li > a {
  padding: 0 20px;
  color: #333;
  font-size: 18px;
}
.nav li.active > a {
  color: #826133;
}
.nav li:hover {
  background: rgba(130, 97, 51, 0.8);
}
.nav li:hover > a {
  color: #fff !important;
}
.nav li:hover .subnav {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
.nav .subnav {
  z-index: 100;
  position: absolute;
  width: 100%;
  left: 0;
  top: 32px;
  opacity: 0;
  background: rgba(55, 54, 51, 0.8);
  transform: translate(0, 0);
  text-align: center;
  visibility: hidden;
}
.nav .subnav > a {
  color: #fff;
  display: block;
  line-height: 40px;
  font-size: 14px;
  height: 40px;
}
.nav .subnav > a:hover {
  background: rgba(45, 62, 80, 0.3);
}

main {
  width: 100%;
  height: 100%;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner a {
  display: block;
  width: 100%;
  height: 100%;
}
.banner .swiper-container {
  width: 100%;
  height: calc(100% - 80px);
  position: relative;
}
.banner .swiper-slide {
  background-size: cover;
  background-position: center;
}
.banner .swiper-button-next {
  right: 40px !important;
  transition: 0.9s;
}
.banner .swiper-button-prev {
  left: 40px !important;
  transition: 0.9s;
}
.banner .swiper-pagination-bullet {
  width: 25px;
  border-radius: 5px;
  height: 5px;
}
.banner .swiper-pagination-bullet-active {
  background: #826133 !important;
}
.banner .banner-sidebar {
  background: linear-gradient(to right, #dcaf6a, #eae4ba, #efd096);
  padding: 10px 0;
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}
.banner .banner-sidebar-inner {
  background-color: #373633;
  color: #fff;
  height: 60px;
}
.banner .banner-sidebar-inner .container {
  display: flex;
  height: 100%;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.banner .banner-sidebar .sidebar-inner-slogan img {
  display: block;
}
.banner .banner-sidebar .sidebar-inner-info {
  display: flex;
  align-items: center;
  font-size: 26px;
}
.banner .banner-sidebar .sidebar-inner-info .info-item {
  line-height: 1;
  margin-right: 15px;
  border-right: 2px solid #fff;
  padding-right: 15px;
}
.banner .banner-sidebar .sidebar-inner-info .info-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0 none;
}

.mod-box {
  padding: 80px 0 100px;
}
.mod-box .mod-inner {
  display: flex;
  flex-direction: column;
}
.mod-box .mod-hd {
  margin-bottom: 40px;
}
.mod-box .mod-hd-title {
  text-align: center;
  margin-bottom: 40px;
}
.mod-box .mod-hd-title h2 {
  font-size: 44px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
.mod-box .mod-hd-title .mod-hd-line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.mod-box .mod-hd-title .mod-hd-line span {
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #826133;
}
.mod-box .mod-hd-des {
  text-align: center;
  font-size: 24px;
  color: #666666;
  margin-top: 20px;
  line-height: 1;
}

.mod-about {
  background-color: #f5f6f7;
}
.mod-about .mod-bd {
  display: flex;
  align-items: stretch;
}
.mod-about .mod-bd-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mod-about .mod-desc {
  padding-right: 10%;
  font-size: 30px;
  color: #333333;
  font-weight: 500;
}
.mod-about .mod-stats-row {
  display: flex;
  justify-content: space-between;
}
.mod-about .mod-stats-row .stat-card {
  width: 48%;
  background: linear-gradient(135deg, #c3a46c, #b8935a);
}
.mod-about .mod-stats-row .stat-card.no-radius {
  border-radius: 10px 0 0 10px;
}
.mod-about .mod-bd-right {
  flex: 1;
  display: flex;
}
.mod-about .mod-bd-img {
  height: 100%;
  width: 50%;
  min-width: 260px;
  border-radius: 10px;
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.mod-about .mod-bd-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mod-about .mod-bd-stats {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-around;
  background: linear-gradient(135deg, #c3a46c, #b8935a);
  padding: 30px 24px;
  border-radius: 0 10px 10px 0;
}
.mod-about .stat-card {
  padding: 24px 20px;
  border-radius: 10px;
  color: #fff;
  line-height: 1;
}
.mod-about .stat-card .stat-label {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 8px;
}
.mod-about .stat-card .stat-value {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.mod-about .stat-card .stat-value .stat-plus {
  font-size: 24px;
  font-weight: 700;
}
.mod-about .stat-card .stat-sub {
  font-size: 18px;
  opacity: 0.75;
}

.mod-product {
  background: url("../images/mod-product-bg.jpg") repeat center center;
}
.mod-product .mod-bd {
  display: flex;
  gap: 30px;
}
.mod-product .product-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e4e7ed;
}
.mod-product .product-card h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}
.mod-product .product-card .product-img {
  text-align: center;
  margin-bottom: 20px;
}
.mod-product .product-card .product-img img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}
.mod-product .product-card .product-desc {
  font-size: 18px;
  color: #000;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ebeef5;
}
.mod-product .product-card .product-specs {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.2;
  font-size: 16px;
}
.mod-product .product-card .product-specs th {
  padding: 10px 20px 10px 0;
  text-align: left;
  font-weight: 600;
  color: #333333;
  white-space: nowrap;
  vertical-align: center;
}
.mod-product .product-card .product-specs td {
  color: #666666;
  padding: 10px 0;
}
.mod-product .product-card .product-specs tr {
  border-bottom: 1px dashed #ebeef5;
}
.mod-product .product-card .product-specs tr:last-child {
  border-bottom: none;
}
.mod-product .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.mod-product .product-tags .tag-item {
  padding: 5px 20px;
  background: linear-gradient(135deg, #c3a46c, #b8935a);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.mod-product .product-tags .tag-item:hover {
  opacity: 0.85;
}

.product-lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-item {
  width: 24%;
}
.product-item .card {
  border-radius: 3px;
  position: relative;
  padding: 12px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.product-item .card .thumb {
  position: relative;
  height: 100%;
  margin: -12px;
}
.product-item .card .image {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.product-item .card .title {
  padding-top: 12px;
}
.product-item .card h2 {
  color: #fff;
  padding: 0;
  margin-bottom: 5px;
  height: 24px;
  text-align: center;
  margin-top: 15px;
  font-size: 20px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}
.product-item .card h2 a {
  color: #000;
}
.product-item .card h2 a:hover {
  color: #fff;
}

.mod-advantage {
  background: url("../images/mod-advantage-bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding-bottom: 120px;
}
.mod-advantage .mod-inner {
  position: relative;
  z-index: 1;
}
.mod-advantage .mod-hd-title h2 {
  color: #fff;
}
.mod-advantage .mod-hd-title .mod-hd-line {
  background-color: rgba(255, 255, 255, 0.3);
}
.mod-advantage .mod-bd {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.mod-advantage .advantage-card {
  flex: 1;
  background: linear-gradient(135deg, #c3a46c, #b8935a);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  min-height: 300px;
}
.mod-advantage .advantage-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.mod-advantage .advantage-card .adv-icon {
  width: 60px;
  height: 60px;
  text-align: center;
  margin: 0 auto 20px;
}
.mod-advantage .advantage-card .adv-icon img {
  max-width: 100%;
  max-height: 100%;
}
.mod-advantage .advantage-card p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  color: #fff;
}

.mod-honor {
  background-color: #fff;
}
.mod-honor .mod-bd {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.mod-honor .honor-item {
  border: 1px solid #e4e7ed;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
  height: 300px;
  width: auto;
}
.mod-honor .honor-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.mod-honor .honor-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.mod-case {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url("../images/mod-case-bg.jpg") no-repeat center center;
  background-size: cover;
}
.mod-case .mod-hd-title h2 {
  color: #fff;
}
.mod-case .mod-hd-title .mod-hd-line {
  background-color: rgba(255, 255, 255, 0.3);
}
.mod-case .mod-bd {
  min-height: 500px;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mod-case .mod-bd a {
  display: inline-block;
  font-size: 22px;
  color: #f5e6b8;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0) 100%);
  padding: 12px 40px;
}
.mod-case .mod-bd a:hover {
  color: #826133;
}

.mod-sidebar {
  background: linear-gradient(135deg, #c3a46c, #b8935a);
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}
.mod-sidebar a {
  padding: 12px 0;
  line-height: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.mod-sidebar a:last-child {
  border-bottom: 0 none;
}
.mod-sidebar a.active {
  color: #231916;
}

footer {
  background-color: #373633;
  color: #fff;
}
footer::before {
  content: "";
  display: block;
  height: 10px;
  background: linear-gradient(to right, #dcaf6a, #eae4ba, #efd096);
}
footer a {
  color: #fff;
}
footer .footer {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
footer .footer-menu {
  display: flex;
}
footer .footer-menu-item {
  margin-right: 50px;
}
footer .footer .item-hd {
  font-size: 20px;
}
footer .footer .item-bd {
  margin-top: 10px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
footer .footer-contactus p {
  color: #ddd;
}
footer .footer-qrcode {
  margin-top: 20px;
  display: flex;
}
footer .footer-qrcode dl {
  text-align: center;
  margin-right: 20px;
}
footer .footer-qrcode dl dd {
  width: 140px;
  height: 140px;
  background-color: #fff;
  border-radius: 100%;
  overflow: hidden;
  padding: 10px;
}
footer .footer-qrcode dl dt {
  margin-top: 5px;
}
footer .copyright {
  border-top: 1px solid #5d5c59;
  line-height: 3em;
}

.swiper-subbanner {
  position: relative;
  width: 100%;
  background-color: #fff;
  height: 480px;
}
.swiper-subbanner .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article-content {
  padding: 50px 0;
  position: relative;
  color: #333;
}
.article-content h3 {
  color: #826133;
  border-bottom: 1px solid #5d5c59;
  padding-bottom: 10px;
  font-size: 28px;
  display: block;
  text-indent: 0;
  margin-bottom: 10px;
}

.article-metas {
  overflow: hidden;
  margin-bottom: 35px;
}
.article-metas .metas-title {
  margin: 0;
  font-size: 2.8em;
  line-height: 1.45;
  color: #444;
}
.article-metas .metas-title a {
  color: #444;
}
.article-metas .metas-title a:hover {
  color: #826133;
}
.article-metas .metas-body {
  color: #999;
  margin: 20px auto;
}
.article-metas .metas-body span {
  margin-right: 10px;
}
.article-metas .metas-body span i {
  margin-right: 5px;
}
.article-metas .metas-body p {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 12px;
}

.content {
  background: #fff;
  padding-bottom: 50px;
}
.content-rows .container {
  display: flex;
  justify-content: space-between;
}
.content-aside {
  padding-top: 50px;
  width: 300px;
  margin-right: 50px;
}
.content-main {
  flex: 1;
}

.article-text {
  font-size: 20px;
}
.article-text img {
  max-width: 100%;
  height: auto;
}

.mod-submenu {
  background: linear-gradient(to right, #dcaf6a, #eae4ba, #efd096);
  padding: 10px 0;
}
.mod-submenu-inner {
  background-color: #373633;
}
.mod-submenu-bd {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
}
.mod-submenu-bd a {
  line-height: 26px;
  margin: 10px 30px 10px 0;
  padding-right: 30px;
  border-right: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.mod-submenu-bd a:last-child {
  border: 0 none;
  margin-right: 0;
  padding-right: 0;
}
.mod-submenu-bd a.active {
  color: #826133;
}

.category-title {
  padding-top: 30px;
  margin-bottom: 30px;
  font-size: 34px;
  color: #444;
}
.category-title .breadcrumb {
  margin-bottom: 0;
}
.category-title .breadcrumb li {
  font-size: 14px;
}

.category-order li > a.active {
  color: #826133;
}

.breadcrumb {
  list-style: none;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.breadcrumb > .active {
  color: #777777;
}

.breadcrumb {
  padding: 0;
  background: none;
}
.breadcrumb li {
  font-size: 14px;
  font-weight: 400;
}

.article-list {
  padding: 0;
  background: #fff;
}
.article-list .embed-responsive-4by3, .article-list .embed-responsive-square {
  border-radius: 5px;
}
.article-list .article-item {
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}
.article-list .list-news {
  display: flex;
  justify-content: space-between;
}
.article-list .article-item .content {
  margin-top: 15px;
  color: #919191;
}
.article-list .gallery-article {
  margin-top: 0;
}
.article-list .gallery-article .row {
  margin: 0 -10px;
}
.article-list .gallery-article .article-title {
  margin-bottom: 10px;
}
.article-list .gallery-article .article-title span.highlight {
  color: red;
}
.article-list .gallery-article .media .media-body {
  padding-left: 0;
}
.article-list .gallery-article .media .media-body .article-tag {
  position: relative;
  margin-top: 10px;
}
.article-list .article-title {
  margin: 0;
  font-size: 2em;
  line-height: 1.6;
  color: #000;
}
.article-list .article-title a {
  color: #444;
}
.article-list .article-title a span.highlight {
  color: #826133;
}
.article-list .article-title a:hover {
  color: #826133;
}
.article-list .article-title a .img-new {
  margin-left: 2px;
  margin-bottom: 2px;
  height: 16px;
}
.article-list .article-intro {
  margin-top: 10px;
  height: 44px;
  line-height: 22px;
  color: #828a92;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.article-list .media {
  color: #919191;
}
.article-list .media .media-body {
  padding-left: 20px;
  line-height: 25px;
}
.article-list .media .media-left {
  overflow: hidden;
  padding: 0;
}
.article-list .media .media-left a {
  display: block;
  width: 250px;
}
.article-list .media-body {
  position: relative;
}
.article-list .media-body .article-tag {
  display: block;
  clear: both;
  position: absolute;
  bottom: 0;
  color: #aaa;
  font-size: 13px;
}
.article-list .media-body .article-tag span {
  margin: 0 8px;
}
.article-list .media-body .article-tag span a {
  color: #aaa;
}
.article-list .media-body .article-tag .pull-left {
  height: 34px;
  line-height: 34px;
  color: #919191;
}
.article-list .media-body .article-tag .pull-left a {
  color: #919191;
}
.article-list .pager {
  margin: 40px 0 20px 0;
}

.media-left, .media-right, .media-body {
  display: table-cell;
  vertical-align: top;
}

.entry-meta {
  margin-top: 50px;
}

.entry-meta ul {
  overflow: hidden;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #eeeeee;
}
.entry-meta ul li {
  line-height: 26px;
}

.loadmore-tips {
  display: block;
  text-align: center;
  margin: 100px 0;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.embed-responsive-square {
  padding-bottom: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.26rem;
    padding-top: 1.6rem;
  }
  .container {
    width: 100%;
  }
  .container-aside {
    display: none;
  }
  .container-body {
    margin: 0;
  }
  .header-topline,
  .nav {
    display: none !important;
  }
  .hide-header {
    transform: translate(0, 0);
  }
  .banner {
    height: 3.2rem;
  }
  .banner-btns {
    bottom: 0.5rem;
  }
  .banner-btns .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.1rem;
  }
  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    display: none;
  }
  header .toggle {
    position: absolute;
    border: 0 none;
    top: 0.1rem;
    right: 0.3rem;
    background-color: transparent;
    border-radius: 0.1rem;
    display: block;
  }
  header .toggle .icon-bar {
    display: block;
    width: 0.44rem;
    height: 3px;
    border-radius: 1px;
    background-color: #826133;
  }
  header .toggle .icon-bar + .icon-bar {
    margin-top: 0.08rem;
  }
  header .toggle {
    margin-right: 0;
    margin-top: 0.5rem;
  }
  .menu {
    display: block;
  }
  .menu .menu-mask {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
  }
  .menu .menu-wrap {
    position: fixed;
    right: -70%;
    top: 0;
    height: 100%;
    bottom: 0;
    width: 66%;
    background-color: #fff;
    z-index: 200;
    box-sizing: border-box;
    border-left: 3px solid #826133;
    overflow: auto;
  }
  .menu .menu-wrap li {
    position: relative;
  }
  .menu .menu-logo {
    max-width: 70%;
    text-align: center;
    padding-top: 0.2rem;
    margin: 0 auto;
  }
  .menu .menu-logo img {
    max-width: 100%;
    max-height: 1rem;
  }
  .menu .menulist {
    margin-top: 0.2rem;
    padding: 0 0.2rem;
    line-height: 0.5rem;
    font-size: 0.26rem;
  }
  .menu .menulist > li {
    padding-left: 0;
  }
  .menu .menulist > li > a {
    color: #826133;
    display: block;
    line-height: 0.7rem;
    font-size: 0.34rem;
    text-align: center;
  }
  .menu .menulist > li:last-child {
    border-bottom: 0 none;
  }
  .menu .menulist1 {
    display: flex;
    flex-wrap: wrap;
  }
  .menu .menulist1 > li {
    width: 50%;
    padding-left: 10px;
    line-height: 0.6rem;
    height: 0.6rem;
    overflow: hidden;
  }
  .menu .menulist1 > li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #826133;
  }
  .menu .menulist1 > li > a {
    color: #666;
    font-size: 0.26rem;
  }
  .mod-about {
    padding: 0.6rem 0;
  }
  .mod-about .mod-hd {
    margin-bottom: 0.4rem;
  }
  .mod-about .mod-hd-title h2 {
    font-size: 0.4rem;
  }
  .mod-about .mod-hd-title .mod-hd-line span {
    width: 0.6rem;
    height: 0.06rem;
  }
  .mod-about .mod-bd {
    flex-direction: column;
    gap: 0.3rem;
  }
  .mod-about .mod-desc p {
    font-size: 0.28rem;
  }
  .mod-about .mod-stats-row {
    flex-direction: column;
    gap: 0.16rem;
    margin-top: 0.3rem;
  }
  .mod-about .mod-bd-right {
    flex-direction: column;
  }
  .mod-about .mod-bd-img {
    min-height: 2rem;
  }
  .mod-about .mod-bd-stats {
    flex-direction: row;
    min-width: auto;
    padding: 0.2rem;
  }
  .mod-about .stat-card {
    padding: 0.2rem 0.16rem;
  }
  .mod-about .stat-card .stat-value {
    font-size: 0.44rem;
  }
  .mod-about .stat-card .stat-value .stat-plus {
    font-size: 0.3rem;
  }
  .mod-about .stat-card .stat-label {
    font-size: 0.22rem;
  }
  .mod-about .stat-card .stat-sub {
    font-size: 0.2rem;
  }
  .mod-product .mod-bd {
    flex-direction: column;
    gap: 0.3rem;
  }
  .mod-product .product-card {
    padding: 0.3rem;
  }
  .mod-product .product-card h3 {
    font-size: 0.32rem;
  }
  .mod-product .product-card .product-specs th {
    font-size: 0.24rem;
  }
  .mod-product .product-card .product-specs td {
    font-size: 0.22rem;
  }
  .mod-product .product-tags {
    gap: 0.12rem;
    margin-top: 0.3rem;
  }
  .mod-product .product-tags .tag-item {
    padding: 0.1rem 0.2rem;
    font-size: 0.22rem;
  }
  .mod-advantage .mod-hd-title h2 {
    font-size: 0.4rem;
  }
  .mod-advantage .mod-bd {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  .mod-advantage .advantage-card {
    max-width: 48%;
    padding: 0.3rem 0.2rem;
  }
  .mod-advantage .advantage-card h3 {
    font-size: 0.32rem;
    margin-bottom: 0.2rem;
  }
  .mod-advantage .advantage-card .adv-icon {
    width: 0.8rem;
    height: 0.8rem;
    margin-bottom: 0.2rem;
  }
  .mod-advantage .advantage-card p {
    font-size: 0.22rem;
  }
  .mod-honor .mod-bd {
    flex-wrap: wrap;
    gap: 0.16rem;
  }
  .mod-honor .honor-item {
    max-width: 46%;
  }
  .mod-case .mod-case-header {
    padding-top: 0.4rem;
  }
  .mod-case .mod-case-header h2 {
    font-size: 0.4rem;
  }
  .mod-case .mod-case-header .mod-hd-line span {
    width: 0.6rem;
    height: 0.06rem;
  }
  .mod-case .mod-case-footer {
    padding-bottom: 0.3rem;
  }
  .mod-case .mod-case-footer p {
    font-size: 0.22rem;
    padding: 0.1rem 0.3rem;
  }
}

/*# sourceMappingURL=index.css.map */
