/* 分页样式 */
.page-pagination {
  text-align: center;
  width: 100%;
}

.page-pagination .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 30px 0;
  border-radius: 8px;
}

.page-pagination .pagination>li {
  display: inline;
}

.page-pagination .pagination>li>a,
.page-pagination .pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #fb5722;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.page-pagination .pagination>li:first-child>a,
.page-pagination .pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.page-pagination .pagination>li:last-child>a,
.page-pagination .pagination>li:last-child>span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.page-pagination .pagination>li>a:focus,
.page-pagination .pagination>li>a:hover,
.page-pagination .pagination>li>span:focus,
.page-pagination .pagination>li>span:hover {
  z-index: 2;
  color: #fb5722;
  background-color: #eee;
  border-color: #ddd;
}

.page-pagination .pagination>.active>a,
.page-pagination .pagination>.active>a:focus,
.page-pagination .pagination>.active>a:hover,
.page-pagination .pagination>.active>span,
.page-pagination .pagination>.active>span:focus,
.page-pagination .pagination>.active>span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #fb5722;
  border-color: #fb5722;
}

.page-pagination .pagination>.disabled>a,
.page-pagination .pagination>.disabled>a:focus,
.page-pagination .pagination>.disabled>a:hover,
.page-pagination .pagination>.disabled>span,
.page-pagination .pagination>.disabled>span:focus,
.page-pagination .pagination>.disabled>span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.page-pagination .pagination .jumpto {
  display: inline-block;
  margin-left: 2px;
}

.page-pagination .pagination .jumpto input {
  padding: 6px;
  /* line-height: 1.42857143; */
  color: #2c3e50;
  background-color: #fff;
  border: 1px solid #ddd;
  float: left;
  height: 34px;
}

.page-pagination .pagination .jumpto .page_number {
  width: 45px;
  margin-right: -1px;
}

/* 详情页的上一页下一页 */
.next-prev {
  margin-top: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #eee;
}

.next-prev .row {
  padding: 20px 0;
}

.next-prev .row .next-prev-left,
.next-prev .row .next-prev-right {
  font-size: 14px;
  color: #666;
}

.next-prev .row .next-prev-right {
  text-align: right;
}

.next-prev .row a {
  color: #fb5722;
}

/* ================================ index.html START ================================ */
.logo {
  width: 200px;
}
/* nav.html */
.language img {
  width: 18px;
}
/* ================================ index.html END ================================ */

/* ================================ detail_contact.html START ================================ */
.form-group textarea.form-control {
  height: 150px;
}

#category_description_short .p-line {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  #category_description_short .p-line {
    font-size: 16px;
  }
}
#category_description_short .p-line .fa {
  width: 25px;
  height: 25px;
  margin-right: 8px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #666;
}
#category_description_short .p-line .fa.fa-mobile-phone {
  font-size: 25px;
}

/* ================================ detail_contact.html END ================================ */

/* ================================ detail_case/news.html START ================================ */


.page-content-detags {
  margin: 40px 0px 0px;
}

.page-content-detags p {
  font-size: 14px;
}

.page-content-detags p span {
  color: #666;
}

.page-content-detags p a {
  font-size: 14px;
  margin: 0px 5px;
  color: #fb5722;
}

.qrcode_ewmimg {
  display: none;
}

/* ================================ detail_case/news.html END ================================ */


/* ================================ list_video.html START ================================ */
.page-list .case-wrapper {
  padding: 30px 0;
}

.case-wrapper .case-item {
  display: block;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  transition: top 0.5s;
  margin-bottom: 30px;
}

.case-wrapper .case-item .case-item-img {
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.case-wrapper .case-item .case-item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  transform: scale(1);
  transition: transform 500ms ease;
  border: none !important;
  padding: 0;
}

.case-wrapper .case-item .case-content-wrapper {
  padding: 15px 15px 20px;
  transition: all 300ms ease;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.case-wrapper .case-item .case-item-title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: all 300ms ease;
}

.case-wrapper .case-item .case-item-info {
  margin: 10px 0;
  color: #666;
  font-size: 14px;
  text-align: left;
  transition: all 300ms ease;
}

.case-wrapper .case-item:hover {
  top: -4px;
}

.case-wrapper .case-item:hover .case-item-img img {
  transform: scale(1.2);
}

.case-wrapper .case-item:hover .case-content-wrapper {
  background-color: #fb5722;
  color: #fff;
}

.case-wrapper .case-item:hover .case-content-wrapper .case-item-title {
  color: #fff;
}

.case-wrapper .case-item:hover .case-content-wrapper .case-item-info {
  color: #fff;
}

/* list_product.html */
.plistdeul {
  margin-top: 20px;
  padding-top: 20px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  border-top: solid 1px #f4f4f4;
}
#page .shown_news_b a,
#page .shown_products_b_a a {
  font-weight: 600;
}

/* ================================ list_video.html END ================================ */

/* ================================ detail_case.html START ================================ */
.page-content {
  padding: 40px 0;
}

.page-content .page-content-card {
  border: none;
}

.page-content .page-content-card .tabs {
  display: flex;
  padding: 30px 30px 0;
  border-bottom: 1px solid #eee;
}

.page-content .page-content-card .tabs .tabs-item {
  cursor: pointer;
  font-size: 16px;
  color: #333;
  padding: 10px 0;
  transition: all 0.3s ease;
  margin-right: 40px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.page-content .page-content-card .tabs .tabs-item.active {
  color: #000;
  border-bottom: 3px solid #000;
  font-weight: 600;
}

.page-content .card-body {
  background-color: #fff;
  border-radius: 10px;
  line-height: 2rem;
}

.page-content .card-body img {
  max-width: 100%;
  height: auto;
}

.page-content .page-content-title {
  font-size: 30px;
  text-align: center;
}

.page-content .page-content-timeline {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin-bottom: 20px;
}

.page-content .page-content-timeline .page-content-timeline-left {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.page-content .page-content-timeline .page-content-timeline-left a {
  color: #fb5722;
}

.page-content .page-content-timeline .page-content-timeline-left span {
  margin: 0px 5px;
}

.page-content .page-content-timeline .page-content-timeline-left i {
  font-style: normal;
}

.page-content .page-content-timeline-right {
  display: flex;
  justify-content: flex-end;
}

.page-content .page-content-timeline-right img {
  max-width: none;
  height: 22px;
  filter: brightness(200%) grayscale(200%);
  margin-right: 10px;
}

.page-content .page-content-detags {
  margin: 40px 0px 0px;
}

.page-content .page-content-detags p {
  font-size: 14px;
}

.page-content .page-content-detags p span {
  color: #666;
}

.page-content .page-content-detags p a {
  font-size: 14px;
  margin: 0px 5px;
  color: #fb5722;
}

/* ================================ detail_case.html END ================================ */

/* ================================ search.html START ================================ */
.input-group {
  display: flex;
  width: 100%;
}

.input-group .btn {
  padding: 3px 12px;
}

.newslistp_bot {
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.newslistp_bot ul li {
  margin-bottom: 40px;
  transition: all 0.5s;
}

.newslistp_bot ul li a {
  display: block;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}

.newslistp_botimg {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.newslistp_botimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.newslistp_botdes {
  padding: 15px;
  background-color: #ffffff;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.5s;
}

.newslistp_botdes h3 {
  color: #333333;
  font-size: 16px;
}

.newslistp_botdes p {
  font-size: 14px;
  color: #333333;
  width: 100%;
  text-align: right;
}

.newslistp_bot ul li:hover .newslistp_botimg img {
  transform: scale(1.05);
}

.newslistp_bot ul li:hover .newslistp_botdes h3,
.newslistp_bot ul li:hover .newslistp_botdes p {
  color: #fb5722;
}

.newslistp_bot ul li:hover .newslistp_botdes {
  background-color: #fb5722;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.newslistp_bot ul li:hover .newslistp_botdes h3,
.newslistp_bot ul li:hover .newslistp_botdes p {
  color: #ffffff;
}

/* ================================ search.html END ================================ */