/* 演示版样式，非项目必要 */
.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: "Roboto Condensed", "Roboto", "PingFang SC", "Microsoft Yahei", arial, helvetica, clean, sans-serif;
}

p {
  margin-bottom: 35px;
  line-height: 1.8;
}

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 {
  color: #222;
  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) {
  p {
    font-size: 18px;
  }

  p.p-sm {
    font-size: 15px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  h3.h3-sm {
    font-size: 24px;
  }

  h4.h4-lg {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

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: #007bff;
  border-color: #007bff;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  background-color: #d6012c;
  border-color: #007bff;
}

.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;
}

/* 列表样式 */
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: #007bff;
  left: -30px;
  top: 6px;
}

ul.marker-style-circle li::before {
  border-radius: 50%;
}

.btn {
  border: 2px solid;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 0.4rem 0.8rem;
  font-family: "Roboto", sans-serif;
}

.btn-outline-danger {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-danger:hover {
  background-color: #007bff;
  border-color: #007bff;
}

.bg-primary {
  background-color: #007bff !important;
}

.bg-dark2 {
  background-color: #333 !important;
}

.bg-light {
  background-color: #f5f5f5 !important;
}

.bg-light2 {
  background-color: #FAFAFA !important;
}

.text-dark {
  color: #666 !important;
}

@media (min-width: 992px) {
  .btn-lg {
    font-size: 1.375rem;
    padding: 0.7rem 2rem;
	border-radius: 5px!important;
  }
  .w-lg-38 {
    width: 38%;
  }
}

/* home */
.full-image {
  width: 100%;
  height: 100%;
}

.section-main-title::after {
  content: "";
  display: flex;
  bottom: -5px;
  position: relative;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  z-index: 1;
}

h4.section-main-title::after {
  content: "";
  display: flex;
  bottom: -8px;
  position: relative;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  z-index: 1;
}

.section-main-title-white::after {
  content: "";
  display: flex;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  z-index: -1;
}

.section-main-title-center::after {
  content: "";
  display: flex;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  z-index: -1;
  margin: 0 auto;
}

.section-bf-control {
  background-image: url(../images/section-bf-control-bg1-3.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  position: relative;
}

.section-bf-control::before {
  content: "";
  position: absolute;
  /*background-image: url(../images/section-bf-control-bg2.svg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  bottom: 0;
  width: 100%;
  height: 154px;
}

.scroll-to-share {
  z-index: 99;
}

@media (min-width: 1140px) {
  .home-banner-title h1 {
    font-size: 40px !important;
  }
}

@media (min-width: 1540px) {
  .home-banner-title h1 {
    font-size: 50px !important;
  }
}

@media (min-width: 1860px) {
  .home-banner-title h1 {
    font-size: 60px !important;
  }
}


/* swiper */
.swiper-outer {
  position: relative;
}

.swiper-button-next:after, .swiper-button-prev:after {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  font-size: 20px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  border-radius: 50%;
  color: rgb(255, 255, 255);
}


.swiper-button-next, .swiper-button-prev {
  border: 1px solid #70707000;
  background-color: #00000036;
}

.home-swiper .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 0;
  position: absolute;
}

.home-swiper .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 0;
}


.home-swiper .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: -90px;
}

.home-swiper .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: -90px;
}

@media (max-width: 1440px) {
  .home-swiper .swiper-button-prev, .home-swiper .swiper-button-next {
    display: none;
  }
}


/* news */
.section-news .news-tag {
  font-size: 36px;
}

.section-news .news-date {
  font-family: "PingFang SC", "Microsoft Yahei", arial, helvetica, clean, sans-serif;
}

.section-news .news-title {
  line-height: 32px;

}

.section-news .news-description {
  color: #666666;
}

/* home-form */
.home-form input, .home-form textarea {
  width: 100%;
  margin-bottom: 30px;
  border: 2px solid #007bff;
}

.home-form input {
  min-height: 50px;
  padding-left: 15px;
}

.home-form textarea {
  padding-left: 15px;
  padding-top: 15px;
  max-height: 100px;
}

.home-form input::placeholder, .home-form textarea::placeholder {
  color: #999999;
  font-size: 14px;
  font-family: "Roboto", "PingFang SC", "Microsoft Yahei", arial, helvetica, clean, sans-serif;
}

.home-form input.btn {
  width: 50%;
}

.home-form .wpcf7-spinner {
  display: none;
}

@media (min-width: 992px) {
  .home-form {
    padding-left: 260px;
    padding-right: 260px;
  }
}

/* contbox */
.scroll-to-share {
  /* display: none; */
  cursor: pointer;
  position: fixed;
  bottom: 50%;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-share i {
  font-size: 24px !important;
}

.scroll-to-share span {
  font-size: 12px !important;
}

.fixed-item,
.fixed-item a,
.fixed-item a:hover,
.fixed-item a:focus {
  color: #fff;
  font-size: 16px;
  font-weight: bolder;
}

.fixed-item {
  cursor: pointer;
  background-color: #007bff;
  height: 64px;
  width: 64px;
}

.fixed-item img {
  max-width: 150px;
}

@media(max-width: 991px) {
  .fixed-item img {
    max-height: 90px;
  }

  .fixed-item:hover .fixed-des,
  .fixed-item:focus .fixed-des {
    right: 100%;
  }

  .fixed-item .fixed-des,
  .fixed-item .fixed-des {
    right: 205px;
  }
}

.fixed-item {
  overflow: hidden;
}

.fixed-item:hover,
.fixed-item:focus {
  overflow: visible;
  background-color: #0363ca;
  color: #fff;
}

.fixed-item .fixed-des,
.fixed-item .fixed-des {
  /* transition: all .3s ease-in-out; */
  background-color: #000000;
}

.news-item-day {
  font-size: 36px;
}

@media(min-width: 992px) {
  .fixed-item {
    height: 64px;
    width: 64px;
  }

  .fixed-item .fixed-des,
  .fixed-item .fixed-des {
    right: -205px;
  }

  .fixed-item:hover .fixed-des,
  .fixed-item:focus .fixed-des {
    right: 100%;
  }
}

@media (max-width: 992px) {

  .scroll-to-share {
    bottom: 0;
  }

  .scroll-to-top {
    bottom: 215px;
  }
}

/* footer */
footer,
footer p,
footer a {
  font-size: 16px;
}

footer a:hover {
  color: rgb(229, 1, 47);
}

.footer-menu ul {
  list-style: none;
  padding-left: 0;
}

.footer-menu ul li ul {
  display: inherit;
}

.footer-menu ul li ul li {
  margin-bottom: 20px;
}

.footer-menu ul li ul li a {
  font-size: 14px;
}

.menu-footer-menu-container>ul>li>a {
  font-size: 16px;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 20px;
}

footer .footer-phone {
  color: #007bff;
}

@media (min-width: 992px) {
  .footer-menu ul .menu-item-has-children {
    display: inline-grid;
    max-width: 120px;
  }

  .footer-menu ul .menu-item-has-children {
    margin-right: 2.7rem;
  }
}

/* Company Profile */
.py-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}

.max-width-95 {
  max-width: 95px;
}

@media (min-width: 992px) {
  .section-company-profile .section-company-profile-left {
    margin-left: -100px;
  }
  .page-template-template-page-our-company .section-employee-trainning p,.section-text-regular p{
    font-size: 15px;
  }
}

/* swiper */
.font-family-roboto {
  font-family: "Roboto", sans-serif;
}

.section-about .swiper-wrapper {
  display: block;
}


@media (min-width: 992px) {

  .border-bottom-lg-none {
    border-bottom: 0 !important;
  }

  .section-about .swiper-wrapper {
    display: flex;
  }

  .section-swiper-time .swiperhomepagenew1 .swiper-wrapper::before {
    content: "";
    /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
    background: url(../images/line.png) no-repeat left center;
    height: 10px;
    margin-top: -6px;
    top: 50%;
    width: 800%;
    left: 0;
    right: 0;
    position: absolute;
  }

  .section-swiper-time .homepage-swiper-circular-down {
    top: 50%;
    position: absolute;
  }

  .section-swiper-time .homepage-swiper-circular-up {
    bottom: 50%;
    position: absolute;
  }

  .section-swiper-time .swiperhomepagenew1 .swiper-wrapper .swiper-slide::before {
    content: "";
    background: url(../images/swiper-arrowhead-left.svg);
    /* background-color: #007bff; */
    /* box-shadow: 0 0 6px 3px rgba(229, 1, 45, 0.3); */
    /* border-radius: 50%; */
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50.6%;
    left: 22%;
    transform: translate(-50%, -50%);
    margin-left: -7px;
    margin-top: -7px;
    z-index: 1;
  }

  .section-swiper-time .swiperhomepagenew1 .swiper-wrapper .swiper-slide .homepage-swiper-circular-up::before {
    content: "";
    /* background: url('../images/swiper-arrowhead-left.svg'); */
    background-color: #007bff;
    width: 2px;
    height: 16px;
    position: absolute;
    bottom: 34px;
    left: 12%;
    margin-left: 8px;
    margin-top: -7px;
    z-index: 1;
  }

  .section-swiper-time .swiperhomepagenew1 .swiper-wrapper .swiper-slide .homepage-swiper-circular-down::before {
    content: "";
    /* background: url('../images/swiper-arrowhead-left.svg'); */
    background-color: #007bff;
    width: 2px;
    height: 16px;
    position: absolute;
    top: 30px;
    left: 12%;
    margin-left: 8px;
    margin-top: 3px;
    z-index: 1;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    background-color: rgba(0, 0, 0, 0.50);
    border-radius: 50%;
    padding: 10px 15px;
    color: #fff;
  }

  .swiper-outer {
    position: relative;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    background-color: rgba(0, 0, 0, 0);
    color: #ffffff;
    font-size: 20px;
  }

  .section-about .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 0;
    position: absolute;
  }

  .section-about .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 0;
  }

  .border-left-2-primary {
    border-left: 2px solid #007bff;
  }

  .section-about .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: -70px;
  }

  .section-about .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 20%;
  }


}

@media (max-width: 992px) {
  .section-about .swiper-button-next, .section-about .swiper-button-prev {
    display: none;
  }
}

@media (min-width: 992px) {
  .section-about .swiper-slide {
    min-height: 850px;
  }
}


@media (min-width: 1200px) {
  .section-about .swiper-slide {
    min-height: 850px;
  }
}

@media (min-width: 1500px) {
  .section-about .swiper-slide {
    min-height: 760px;
  }
}

@media (min-width: 1920px) {
  .section-about .swiper-slide {
    min-height: 630px;
  }
}

/* products */
.single-product .swiper-container .swiper-slide-thumb-active {
  border: 1px solid #007bff;
}

.single-product .swiper-black .swiper-button-next,
.single-product .swiper-black .swiper-button-prev {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.2);
}

.products-swiper .products-swiper-search-icon {
  bottom: 0;
}

.single-product .product-info .table th, .single-product .product-info .table td {
  vertical-align: middle;
  border-top: 0;
}

/* news */

.wp-pagenavi span.current {
  font-size: 27px;

}

.wp-pagenavi span, .wp-pagenavi a {
  font-size: 17px;
  background-color: #ddd0;
  font-style: italic;
}

/* contact-us */
.head-office-list p {
  margin-bottom: 0;
}

.contact-us ul li {
  margin-bottom: 20px;
}

.contact-us ul li i {
  font-size: 22px;
  color: #007bff;
}

.map-wrap,
.map-wrap iframe {
  width: 100%;
  height: 320px;
}

.contact-section-map .embed-responsive {
  max-height: 520px;
}

@media (min-width: 768px) {

  .map-wrap,
  .map-wrap iframe {
    height: 420px;
  }

  .contact-information-icon {
    margin: 0 25px 0 10px;
  }

  .contact-information-icon img {
    max-height: 26px;
  }

  .contact-information-title {
    min-width: 100px;
    margin-right: 25px;
  }
}

@media (min-width: 992px) {

  .map-wrap,
  .map-wrap iframe {
    height: 520px;
  }
}

/* Download */
.archive-downloads .btn-sm {
  font-size: 13px;
}

.archive-downloads .table th, .archive-downloads .table td {
  border-top: 0;
}

.white-space-nowrap {
  white-space: nowrap;
}

.download-categories .download-categories-list:nth-child(4n+1),
.download-categories .download-categories-list:nth-child(4n+2),
.download-categories .download-categories-list:nth-child(4n+5),
.download-categories .download-categories-list:nth-child(4n+6),
.download-categories .download-categories-list:nth-child(4n+9),
.download-categories .download-categories-list:nth-child(4n+10) {
  background-color: #f5f5f500;
}

.blog-img:hover {
  border: 1px solid #E5012D;
}

/* service */
.page-template-template-page-service .widget_text.widget.widget_custom_html {
  display: none;
}
