.header {
  box-shadow: 0px 2.5px 7.5px 0px #666;
}

.breadcrumb {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
  font-size: 12px;
  overflow: hidden;
  box-shadow: 0px 2.5px 7.5px 0px #666;
}
.breadcrumb-item {
  padding-right: 10px;
}
.article,
.product {
  display: flex;
  padding: 15px;
  box-shadow: 0 0 10px #666;
  position: relative;
}

.column-auto {
  flex: 1 1 auto;
  justify-content: space-between;
  border-radius: 4px;
  padding: 10px;
  background: #f8f8f8;
  overflow: hidden;
}
.column-item {
  flex: 0 0 250px;
  overflow: hidden;
}
.recommend {
  margin-left: 10px;
  margin-bottom: 10px;
}
.recommend:last-child {
  margin-bottom: 0;
}
.recommend-title {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  background: #79eac0;
  line-height: 65px;
  text-align: center;
}
.recommend-list {
  margin: 0;
  padding: 0 10px;
  font-size: 14px;
  background-color: #f8f8f8;
  overflow: hidden;
}

.recommend-news a {
  position: relative;
  display: block;
  line-height: 50px;
  padding-left: 1em;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-news a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #79eac0;
}
.recommend-product {
  padding-bottom: 10px;
}

.recommend-product a {
  display: block;
  margin-top: 10px;
  position: relative;
}
.recommend-product img {
  display: block;
}
.recommend-product span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 0 10px;
  height: 0;
  line-height: 30px;
  text-align: center;
  background-color: rgba(121, 234, 193, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: all 0.5s ease;
}
.recommend-product a:hover span {
  height: 30px;
  opacity: 1;
}
/* 产品情 */
.product-photo {
  padding: 10px;
}
.product-photo img{
  max-width: 100%;
}
.product-content {
  padding: 10px;
}
.product-content table {
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}
.product-content td {
  padding: 2px 5px;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
}
.product-container {
  min-height: 80px;
}

.product .product-title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

/* 文章详情 */
.article-title {
  margin: 0 auto;
  height: 25px;
  line-height: 25px;
  font-size: 20px;
  color: #333;
}
.article-subtitle {
  display: block;
  margin-top: 10px;
  height: 20px;
  line-height: 20px;
  color: #666;
}
.article-content {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 60px;
}
.article-content img {
  max-width: 100%;
}
/* 分页 */
.paging {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
}
/* 单页 */
.page {
  padding: 15px;
  box-shadow: 0 0 10px #666;
}
.page img{
  max-width: 100%;
}
/* aboutus */


/* 相册 */
.photo {
  position: relative;
  height: 142px;
  overflow: hidden;
  box-shadow: 0px 2px 6px 0px #666;
}
.photo-wrapper {
  position: relative;
  width: 100%;
}
.photo-wrapper img{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 10;
  transition: all 1.8s ease;
  cursor: pointer;
}
.photo-wrapper .hidden{
  opacity: 0;
  z-index: 0;
}
.indicator-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}
.indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 4px;
  background-color: #fff;
  cursor: pointer;
}
.indicator.on{
  background-color: #00965e;
}

/* 弹出层 */
.preview-popup {
  position: fixed;
  left: 0;
  top: 0; 
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  align-items: center;
}
.popup_wrapper {
  width: 60%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  flex: 0 0 auto;
  cursor: pointer;
}
.popup_wrapper img{
  width: 100%;
  height: auto;
}