/* 演示版样式，非项目必要 */
.themed-grid-col {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: rgba(86, 61, 124, .15);
  border: 1px solid rgba(86, 61, 124, .2);
}

.bd-example {
  position: relative;
  padding: 1rem;
  border: 2px solid #f8f9fa;
}

.highlight {
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #f8f9fa;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* 按项目所需，重定义bootcss必要元素样式 */
/******
 ****** Global
 ******/
body {
  font-size: 14px;
  font-family: "PingFang SC", "Microsoft Yahei", arial, helvetica, clean, sans-serif;
}

p {
  margin-bottom: 35px;
  line-height: 34px;
}

p:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: bold;
}

@media (min-width: 768px) {
  p {
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .container-sm {
    max-width: 910px;
  }

  .container {
    max-width: 1310px;
  }

  .container-xl {
    max-width: 1770px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 13px;
  }
}

a {
  color: #000;
  cursor: pointer;
  outline: none;
}

a:hover,
a:focus {
  color: #333;
  text-decoration: none;
  transition: all 0.5s;
}


/* 按钮样式 */
/* .btn{
    border-radius: 0;
} */
/* 主按钮（暗色#333主题） */
.btn-primary {
  color: #fff;
  background-color: #000;
  border-color: #000;
  border-radius: 0;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  background-color: #000;
  border-color: #000;
}

.btn-primary:focus,
.btn-primary.focus {
  background-color: #000;
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #333;
  border-color: #333;
}

.bd-example-border-utils [class^="border"] {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  margin: .25rem;
  background-color: #f5f5f5
}

css.loader-ellips {
  font-size: 20px;
  position: relative;
  width: 40px;
  height: 10px;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #44cef6;
  /* change color here */
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}

.loader-ellips__dot:nth-child(3) {
  left: 15px;
}

.loader-ellips__dot:nth-child(4) {
  left: 30px;
}

@keyframes reveal {
  from {
    transform: scale(0.001);
  }

  to {
    transform: scale(1);
  }
}

@keyframes slide {
  to {
    transform: translateX(15px);
  }
}

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}

.page-load-status {
  display: none;
  padding-top: 20px;
  color: #333;
  text-align: center;
}

/* 自定义样式 */
.bg-black {
  background-color: #000000;
}

.bg-light2 {
  background-color: #FAFAFA !important;
}

.white-space-nowrap {
  white-space: nowrap;
}

.min-width-24 {
  min-width: 24px;
}

@media (min-width: 992px) {
  .w-lg-55 {
    width: 55%;
  }

  .p-lg-6 {
    padding: 4rem !important;
  }

  .pt-lg-6,
  .py-lg-6 {
    padding-top: 4rem !important;
  }

  .pr-lg-6,
  .px-lg-6 {
    padding-right: 4rem !important;
  }

  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 4rem !important;
  }

  .pl-lg-6,
  .px-lg-6 {
    padding-left: 4rem !important;
  }

  .p-lg-7 {
    padding: 5rem !important;
  }

  .pt-lg-7,
  .py-lg-7 {
    padding-top: 5rem !important;
  }

  .pr-lg-7,
  .px-lg-7 {
    padding-right: 5rem !important;
  }

  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-7,
  .px-lg-7 {
    padding-left: 5rem !important;
  }

  .p-lg-8 {
    padding: 6rem !important;
  }

  .pt-lg-8,
  .py-lg-8 {
    padding-top: 6rem !important;
  }

  .pr-lg-8,
  .px-lg-8 {
    padding-right: 6rem !important;
  }

  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 6rem !important;
  }

  .pl-lg-8,
  .px-lg-8 {
    padding-left: 6rem !important;
  }

  .m-lg-7 {
    margin: 5rem !important;
  }

  .mt-lg-7,
  .my-lg-7 {
    margin-top: 5rem !important;
  }

  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 5rem !important;
  }

  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 5rem !important;
  }

  .pt-lg-200 {
    padding-top: 200px !important;
  }

  .pb-lg-150 {
    padding-bottom: 150px !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }
}

/* 列表样式 */
.border-white {
  border: 1px solid #ffffff !important;
}

ul.marker-style li {
  list-style: none;
  position: relative;
  margin-bottom: 20px;
}

ul.marker-style li::before {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  background-color: #E5012D;
  left: -30px;
  top: 6px;
}

ul.marker-style-circle li::before {
  border-radius: 50%;
}

.list-style-none li {
  list-style: none;
}

footer .footer-contact li {
  margin-bottom: 4px;
}

.works-list .product-item .product-thumb {
  position: relative;
  overflow: hidden;
}

.works-list .product-item .product-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0 ease;
  /* 过渡属性为背景颜色，过渡时间为 0.3 秒，缓动函数为 ease */
}

.works-list .product-item .product-thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.5);

}

.works-list .product-item .product-info {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  transition: none !important;
}

.bg-dark-transparent {
  background-color: rgba(0, 0, 0, 0.5);
}

.no-wrap-text {
  white-space: nowrap;
}

.works-list .product-item .product-info.w-100 .product-info-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: none !important;
}



.works-list .product-item:hover .product-info {
  /* display: block; */
  visibility: visible;
  opacity: 1;
}

.border-bottom-dark {
  border-bottom: 1px solid rgb(255 255 255 / 50%);
}

/* 面包屑 */
.breadcrumbs .current-item {
  color: #CCCCCC;
}

.wp-pagenavi span.current {
  font-size: 27px;

}

.wp-pagenavi span, .wp-pagenavi a {
  font-size: 17px;
  background-color: #ddd0;
  font-style: italic;
}

/* single-works */
.single-works .works-category {
  color: #666666 ;
}

.single-works .menu-top .navbar-nav .nav-link span {
  color: #ffffff;
}

.single-works .works-singlg-img {
  text-align: center;
}

@media (min-width: 992px) {
  .single-works .bg-transparent {
    background: linear-gradient(#0000009f, #00000000);
  }

  .single-works .logo-dark {
    display: none;
  }

  .single-works .menu-fixed .logo-dark {
    display: block;
  }

  .single-works .logo-white {
    display: block !important;
  }

  .single-works .menu-fixed .logo-white {
    display: none !important;
  }
}

/* news */
.section-main-title::after {
  content: "";
  display: flex;
  bottom: -10px;
  position: relative;
  width: 60px;
  height: 3px;
  background-color: #000000;
  z-index: 1;
}

.blog-item .blog-excerpt {
  letter-spacing: 1px;
  line-height: 24px;
}

.single-content p {
  font-size: 18px;
}

@media (min-width: 992px) {
  .single-news .post-navigation .nav-links, .single-news .post-navigation .nav-links a {
    display: flex;
  }

  .single-news .post-navigation .nav-links i{
    font-size: 24px;
  }

  .single-news .post-navigation .nav-links .nav-previous {
    padding-right: 48px;
  }

  .single-news .post-navigation .nav-links .nav-next {
    padding-left: 48px;
  }

  .single-news .post-navigation .nav-links .nav-previous .nav-title{
    margin-top: auto;
    margin-bottom: auto;
  }
  .single-news .post-navigation .nav-links .nav-previous .nav-subtitle {
    padding-right: 15px;
  }
  .single-news .post-navigation .nav-links .nav-next .nav-subtitle {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .single-news .post-navigation .nav-links .nav-next {
    padding-top: 20px;
  }
}

/* contact */
.contact-us-page .contact-us li {
  margin-bottom: 14px;
}

.contact-form input {
  min-height: 50px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  border: 2px solid #000;
  margin-bottom: 16px;
  padding-left: 20px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #999999;
  font-size: 14px;
}

div#n2-ss-1 .nextend-arrow img {
  width: 52px !important;
}

