@import url('css2.css');

/* Constrac HTML Template*/

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header
5. About Section
6. Service Section
7. Promo Section
8. Project Section
9. CTA Section
10. Content Section
11. Team Section
12. Testimonial Section
13. Page Header
14. Error Section
15. Contact Form Section
16. Blog Section
17. Footer


**********************************************/

@import url("animate.min.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("owl.carousel.css");
@import url("venobox.css");



/* 联系我们的地理位置样式*/
  
/***

====================================================================
	Fonts
====================================================================

 ***/
 .font-family {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

/***

====================================================================
	Reset
====================================================================

 ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

:root {
  /* Primary Colors */
  --primary-color: #ff7607;
  --primary-light: #dddddd;
  --primary-dark: #8d9aa8;

  /* Secondary Colors */
  --secondary-color: var(--secondary-color);

  /* Background Colors */
  --background-color: #ffffff;
  --background-dark: #f8f9fa;
  --background-light: #e9ecef;

  /* Text Colors */
  --text-color: #343a40;
  --text-light: #6c757d;
  --text-dark: #212529;
}

/***

====================================================================
	Global Settings
====================================================================

 ***/

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: -0.2px;
  position: relative;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--primary-color);
}
::selection {
  background-color: var(--primary-color);
  color: var(--background-color);
}
-webkit-::selection {
  background-color: var(--primary-color);
  color: var(--background-color);
}
::-moz-selection {
  background-color: var(--primary-color);
  color: var(--background-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--secondary-color);
}

h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 100%;
  margin: 0 0 10px;
  color: var(--secondary-color);
}
h2 {
  font-size: 60px;
  line-height: 90%;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: -1px;
}
h3,
h4 {
  margin: 0 0 10px;
  font-weight: 400;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 20px;
}
h5,
h6 {
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--primary-color);
}
img {
  border: none;
  outline: none;
  max-width: 100%;
}
ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  font-size: 16px;
  line-height: 30px;
  /* margin-bottom: 15px; */
}
a,
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ddd !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ddd !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ddd !important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd !important;
}
button {
  border: none;
  background: 0 0;
}
.padding {
  padding: 30px 0;
}
.no-padding {
  padding: 0;
}
.padding-15 {
  padding: 15px;
}
.padding-16 {
  padding: 15px 0px 0px 0px;
}
.padding-20 {
  padding: 20px;
}
.box-padding {
  padding: 0 50px;
}
.bg-white {
  background-color: var(--background-color);
}
.bg-grey {
  background-color: #f9fafa;
}



.beijing{position: relative;}
.hezi{display:block;width:400px;position:absolute;top:25%;left:15%;}
            /* 联系我们：先滑入，再晃动 */
            .title {
                font-size: 30px;
                color: #dd4444;
                font-weight: 400;
                margin-bottom: 30px;
                opacity: 0;
                /* 总时长：滑入3s + 晃动1s = 4s */
                animation: slideInLeft 3s forwards;
            }

            /* 很高兴为您服务：延迟4s后再滑入（等联系我们晃动结束） */
            .subtitle {
                font-size: 25px;
                color: #dd4444;
                  font-weight: 400;
                opacity: 0;
                animation: slideInRight 2s 1s forwards;
                padding-left: 70px; /* 错位：向右缩进 */
            }

            /* 1. 从左侧滑入 */
            @keyframes slideInLeft {
                0% {
                    transform: translateX(-50%);
                    opacity: 0;
                }
                100% {
                    transform: translateX(0);
                    opacity: 1;
                }
            }

            /* 2. 晃动效果（在滑入完成后触发） */
    
            /* 3. 从右侧滑入 */
            @keyframes slideInRight {
                0% {
                    transform: translateX(50%);
                    opacity: 0;
                }
                100% {
                    transform: translateX(0);
                    opacity: 1;
                }
            }



@media screen and (max-width: 768px) {
    /* 1. 基础容器适配：宽度100%，取消固定padding */
    .container {
        width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }

    /* 2. 背景图和文字容器适配 */
    .beijing {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }
    .beijing img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important; /* 保持图片比例，避免拉伸 */
    }
    .hezi {
        width: 100% !important;
        position:absolute !important;
        top: 10% !important;
        left: 0 !important;
      
        text-align: center !important;
    }

    /* 3. 文字样式适配（缩小字体、取消错位缩进） */
    .title {
        font-size: 14px !important;
         margin-bottom: 0px!important;
        animation: slideInLeft 2s forwards !important; /* 缩短动画时长，适配移动端视觉 */
    }
    .subtitle {
        font-size: 12px !important;
        padding-left: 0 !important; /* 取消错位缩进，避免移动端文字超出 */
        animation: slideInRight 2s 2s forwards !important;
    }

    /* 4. 地图容器适配（降低高度，避免页面过长） */
    #container {
        height: 300px !important; /* 移动端高度减半 */
        margin-bottom: 15px !important;
    }

    /* 5. 联系信息排版适配（增加间距，强制换行） */
    .contact-info {
        padding: 15px 0 !important;
    }
    .contact-info p {
        font-size: 14px !important;
        line-height: 24px !important;
        margin-bottom: 10px !important;
        white-space: normal !important; /* 强制文字换行 */
    }

    /* 6. 自定义弹窗适配（缩小宽度，调整箭头位置） */
    .custom-info-window {
        width: 220px !important;
        left: 0 !important;
        top: 20px !important;
    }
    .custom-info-window::after {
        bottom: -78px !important; /* 缩短箭头长度，适配小弹窗 */
        left: 70% !important;
        transform: translateX(-50%) rotate(24deg) !important; /* 居中箭头 */
    }

    /* 7. 面包屑导航适配 */
    .breadcrumbs {
        font-size: 12px !important;
        padding: 10px 0 !important;
    }
}

/* 平板适配：屏幕宽度 769px - 992px（可选，优化中间尺寸显示） */
@media screen and (min-width: 769px) and (max-width: 992px) {
    .hezi {
        left: 10% !important;
        width: 350px !important;
    }
    .title {
        font-size: 28px !important;
    }
    .subtitle {
        font-size: 22px !important;
        padding-left: 50px !important;
    }
    #container {
        height: 450px !important;
    }
}























.bd-top {
  border-top: 1px solid #e5e5e5;
}
.bd-bottom {
  border-bottom: 1px solid #e5e5e5;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-25 {
  margin-left: 25px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-35 {
  margin-left: 35px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.fz-28 {
  font-size: 28px;
}
.fz-24 {
  font-size: 24px;
}
.fz-22 {
  font-size: 22px;
}
.fz-20 {
  font-size: 20px;
}
.fz-18 {
  font-size: 18px;
}
.fz-16 {
  font-size: 16px;
}
.text-black {
  color: #333;
}
.text-white {
  color: var(--background-color);
}
.box-shadow,
.box-shadow-hover:hover {
  -webkit-box-shadow: 0 0.2rem 2.8rem rgba(36, 36, 36, 0.1);
  -moz-box-shadow: 0 0.2rem 2.8rem rgba(36, 36, 36, 0.1);
  box-shadow: 0 0.2rem 2.8rem rgba(36, 36, 36, 0.1);
}
.loaded .site-preloader-wrap {
  opacity: 0;
  visibility: hidden;
}
.site-preloader-wrap {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  background: var(--background-color);
  top: 0;
  left: 0;
}
.site-preloader-wrap .spinner {
  background-color: var(--primary-color);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
}
.spinner {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}



.w20px{width: 16px;display: block;}


 

.btn_group a {
  margin: 5px;
}
.btn_group_left a {
  margin-right: 15px;
  margin-bottom: 15px;
}
.default-btn {
  background-color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  color: var(--background-color);
  font-size: 12px;
  border-radius: 2px;
  line-height: 45px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 0 30px;
  -webkit-box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
  box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
  cursor: pointer;
}
.default-btn:hover {
  background-color: #232427;
  color: var(--background-color);
}

.modal-btn {
  background-color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  color: var(--background-color);
  cursor: pointer;
  font-size: 12px;
  border-radius: 2px;
  /* line-height: 45px; */
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 5px 15px;
  -webkit-box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
  box-shadow: 0 3px 10px rgba(71, 44, 173, 0.2);
}
.modal-btn:hover {
  background-color: #232427;
  color: var(--background-color);
}


.section-heading span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 0;
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}
.section-heading div{
  color:var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

a,
a:hover,
.overlay,
img,
.form-control,
.form-control:hover,
button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.mobile-menu-icon {
  display: none;
}
.burger-menu {
  width: 20px;
  height: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: transform 330ms ease-out;
  -moz-transition: transform 330ms ease-out;
  -o-transition: transform 330ms ease-out;
  transition: transform 330ms ease-out;
}
.burger-menu.menu-open {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.line-menu {
  background-color: #000;
  border-radius: 2px;
  width: 100%;
  height: 3px;
}
.line-menu.line-half {
  width: 50%;
}
.line-menu.first-line {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}
.menu-open .line-menu.first-line {
  -webkit-transform: rotate(-90deg) translateX(3px);
  -moz-transform: rotate(-90deg) translateX(3px);
  -o-transform: rotate(-90deg) translateX(3px);
  transform: rotate(-90deg) translateX(3px);
}
.line-menu.last-line {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}
.menu-open .line-menu.last-line {
  -webkit-transform: rotate(-90deg) translateX(-3px);
  -moz-transform: rotate(-90deg) translateX(-3px);
  -o-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
}

section {
  padding: 100px 0 !important;
}

/***

====================================================================
	Main Header
====================================================================

 ***/
.header {
  background-color: var(--background-color);
  width: 100%;
  height: auto;
  display: block;
    position: sticky; /* 滚动吸顶核心属性 */
    top: 0; /* 吸顶时距离顶部0px，阴影区域同步固定 */
    z-index: 9999; /* 确保头部在所有内容上方，不被遮挡 */

    background-color: #ffffff; /* 继承页面背景，根据你的网站背景色修改（如#f5f5f5） */
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08); /* 底部阴影分隔线：x偏移|y偏移|模糊|扩散|颜色，可自定义 */
   
    padding-bottom: 1px; /* 避免阴影和内部元素重叠，可选 */
}

.primary-header {
   
}

.primary-header .container {
   
    padding: 0 20px; /* 左右内边距，兼容移动端 */
    margin: 0 auto; /* 版心居中 */
}


/* 移动端适配：确保小屏幕吸顶效果正常 */
@media (max-width: 768px) {
    header.header {
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06); /* 移动端阴影稍浅，可选 */
    }
}





.viewport-sm .primary-header {
  padding: 7px 0;
}
.header-menu-wrap {
  margin-left: auto;
}
.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  z-index: 99;
}
.sticky-header .primary-header {
  background-color: var(--background-color);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}
.sticky-header.headroom--top {
  transform: translateY(-100%);
}
.headroom {
  transition: transform 0.25s ease-in-out;
  will-change: transform;
}
.headroom--unpinned {
  transform: translateY(-100%);
}
.headroom--pinned {
  transform: translateY(0);
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  color: #000;
}
.header-menu-wrap ul li > a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  padding:0 20px;

  height: 30px;
  line-height: 30px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}
.header-menu-wrap ul li:hover > a {
  color: #fff;
  display:block;
  background-color: #ff7607;
}
.header-menu-wrap ul li .bgyse{
  background-color: #ff7607;
}
.header-menu-wrap li ul {
  background-color: var(--background-color);
  display: block;
  width: 250px;
  padding: 30px 0;
  -webkit-box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
  position: absolute;
  left: -35px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.header-menu-wrap li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.header-menu-wrap li li {
  display: block;
  padding: 0 35px;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
}
.header-menu-wrap li li:last-child {
  margin: 0;
}
.header-menu-wrap li li > a {
  font-family: "Roboto", sans-serif;
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--secondary-color);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
  text-transform: capitalize;
  padding: 1px 8px;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
}
.header-menu-wrap li li:hover > a {
  color: #ff7607 !important;
  background-color: #f9f9f9;
}
.header-menu-wrap li ul li ul {
  width: 250px;
  position: absolute;
  left: 100%;
  top: 0;
}

.primary-header-inner .header-right {
  
  align-items: center;
  line-height: 80px;

}
.header-right .mobile-menu-icon {

  float: right;
  padding: 10px 0px;
}
.header-right a.menu-btn {
 
  line-height: 40px;
  color:#000;
  border-radius: 3px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 13px;
  float: inline-start;
  font-size: 16px;
}
.header-right a.menu-btn:hover {
 
  opacity: 0.8;
 
}
.primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.primary-header .header-logo {
  max-width: 180px;
}
.viewport-lg .primary-header .header-menu-wrap {
  display: block !important;
}
.cl{clear:both;}


/* PC端隐藏目标头部栏目（屏幕宽度＞768px时生效） */
@media screen and (min-width: 768px) {
  .target-class { 
    display: none !important; /* !important 强制覆盖原有样式，避免失效 */
    visibility: hidden !important;
  }
}

/* 手机端显示目标头部栏目（屏幕宽度≤768px时生效） */
@media screen and (max-width: 768px) {
  .target-class { 
    display: block !important; /* 若元素是行内元素，用display: inline !important */
    visibility: visible !important;
  }
}



/***

====================================================================
	About Section
====================================================================

 ***/

.about-wrap {
  display: flex;
  align-items: center;
  padding:20px 0px;
}
.about-content h2 {
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 30px;
}
.about-promo {
  padding-left: 20px;
}
.about-promo .about-promo-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.about-promo .about-promo-item:last-child {
  margin-bottom: 0;
}
.about-promo .about-promo-item i {
  font-size: 70px;
  color: var(--primary-color);
  margin-right: 30px;
}

/***

====================================================================
	Service Section
====================================================================

 ***/

.service-section {
  position: relative;
  z-index: 1;
}
.service-section .dark-bg {
  position: absolute;
  background-color: #232427;
  width: 100%;
  height: 350px;
  left: 0;
  top: 0;
  z-index: -2;
  padding-top: 80px;
}
.service-section:before {
  background-image: url(../image/map-pattern.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.section-heading.dark-background h2 {
  color: var(--background-color);
}
.section-heading.dark-background span {
  color: #ddd;
}
.service-item {
  background-color: var(--background-color);
  padding: 40px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 1.2s ease-in-out;
  text-align: center;
  position: relative;
  z-index: 1;
}
.service-item .service-icon {
  color: var(--primary-color);
  font-size: 60px;
  margin-bottom: 10px;
}
.service-item h3 {
  font-size: 24px;
}
.service-item .read-more {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.service-item:hover .read-more {
  /* opacity: 0.8; */
  background-color: #fff;
  color: var(--primary-color) !important;
}
.service-item:hover {
  background-color: var(--primary-color);
  transition: all 0.2s ease-in-out;
}
.service-item:hover h3,
.service-item:hover .service-icon,
.service-item:hover .overlay-icon,
.service-item:hover p,
.service-item:hover .read-more {
  color: var(--background-color);
  transition: all 0.2s ease-in-out;
}




.servi-item1 {
  background-color: var(--background-color);
  padding:10px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 1.2s ease-in-out;
  text-align: center;
  position: relative;
  z-index: 1;
}
.servi-item1 .service-icon {
  color: var(--primary-color);
  font-size: 60px;
  margin-bottom: 10px;
}
.servi-item1 h3 {
  font-size: 24px;
}
.servi-item1 .read-more {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.servi-item1:hover .read-more {
  /* opacity: 0.8; */
  background-color: #fff;
  color: var(--primary-color) !important;
}
.servi-item1:hover {
  background-color: var(--primary-color);
  transition: all 0.2s ease-in-out;
}
.servi-item1:hover h3,
.servi-item1:hover .service-icon,
.servi-item1:hover .overlay-icon,
.servi-item1:hover p,
.servi-item1:hover .read-more {
  color: var(--background-color);
  transition: all 0.2s ease-in-out;
}
.service-carousel {
  position: relative;
}
.service-carousel .owl-nav div {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  left: -70px;
  top: calc(50% - 104px);
  background-color: var(--background-color);
  color: var(--secondary-color);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.service-carousel .owl-nav div:hover {
  background-color: #ff7607cc;
  color: var(--background-color);
}
.service-carousel .owl-nav div.owl-next {
  left: auto;
  right: -70px;
}
.service-section.section-2 {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

.service-content span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.service-content h2 {
  margin-bottom: 20px;
}
.service-content p {
  margin-bottom: 30px;
}
.services-list .offset-top {
  transform: translateY(30px);
}
.services-list .service-item {
  text-align: left;
}
.services-list .service-item i {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}
.services-list .service-item:hover i {
  color: var(--background-color);
}
.services-list .service-item h3 {
  margin: 0 0 5px;
}
.services-list .service-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/***

====================================================================
	Promo Section
====================================================================

 ***/

.promo-item {
  padding: 30px 15px;
}

.promo-item i {
  display: block;
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.promo-item p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
.work-pro-section {
  background-image: url(../image/d-slide-6.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.work-pro-section:before {
  background-color: rgba(35, 36, 39, 0.8);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.work-pro-item .number {
  font-size: 18px;
  color: var(--background-color);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--primary-color);
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.work-pro-item .number-line {
  background-color: rgba(255, 255, 255, 0.08);
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 25px;
  left: 150px;
  z-index: -1;
}
.work-pro-item h3 {
  color: var(--background-color);
  font-size: 28px;
}
.work-pro-item p {
  color: #ddd;
  margin: 0;
}

.projects-content h3 a{color:#5939e6;}
.projects-content h3 a:hover{color:#fff;}
/***

====================================================================
	Project Section
====================================================================

 ***/

.projects-section .container-fluid {
  padding: 0;
}

.project-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.project-item img {
  width: 100%;
}

.project-itemnr{

  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  z-index: 100;
}
.project-itemnr a{color: white;}
.project-item .overlay {
  background-color: rgba(255, 118, 7, 0.8);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  color:#fff
  z-index: 1;
   pointer-events: none !important;
}
.project-item:hover .overlay {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
  transition: all 300ms ease;
}
.projects-content {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 0;
  padding: 30px;
  z-index: 1;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.4s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.project-item:hover .projects-content {
  transform: translateY(0);
}
.project-item .tittle:hover {
  text-decoration: underline;
  color: #fff;
}
.projects-content .category {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 15px;
  color: #fff;
  
  display: block;
}
.projects-content .tittle {
  font-size: 18px;
  color:#fff;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0;
  display: block;
}
.project-item .view-icon {
  position: absolute;
  width: auto;
  height: auto;
  right: 40px;
  top: 30px;
  display: block;
  font-size: 25px;
  color: var(--background-color);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.project-item:hover .view-icon {
  cursor: pointer;
  right: 20px;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.projects-carousel {
  position: relative;
}

.projects-carousel .owl-nav div {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  left: -70px;
  top: calc(50% - 20px);
  background-color: var(--background-color);
  color: var(--secondary-color);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.projects-carousel .owl-nav div:hover {
  background-color: #ff7607cc;
  color: var(--background-color);
}
.projects-carousel .owl-nav div.owl-next {
  left: auto;
  right: -70px;
}
.project-single-section {
  position: relative;
  z-index: 1;
}
.project-single-section .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../image/bg-dots.png) 0 0 repeat;
  z-index: -1;
}
.project-single-content {
  background-color: var(--background-color);
  padding-left: 30px;
}
.project-single-content p,
.project-single-content h2 {
  margin-bottom: 20px;
}
.project-single-content .project-details li {
  line-height: 40px;
}
.project-single-content .project-details span {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 14px;
  letter-spacing: 0;
  width: 150px;
  display: inline-block;
}

/***

====================================================================
	CTA Section
====================================================================

 ***/

.cta-section {
  background-image: url(../image/cta-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.cta-section:before {
  background-color: rgba(35, 36, 39, 0.8);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.cta-content span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  color: #ddd;
}
.cta-content h2 {
  color: var(--background-color);
  font-size: 60px;
  margin-bottom: 30px;
}

/***

====================================================================
	Content Section
====================================================================

 ***/

.content-wrap {
  display: flex;
  align-items: center;
}
.content-wrap img {
  border-radius: 5px;
}
.content-info span {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.content-info h2 {
  margin-bottom: 20px;
}
.content-info p {
  margin-bottom: 30px;
}
.counter-section {
  background-image: url(../image/counter-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.counter-section:before {
  background-color: rgba(35, 36, 39, 0.8);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.counter-content {
  text-align: center;
}
.counter-content .counter {
  font-family: "Roboto", sans-serif;
  color: var(--primary-color);
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  position: relative;
  display: block;
  margin: 0 0 10px;
}
.counter-content h4 {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: var(--background-color);
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}

/***

====================================================================
	Team Section
====================================================================

 ***/

.team-section {
  position: relative;
  z-index: 1;
}
.team-section .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../image/bg-dots.png) 0 0 repeat;
  z-index: -1;
}
.team-wrap .col-lg-3 {
  padding: 0;
}
.team-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.team-item img {
  width: 100%;
}
.team-item .team-content {
  display: block;
}
.team-item .team-content h3 {
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
  bottom: -58px;
  background-color: var(--background-color);
  box-shadow: 0 14px 70px -10px rgba(0, 0, 0, 0.15);
  transform: rotate(-90deg);
  transform-origin: 0 0;
  padding: 10px 15px;
  font-size: 16px;
  z-index: 2;
}

.team-item .team-content span {
  position: absolute;
  width: auto;
  height: auto;
  right: 20px;
  bottom: 20px;
  color: var(--background-color);
  font-size: 10px;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
  padding: 5px 10px;
  background-color: var(--primary-color);
  box-shadow: 0 14px 70px -10px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.team-item .team-social {
  position: absolute;
  width: auto;
  height: auto;
  right: 20px;
  top: 20px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s linear;
}
.team-item .team-social li {
  transform: translateX(100px);
  transition: all 0.3s linear;
}
.team-item .team-social li:nth-child(1) {
  transition-delay: 0ms;
}
.team-item .team-social li:nth-child(2) {
  transition-delay: 100ms;
}
.team-item .team-social li:nth-child(3) {
  transition-delay: 150ms;
}
.team-item .team-social li:nth-child(4) {
  transition-delay: 200ms;
}
.team-item:hover .team-social li {
  transform: translateX(0);
}
.team-item .team-social li a {
  color: var(--background-color);
  margin-bottom: 10px;
  display: block;
}
.team-item:hover img {
  transform: scale(1.08);
  cursor: pointer;
}
.team-item:hover .team-social {
  visibility: visible;
  opacity: 1;
}
.team-item .overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
.team-item:hover .overlay {
  visibility: visible;
  opacity: 1;
}

/***

====================================================================
	Testimonial Section
====================================================================

 ***/

.testimonial-section {
  position: relative;
  z-index: 1;
}
.testimonial-section .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../image/bg-dots.png) 0 0 repeat;
  z-index: -1;
}
.testi-item img {
  width: 100px !important;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}
.testi-content {
  padding-left: 20px;
}
.alig_center{text-align: center;}
.testi-content h3 {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  margin: 0;
  letter-spacing: 2px;
}
.testi-content span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.testi-item {
  background-color: var(--background-color);
  position: relative;
  padding: 30px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.testi-item .fa-quote-right {
  position: absolute;
  right: 30px;
  bottom: 25px;
  font-size: 50px;
  color: var(--primary-color);
  opacity: 0.5;
}
.testi-content .rattings {
  display: inline-block;
  margin-left: 5px;
}
.testi-content .rattings li {
  display: inline-block;
}
.testi-content .rattings li i {
  font-size: 10px;
  color: var(--primary-color);
  display: inline-block;
}

.owl-controls .owl-dots {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -50px;
  text-align: center;
}
.owl-controls .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background-color: #555;
  margin: 0 3px;
  position: relative;
  text-align: center;
}
.owl-controls .owl-dots .owl-dot.active {
  background-color: var(--primary-color);
}

/***

====================================================================
	Page Header
====================================================================

 ***/
.page-header {
  background-image: url(../image/slider03122.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-header:before {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-content h2 {
  color: var(--background-color);
  font-size: 36px;
}
.page-content p {
  color: #ddd;
  margin: 0;
}

/***

====================================================================
	Error Section
====================================================================

 ***/

.error-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-content img {
  max-width: 100%;
}
.error-content .error-info {
  padding-left: 50px;
  text-align: center;
}
.error-content .error-info h2 {
  font-size: 200px;
  line-height: 200px;
  letter-spacing: -10px;
}
.error-content .error-info a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: underline;
}
.error-content .error-info a:hover {
  color: var(--primary-color);
}

/***

====================================================================
	Contact Section
====================================================================

 ***/

.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section .dots {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../image/bg-dots.png) 0 0 repeat;
  z-index: -1;
}
.contact-info h3 {
  line-height: 1.3;
}
.contact-info h4 {
  font-size: 15px;
  line-height: 28px;
}
.contact-info span {
  text-transform: uppercase;
  margin-right: 5px;
}
.form-control {
  background-color: var(--background-color);
  border-radius: 0;
  padding: 15px 10px;
  box-shadow: none;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  outline: none;
}
#form-messages {
  display: none;
}
#form-messages.alert-danger,
#form-messages.alert-success {
  display: block;
}
#google-map {
  width: 100%;
  height: 400px;
}

/***

====================================================================
	Blog Section
====================================================================

 ***/

.blog-section .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../image/bg-dots.png) 0 0 repeat;
  z-index: -1;
}
.blog-item .blog-thumb {
  position: relative;
}
.blog-item .blog-thumb .category {
  background-color: var(--primary-color);
  padding: 5px 15px;
  text-align: center;
  color: var(--background-color);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
  bottom: 0;
}
.blog-item .blog-thumb .category a {
  color: var(--background-color);
}
.blog-item .blog-thumb img {
  width: 100%;
  margin: 0;
}
.blog-content {
  background-color: #f9fafa;
  padding: 30px;
}
.blog-content h3 {
  line-height: 24px;
}
.blog-content h3 a {
  color: var(--secondary-color);
  font-size: 24px;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-content h3 a:hover {
  color: var(--primary-color);
}
.blog-content .read-more {
  font-family: "Roboto", sans-serif;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  transition: all 200ms linear 0ms;
}
.blog-content .read-more:before {
  background-color: var(--primary-color);
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  left: 0;
  top: calc(50% - 1px);
  transition: all 200ms linear 0ms;
}
.blog-content .read-more:hover {
  color: var(--primary-color);
  padding-left: 40px;
}
.blog-content .read-more:hover:before {
  width: 30px;
}

.pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}
.pagination-wrap.text-left li {
  margin: 0 10px 0 0;
}
.pagination-wrap li a {
  border: 1px solid #e5e5e5;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 2px;
}
.pagination-wrap li a:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
  opacity: 1;
  text-decoration: none;
}
.pagination-wrap li a.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--background-color);
}
.sidebar-wrap {
  padding-left: 40px;
}
.sidebar-wrap .widget-content {
  margin-bottom: 40px;
}
.sidebar-wrap .widget-content h4 {
  position: relative;
  margin-bottom: 30px;
}
.sidebar-wrap .widget-content h4:before {
  background-color: var(--primary-color);
  position: absolute;
  content: "";
  width: 20%;
  height: 3px;
  left: 0;
  bottom: -5px;
}
.sidebar-wrap .widget-content .widget-links li a:hover {
  text-decoration: underline;
}
.search-form {
  position: relative;
  margin-left: -2px;
}
.search-form .form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  width: 100%;
  display: block;
  border: 1px solid #e5e5e5;
  color: var(--secondary-color);
  height: auto;
  padding: 15px 20px;
  border-radius: 2px;
  padding-right: 60px;
}
.search-form .search-btn {
  background-color: transparent;
  font-size: 15px;
  color: var(--secondary-color);
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 10px 0;
  opacity: 0.6;
}
.search-form .search-btn:focus,
.search-form .search-btn:hover {
  opacity: 1;
  cursor: pointer;
}
.search-form input::-webkit-input-placeholder {
  color: #8d9aa8 !important;
}
.search-form input:-moz-placeholder {
  color: #8d9aa8 !important;
}
.search-form input::-moz-placeholder {
  color: #8d9aa8 !important;
}
.search-form input:-ms-input-placeholder {
  color: #8d9aa8 !important;
}

.thumb-post li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: top;
  margin-bottom: 20px;
}
.thumb-post li:last-child {
  margin-bottom: 0;
}
.thumb-post li img {
  width: 100px;
  display: block;
}
.thumb-post li a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  padding-left: 15px;
  letter-spacing: -0.5px;
}
.thumb-post li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.widget-content .tags li {
  display: inline-block;
}
.widget-content .tags li a {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 12px;
  color: var(--background-color);
  margin: 3px;
}

.blog-thumb img {
  margin-bottom: 20px;
}

.blog-single-content h2 a {
  font-size: 28px;
  color: var(--secondary-color);
}
.blog-single-content h2 a:hover {
  color: var(--primary-color);
}
.single-post-meta {
  margin-bottom: 20px;
}
.single-post-meta li {
  display: inline-block;
  margin-right: 20px;
}
.single-post-meta li i {
  font-size: 12px;
  color: var(--primary-color);
  margin-right: 5px;
}
.single-post-meta li a {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-color);
}
blockquote {
  background-color: #f5f5f5;
  padding: 40px;
  border-left: 4px solid var(--primary-color);
  margin: 30px 0;
  position: relative;
  z-index: 1;
}
blockquote .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../image/bg-dots.png) 0 0 repeat;
  z-index: -1;
}
blockquote p {
  color: var(--secondary-color);
  font-size: 20px;
}
blockquote span {
  display: block;
  margin-top: 20px;
  color: var(--secondary-color);
}
.post-tags {
  margin-top: 30px;
}
.post-tags li {
  display: inline-block;
}
.post-tags li a {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 12px;
  color: var(--background-color);
  margin: 3px;
}
.post-tags li a:hover {
  background-color: var(--secondary-color);
  color: var(--background-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.author-box {
  display: flex;
  align-items: center;
  padding: 30px;
  margin-top: 30px;
  border-left: 4px solid var(--primary-color);
}
.author-box img {
  border-radius: 50%;
}
.author-info {
  padding-left: 30px;
}
.author-info h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
}

.author-box .social-icon li {
  display: inline-block;
  margin-right: 8px;
}
.author-box .social-icon li a {
  font-size: 14px;
  color: var(--secondary-color);
}
.author-box .social-icon li a:hover {
  color: var(--primary-color);
}
.post-navigation {
  border: 1px solid #e5e5e5;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
}
.post-navigation .col {
  padding: 20px;
}
.post-navigation .col:not(:last-of-type) {
  border-right: 1px solid rgba(17, 17, 17, 0.04);
}
.post-navigation .col a {
  color: var(--secondary-color);
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.post-navigation .col.next-post a {
  justify-content: flex-end;
}
.post-navigation .col i {
  display: inline-block;
  font-size: 14px;
}
.post-navigation .ti-arrow-left {
  margin-right: 10px;
}
.post-navigation .ti-arrow-right {
  margin-left: 10px;
}
.post-navigation .col a:hover {
  color: var(--primary-color);
}
.post-navigation .col.prev-post .fa {
  margin-right: 10px;
}
.post-navigation .col.next-post .fa {
  margin-left: 10px;
}
.blog-single-wrap .comments-area {
  margin-top: 40px;
}
.blog-single-wrap .comments-area .comments {
  border-bottom: 0;
}
.blog-single-wrap .comments-area li > div {
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  padding: 35px;
}
.blog-single-wrap .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}
.blog-single-wrap .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
  margin: 0;
}
.blog-single-wrap .comments-area ol > li:last-child div {
  border-bottom: 0;
}
.blog-single-wrap .comments-area .comments-title {
  font-size: 22px;
  font-weight: 600;
}
.blog-single-wrap .comments-area li > div {
  position: relative;
}
.blog-single-wrap .comments-area .comment-thumb {
  position: absolute;
  left: 35px;
}
.blog-single-wrap .comments-area .comment-thumb .comment-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.blog-single-wrap .comments-area .comment-thumb .comment-img img {
  border-radius: 50%;
}
.blog-single-wrap .comments-area .comment-main-area {
  padding-left: 100px;
}
.blog-single-wrap .comments-area .comment-main-area p {
  margin-bottom: 20px;
}
.blog-single-wrap .comments-area .comments-meta h4 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -1px;
}
.blog-single-wrap .comments-area .comments-meta h4 span {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 5px;
}
.blog-single-wrap .comments-area .comment-reply-link {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  text-transform: uppercase;
  padding-left: 35px;
  position: relative;
}
.blog-single-wrap .comments-area .comment-reply-link:before {
  background-color: var(--primary-color);
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  left: 0;
  top: calc(50% - 1px);
}
.blog-single-wrap .comments-area .comment-reply-link:hover {
  text-decoration: underline;
}

.blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.blog-single-wrap .comment-respond form input,
.blog-single-wrap .comment-respond form textarea {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 50px;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: all 0.3s;
}
.blog-single-wrap .comment-respond form input:focus,
.blog-single-wrap .comment-respond form textarea:focus {
  border-color: var(--primary-color);
}
.blog-single-wrap .comment-respond form textarea {
  height: 200px;
  padding: 15px;
}
.blog-single-wrap .comment-respond .form-inputs {
  overflow: hidden;
}
.blog-single-wrap .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: left;
}
.blog-single-wrap .comment-respond .form-inputs > input:nth-child(3) {
  width: 49%;
  float: right;
}
.blog-single-wrap .comment-respond .form-submit input {
  font-family: "Roboto", sans-serif;
  max-width: 180px;
  background-color: var(--primary-color);
  color: var(--background-color);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 0;
  text-transform: uppercase;
}
.blog-single-wrap .comment-respond .form-submit input:hover {
  opacity: 0.9;
}
.sponsor-section {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.sponsor-section .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../image/bg-dots.png) 0 0 repeat;
  z-index: -1;
}

.sponsor-item img {
  opacity: 0.5;
}
.sponsor-item:hover img {
  opacity: 1;
  cursor: pointer;
}
.widget-section {
  background-color: #232427;
  border-bottom: 1px solid #333;
}

.widget-content img {
  margin-bottom: 20px;
}
.widget-section .widget-content h4 {
  color: var(--background-color);
}

.widget-content span {
  display: block;
}

.widget-content .widget-links li a {
  color: #464646;
  line-height: 1.9;
}
.widget-content .widget-links li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.subscribe-form {
  position: relative;
}
.subscribe-form .form-input {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 50px;
  padding: 10px;
  padding-right: 140px;
  border-radius: 2px;
}
.subscribe-form .submit-btn {
  background-color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: var(--background-color);
  font-size: 12px;
  border-radius: 2px;
  line-height: 50px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 0 30px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/***

====================================================================
	Footer
====================================================================

 ***/
 .pdding_topnr{padding-top: 20px;}
.pdding_topnr50{padding-top:50px;}

.footer-section {
  background-color: #232427;
  display: block;
  /* text-align: center; */
 
}
.footer-section p {
  font-size: 12px;
  color: var(--background-dark);
  margin: 0;
  font-size: 16px;
}
.footer-section a {
  font-size: 12px;
  color: var(--background-dark) !important;
  margin: 0;
  font-size: 16px;
}
.footer-section span {
  font-size: 12px;
  color: var(--background-dark);
  margin: 0;
  font-size: 16px;
}
#scroll-to-top {
  background-color: var(--primary-color);
  display: none;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  line-height: 45px;
  color: var(--background-color);
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
}
#scroll-to-top:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
  opacity: 0.8;
}

/* 联系我们的地理位置样式*/
  

   #container {
            width: 100%;
            height: 600px;
           margin-bottom:20px;
        }
        /* 自定义弹窗样式（核心：拉长指示箭头） */
        .custom-info-window {
            padding: 12px;
            font-size: 14px;
            border-radius: 4px;
            box-shadow: 0 28px 10px rgba(0,0,0,0.1);
            position: relative; /* 必须：用于箭头定位 */
            /* 弹窗宽度可自定义 */
            width: 280px;
            left: 5px;
            top: 40px;
            background: #fff;
        }
        /* 自定义拉长的红色箭头（核心样式） */
        .custom-info-window::after {
            content: '';
            position: absolute;
            bottom: -74px; /* 箭头长度（数值越大箭头越长） */
            left:60%;

            /* 核心：旋转+变形实现倾斜 */
            transform: rotate(24deg); /* 逆时针旋转15°（倾斜角度，可调整） */
            /* 箭头形状：向下倾斜的三角形 */
       


            /* 箭头形状：三角形 */
            border-width: 99px 9px 0; /* 第一个值=箭头长度，第二个值=箭头宽度 */
            border-style: solid;
            border-color: #fff transparent transparent; /* 白色箭头（匹配弹窗背景） */



            
        }
        /* 箭头外框（可选：增加红色边框，和标记呼应） */
        .custom-info-window::before {
         
        }
        .custom-info-window h3 {
            margin: 0 0 8px 0;
            color: #e53935;
            font-size: 16px;
        }
        .custom-info-window p {
            margin: 4px 0;
            color: #333;
        }

.post-content p{text-indent: 2em;}



.company-intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px; /* 增加上下内边距，更舒展 */
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9f9f9; /* 浅背景，弱化边界感 */
  border-radius: 12px; /* 圆角，提升质感 */
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text h3 {
  color: #f60;
  font-size: 20px;
  margin: 15px 0 8px;
  font-weight: 600;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 15px;
}
.le-left{float: left;}
.le-right{float: right;}
.post-item{display: block;}
.post-thumb  img{width: 230px;height:180px;display: block;}
.post-excerpt p{text-indent: 2em;font-size:14px;display: block;}
.post-excerpt p a{color: blue;}
.post-item .post-title{display: block;}
.post-item .post-excerpt{display: block;}


/*分享按钮*/
.social-share {
    margin: 20px 0;
    padding: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.social-share a {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 10px;
    background:#ff7607;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}
.social-share a:hover {
    background: #e23b43;
}

.post-nav{padding: 20px;display: block;}


.breadcrumbs { margin: 10px 0; font-size: 14px; }
.breadcrumbs a { color: #333; text-decoration: none; }
.breadcrumbs a:hover { color: #f00; text-decoration: underline; }
.breadcrumbs span { margin: 0 5px; }



.share-bar {
  display: flex;
  align-items: center;
  gap: 16px; /* 图标之间的间距 */
  padding: 12px 0;
}

.share-title {
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}

.share-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.2s;
}

.share-item:hover {
  opacity: 0.8;
}

/* 图标样式（可替换为实际图标字体或图片） */
.icon-wechat {
  width: 24px;
  height: 24px;
  background: url("微信图标.svg") no-repeat center;
  background-size: contain;
}
.icon-weibo {
  width: 24px;
  height: 24px;
  background: url("微博图标.svg") no-repeat center;
  background-size: contain;
}
.icon-zhihu {
  width: 24px;
  height: 24px;
  background: url("知乎图标.svg") no-repeat center;
  background-size: contain;
}
.icon-douyin {
  width: 24px;
  height: 24px;
  background: url("抖音图标.svg") no-repeat center;
  background-size: contain;
}
.icon-kuaishou {
  width: 24px;
  height: 24px;
  background: url("快手图标.svg") no-repeat center;
  background-size: contain;
}


  /* 基础变量 */
    :root {
        --primary: #2563eb; /* 主色调，可根据品牌修改 */
        --gray-light: #f3f4f6;
        --gray-dark: #374151;
        --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }

    /* 分页美化 */
    .pagination {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pagination a,
    .pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
       
        height: 40px;
        border-radius: 8px;
        text-decoration: none;
        color: var(--gray-dark);
        background: white;
       
        transition: all 0.2s ease;
        font-size: 16px;
    }

    .pagination a:hover {
        background: #ff7607;
        color: white;
        border-color: #ff7607;
        transform: translateY(-2px);
    }

    .pagination .current {
        background: #ff7607;
        color: white;
        border-color: var(--primary);
        font-weight: bold;
    }

    .pagination .prev,
    .pagination .next {
        width: auto;
        padding: 0 16px;
    }

    /* 文章卡片优化 */
    .post-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .post-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .post-excerpt {
        flex: 1;
    }

    .read-more-btn {
        background-color: #ff7607  !important;
    }

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

    /* 响应式适配 */
    @media (max-width: 768px) {
        .post-thumbnail {
           /* 移动端缩略图高度 */
        }

        .post-title {
            font-size: 18px;
        }

        .pagination a,
        .pagination span {
         display: flex;
            height: 36px;
            font-size: 14px;
        }
    }


#goto-page-input{border: 1px solid #ccc;}
#goto-page-btn{width:auto;height:auto;background-color:#ff7607;color: #000;cursor:pointer;padding:0px 10px;border-radius:3px;color: #fff;}
.goto-page{margin-top: 40px;margin-left: 10px;color:#666;}
/* 面包屑+标题 强制同排 - 核心样式 */
.bread-cat-title {
  display: flex;
  flex-wrap: nowrap; /* 禁止换行，移动端也同排 */
  align-items: center; /* 垂直居中，视觉更美观 */
   /* justify-content: space-between;两端对齐（可选：也可改为flex-start左对齐，加gap:20px设间距） */
  width: 100%;
  margin-bottom: 20px; /* 与下方列表的间距，可自定义 */
}
/* 适配小屏幕：缩小字体，避免内容溢出 */
.bread-cat-title .breadcrumbs {
  font-size: 14px;
  flex: none; /* 不占满宽度，根据内容自适应 */
}
.bread-cat-title h1 {
  font-size: 20px; /* 移动端缩小标题字体，可自定义 */
  margin: 0; /* 清除默认外边距，避免错位 */
  flex: none; /* 不占满宽度，根据内容自适应 */
}
/* 强制覆盖a所有移动端的列转行样式，确保同排 */
@media screen and (max-width: 768px) {
  .bread-cat-title {
    flex-wrap: nowrap !important; /* 强制禁止换行，优先级最高 */
    padding: 0 5px; /* 移动端加左右内边距，避免内容贴边 */
  }
}

.news-list-container {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    gap: 30px;
}

/* 侧边分类 */
.news-categories {
    width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.category-title {
    font-size: 18px;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 2px solid #e63946;
    margin-bottom: 15px;
}
.category-list {
    list-style: none;
}
.category-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.category-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.category-list li a:hover {
    color: #e63946;
}
.category-list .count {
    color: #999;
    font-size: 12px;
    margin-left: 5px;
}

/* 主列表区域 */
.news-main-list {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.list-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.list-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 5px;
}
.list-subtitle {
    color: #999;
    font-size: 14px;
}

/* 新闻列表项 */
.news-items {
    list-style: none;
}
.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    flex-wrap: nowrap;
    display: flex;
}

@media screen and (max-width: 768px){

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
      flex-wrap: wrap !important; 
  
}

}
.news-item:last-child {
    border-bottom: none;
}
.news-link {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}
.news-thumbnail {

    height: 160px;
    overflow: hidden;
    border-radius: 4px;
}
.news-thumbnail img {
    width: 100%;
  overflow: hidden;
  height: 160px;
    object-fit: cover;
    transition: transform 0.3s;
}
.news-link:hover .news-thumbnail img {
    transform: scale(1.05);
}
.news-thumbnail a{display: block;height:161px;overflow: hidden;}
.news-thumbnail a:hover{border:5px solid #ff7607;}
.news-info {
    flex: 1;
}
.news-item .news-title {
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
    display: block;

    width: 100%;
}
news-item .news-link:hover .news-title {
    color: #e63946;
}
.news-item .news-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}
.news-item .news-meta .category {
    margin-left: 15px;
}
.news-item .news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.fl{float: left;}
.fr{float: right;}

.news-item .entry-meta {display: block;width: 100%;}
.news-item .excerpt{width:100%;display: block;}
.news-item .excerpt a{display:inline-block;padding:0px 15px;background:#ff7607;color:#fff;border-radius:3px;font-size:14px;}
.news-item .entry-meta .date{padding:0px 30px 0px 0px;l;line-height: 30px;}


.nav-links{display: flex;padding: 10px 0px;}


/* 分页样式 */
.pagination {
    margin-top: 30px;
    text-align: center;
    
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
 
    border-radius: 4px;
    color: #666;
    text-decoration: none;
 
}

@media screen and (max-width: 768px){
.pagination a, .pagination span {
    display:inline-flex  !important;
     width: auto !important; /* 取消固定宽度，自适应文字 */
    padding: 0px 5px !important;
    margin: 0 3px !important;
    border-radius: 4px !important;
    color: #666 !important;
    text-decoration: none !important;
    white-space: nowrap !important; /* 强制文字不换行 */
 
}
.news-item .news-title a{font-size: 14px !important;}


    .pagination .current {
        background: #ff7607;
        color: white;
        border-color: var(--primary);
        font-weight: bold;
    }


}

/* 无新闻提示 */
.no-news {
    text-align: center;
    padding: 30px 0;
    color: #999;
    font-size: 14px;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .news-list-container {
        width: 95%;
    }
}
@media (max-width: 768px) {
    .news-list-container {
        flex-direction: column;
    }
    .news-categories {
        width: 100%;
    }
    .news-link {
        flex-direction: column;
    }
    .news-thumbnail {
        width: 100%;
        height: auto;
    }
}



/* 分页+跳转同排 适配优化 */
.bread-cat-title .pagination {
    margin: 0; /* 清除默认外边距 */
}
.bread-cat-title .goto-page {
    margin: 0; /* 清除默认外边距 */
    display: flex;
    align-items: center;
    gap: 8px; /* 输入框与按钮间距 */
}
/* 详细按钮 hover 效果 */
.read-more-btn:hover {
    background: #e56a00 !important;
    color: #fff !important;
    text-decoration: none;
}
/* 移动端同排适配（防止挤压） */
@media screen and (max-width: 768px) {

   .bread-cat-title .pagination {
        display: flex !important;
        flex-wrap: wrap !important; /* 关键：允许按钮换行，避免一字一行 */
        justify-content: center !important; /* 居中显示，更美观 */
        gap: 5px !important; /* 按钮之间的间距，避免拥挤 */
        width: 100% !important; /* 占满父容器宽度 */
    }
    .bread-cat-title {
        flex-wrap: wrap !important; /* 移动端允许换行，但保持一行显示（内容过短时） */
        justify-content: center !important;
        gap: 10px !important;
    }
    .goto-page {
        width: 100%;
        justify-content: center;
        margin-top: 10px !important;
    }
    /* 摘要文字适配移动端 */
    .excerpt {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}























        /* 底部导航栏容器 */
        .footer-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background-color: #333; /* 导航栏背景色：深灰/黑色 */
            display: flex;
            border-top: 1px solid #555; /* 顶部加一条细细的边框，增加层次感 */
            z-index: 999;
        }

        /* 导航项通用样式 */
        .nav-itemnr {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #999; /* 默认文字颜色：灰色 */
            font-size: 12px;
            line-height: 1.5;
            text-decoration: none;
            position: relative;
            /* 为了模拟图片中的效果，给每个按钮右侧加一条分割线，最后一个按钮不加 */
            border-right: 1px solid #222;
        }

        /* 最后一个导航项去掉右边框 */
        .nav-itemnr:last-child {
            border-right: none;
        }

        /* 图标样式（使用伪元素模拟简单的方块图标，实际项目中替换为图片或Font Icon） */
        .nav-icon {
            font-size: 16px;
            margin-bottom: 2px;
            display: block;
            color: #fff;
        }

        /* 选中状态样式（对应图片中第一个红色的“网站首页”） */
      #active {
            background-color: var(--primary-color);
            color: #fff; /* 选中文字颜色：白色 */
        }

        /* 选中状态下的图标颜色（如果需要单独控制图标颜色） */
        .nav-itemnr.active .nav-icon {
            color: #fff;
        }

.footer-nav a:hover{color: #fff;}