/*
 谷歌字体在线引用变体方式
 https://fonts.googleapis.com/css?family=Tangerine:400,700
 https://fonts.googleapis.com/css?family=Tangerine:solid,blod
 上述都是可以的
 Roboto Condensed 有三种
 Anton 一种粗体
 Fjalla One 二种

 引用方式，第一种
 @font-face{
    font-family: 'Anton';
    font-display: swap;
    Roboto-Black  Roboto-Light Roboto-Thin
    src: url(https://v.zawl.cn/static/lib/webfont/roboto/Roboto-Black.woff2) format('woff2');
    src: url(https://fonts.googleapis.com/css?family=Anton&display=swap) format('woff2');
}
第二种
@import url('https://fonts.googleapis.com/css?family=Roboto Condensed:300,400,700&display=swap');
*/

@import url(https://v.zawl.cn/static/font-awesome/css/font-awesome.min.css);
@import url(https://v.zawl.cn/static/lib/bootstrap-lib/5.0/bootstrap.min.css);
/* @import url("https://fonts.googleapis.com/css?family=Anton&display=swap"); */
/*@import url('https://fonts.googleapis.com/css?family=Roboto Condensed:300,400,700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css?family=Anton&display=swap');*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Oswald:100,200,300,400,700,900&display=swap");




/*以上字体验证可用*/
@import url(https://v.zawl.cn/static/lib/ty-public.min.css);

/* @font-face {
  fa-solid-900.woff2
  font-family: "Calibri-Regular";
  font-display: swap;
  src: url(https://v.zawl.cn/2022/2322/astra.woff2) format("woff2");
} */

.font-main {
  font-family: "Poppins" !important;
}

.font-secondary {
  font-family: "Helvetica";
}

/*https://fonts.googleapis.com/*/
:root {
  --green: #00693e;
  --cyan: #037583;
  --cyan1: #3bb3c2;
  --orange: #ee8300;
  --yellow:#e9e961;
  --red:#b81d25;
}

body {
  /*subpixel-antialiased antialiased none*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #000;
  font: 14px "Poppins", "Helvetica", Arial, sans-serif !important;
  padding: 0;
  margin: 0;
  /* background: #f9f9f9; */
}

a {
  color: #000;
  text-decoration: none;
}

a:hover, .maintext {
  color: var(--green);
}

.bg{
  background-color: var(--green);
}
.bg-red{
  background-color: var(--red);
}
.text-red{
  color:var(--red);
}
.text-11{
   font-size: 11px;
}

.maxwidth0{
  max-width: 1400px;
}

.maxwidth{
  max-width: 1600px !important;
}




/* ==========头部开始=========== */

.searchbtn{
  /* 搜索 */
  background: #eeeeee url(https://v.zawl.cn/2022/1408/images/search.webp) no-repeat 20% 50%;
  width: 40px;
  height: 40px;
  border-radius: 25px
}
@media(max-width:570px){
  .tysearch{
    width: 100%;
  }
}

.text-yellow{
  color: var(--yellow);
}

.header a:hover{
  color: #fff;
}

.tysearch{
  width: 75%;
  
}
.tysearch *{
  background-color: #eee;
}

.logo1{
  max-height:60px
}
.mainmenu>.navbar-nav>li>a{
  padding:5px !important;
}


.mainmenu>ul>li>ul li{
  position: relative;
}
.mainmenu>ul>li>ul>li ul{
  position: absolute;
  left: 100%;
  top:0
}


@media(min-width:570px){


  .mainmenu>.navbar-nav>li>a{
    font-size: 16px;
    display: block;
    padding:30px 16px !important;
    /* letter-spacing: -0.5px;
    transform: scale(0.95,1.05); */
  }

    /*导航改为Hover  b*/
    .dropdown:hover>.dropdown-menu {
      display  : block;
      transform-origin: 0 0;
      animation: sidedown  cubic-bezier(1, 1, 0.1, 1) 0.5s;
      border-radius:0;
    }

    .dropdown-menu {
        margin: 0 0 0 0px;
        border: 0;
        box-shadow:0 0 10px rgba(0,0,0,0.2)
    }

    .inner .mainmenu{
        height:60px;
        transition:height  0.5s;
    
    }

    .inner .sticktop.mainmenu{
        height:50px;
        transition:all 1s;
    }

    .navbar-nav>li>a, .navbar-nav>li.active>a{
        clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
        transition:all 1s;
    }
    
    .navbar-nav>li:hover>a, .navbar-nav>li.active>a{
        border-radius:10px 0 0 0;
        background-color:red;
        color:#fff
    }



}


.mainmenu>.navbar-nav>li>a.active{
  background-color: rgba(209, 0, 0, 0.23);
}


/* ==========头部结束=========== */
  .ititle{
    font-family: 'Oswald';
    display: block;
    font-size: 36px;
    font-weight: 300;

    /* transform: scale(0.85,1); */
    color: #000;
    padding:10px;
    background-image: url(https://v.zawl.cn/2024/3167/images/ititlebg1.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    
  }

  .font-oswald{
    font-family: 'Oswald';
  }


/* ==========首页开始=========== */

/* 奇偶排序 奇数 偶数 */
@media (min-width: 768px) {
  .parity-order {
    display: flex;
    flex-wrap: wrap;
  }
  .parity-order .order-a {
    order: 1;
  }
  .parity-order .order-b {
    order: 2;
  }
  .parity-order:nth-child(even) .order-a {
    order: 2;
  }
  .parity-order:nth-child(even) .order-b {
    order: 1;
  }
}
.mw-auto{
  max-width: 100%; 
  max-height: 100%;
}

/* 视觉差 */
.visual_difference>div{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(http://v.zawl.cn/2022/2739/one/91c1f42e238ffdc4a97e1a779e1e366b.jpg);
}

.z-index-1{
  z-index: 1;
}

/* 将图像转成纯白色 */
.img-white{
  filter: grayscale(100%) brightness(10000%);
}
.ilogo>img{
  width: 100px;
}
.iabout{
  border-radius: 20px 20px 0 0;
  background-color:  rgba(209, 0, 0, 0.23);
}
.iabout>*{
  text-shadow:2px 2px 2px #000;
}

.logobtn>img{
   width: 32px;
   display: none;
}

.path{
  background-color: ;
  clip-path:polygon(0% 0%, 100% 0%, 50% 10px); 
}


/* ==========首页结束 =========== */



/* ==========left平行菜单栏开始 =========== */
.m-menu ul>li{
  background-image: url(https://v.zawl.cn/2022/1408/images/select.webp);
  background-repeat: no-repeat;
  background-position: 4px 5px;
}
.m-menu li.active{
  background-image: url(https://v.zawl.cn/2022/1408/images/selected.webp);
  background-position: 4px 8px;
  background-repeat: no-repeat;

}

/* ==========left平行菜单栏结束 =========== */



/* ==========产品详情页开始 =========== */

.dititle{
  font-size: 18px;
  padding:10px;
  background-image: url(https://v.zawl.cn/2022/1408/images/ititlebg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  
}


  .article p{
    margin: 1em 0px !important;
  }


/* ==========产品详情页结束 =========== */






/* ==========询盘模态开始 =========== */
.modelcatleft .modal-dialog {
  position: absolute;
  width: 300px;
  height: 100%;
  left：auto;
  right: 0;
  /* right: auto; */
  top: 0;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}




.modelcatleft .modal-content {
  height: 100%;
  border-radius: 0;
}

.modelcatleft .lclose {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 1.5em;
}
/* ==========询盘模态结束 =========== */



/* ==========底部开始 =========== */
/* 三角形 */
.triangle{
  position: relative;
}
.triangle:before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  top:0;
  left: 0;
  height: 200px;
  z-index: 1;
  background-color:#fff;
  clip-path:polygon(0% 0%, 100% 0%, 50% 10%);
}

.footlogo{
  height: 110px;
  border-radius: 50%;
  background-color: #fff;
}
.footlogo img{
  width: 100px;
}
.contact-icon-list>li{
  margin-bottom: 15px;
}
ul.contact-icon-list i.fa{
  width: 15px;
  font-size: 20px;
  opacity: 0.5;
}
#basic-addon2 {
  cursor: pointer;
  background: #000;
  color: #fff;
  width: 120px;
}

/* ==========底部结束 =========== */



/* ==========分页开始 =========== */

  .page span, .page a{
    padding:10px 20px;
    background-color: #eee;
  }
  .page li{
    margin-right: 10px;
  }
  .page li.active span{
    background-color: var(--green);
    color: #fff;
  }

  .newslistpage span, .newslistpage a{
    background-color: #fff;
  }
/* ==========分页结束  =========== */




.culoading {
  background-image: url("https://v.zawl.cn/static/ty-1.0/ueditor/themes/default/images/loading.gif");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 10vw;
  overflow: hidden;
}

.culoading * {
  visibility: hidden;
}

/* 让出错的图片看起来更舒服 onerror */
/* img:before {
  content: "";
  background: #fff
    url("https://v.zawl.cn/2022/2516/upload/image/20220811/112759-09.webp") 50%
    50% no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
} */



/* 动态边框b */
.swiper-slide-thumb-active {
	position: relative;
	z-index: 0;
	width: 400px;
	height: 300px;
	overflow: hidden;
	padding: 0.1rem;
    cursor: pointer;
}
	
.swiper-slide-thumb-active img{
    transform: scale(0.6) !important;
    transition: all 1s;
}

.swiper-slide-thumb-active::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -50%;
		width: 200%;
		height: 200%;
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-image: linear-gradient(var(--cyan), var(--cyan)), linear-gradient(white, white), linear-gradient(white, white), linear-gradient(white, white);
		animation: rotate 4s linear infinite;
}
	
.swiper-slide-thumb-active::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 2px;
		top: 2px;
		width: calc(100% - 4px);
		height: calc(100% - 4px);
		background: white;
		border-radius: 0;
}
.factorys.px-2{
  padding-left: 0.75em !important;
  padding-right: 0.75em !important;
}

.factimgover .start-0.h-100{
  transition: all 1s;
  transform: translateX(0%);
}
.factimgover:hover .start-0.h-100{
  transform: translateX(-100%);
  
  
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

/* 动态边框e */



ul.footer_pro{
  column-count: 3;column-gap: 2em;

}

ul.footer_pro li a:hover{
  background-color: rgba(0,0,0,0.1) !important;

}
ul.footer_pro li{
  list-style: none;


}
ul.footer_pro .nav-link{
  padding: 0.5rem !important;

}






/* 导航栏风格1 */
@media (min-width: 570px) {
  .main_nav_style_1>.navbar-nav>li>a {
      font-size: 16px;
      display: block;
      padding: 40px 16px !important;
  }
}   
body {
  overflow-x: hidden;
}
/* 确保 .dropdown-menu 的宽度与浏览器窗口的宽度一致 */
.main_nav_style_1>ul>li.dropdown{
  position: static;

}
.main_nav_style_1>ul>li.dropdown:hover > .dropdown-menu {
  margin-top: 0;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center; /* 使内部内容居中 */
  top: 100%; /* 确保下拉菜单在 li 元素的下方 */
  background-color: #fff; /* 设置背景颜色 */
  position: absolute; /* 确保定位正确 */
  z-index: 1000; /* 确保下拉菜单在其他元素之上 */
}

/* 确保 :before 元素背景红色，相对于 body 为 left: 0，和浏览器窗口一样宽 */
.main_nav_style_1>ul>li.dropdown:hover > .dropdown-menu:before{
  background-color: #fff;
  display: block;
  content: '';
  position: fixed; /* 确保定位基于浏览器窗口 */
  /* left: 0; 取消left：0 */
  top: 0; /* 将顶边界设置为视口的顶边 */
  width: 100vw; /* 设置宽度为视口宽度 */
  height: 100%; /* 设置高度为视口高度 */
  z-index: -1; /* 确保背景在下拉菜单后面 */
}
#main_nav_style_1 > ul > li > ul > li > ul > li.nav-item.dropdown  ul{
  top:0;
  left: 100%;
}

.main_nav_style_1 .dropdown-menu .dropdown-item {
  white-space: nowrap;
}

.main_nav_style_1 .dropdown-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: auto;
  left: 0;
  flex-direction: column;
}
.main_nav_style_1>ul>li>.dropdown-menu{
  padding: 0px !important;
}

.dropdown-item{
  padding:3px 10px
}
.main_nav_style_1 > ul > li > ul > li > a{
  padding: 1em 0.8em;
}


.main_nav_style_1 > ul > li > ul > li > ul{
  padding:0.6em
}


.main_nav_style_1 .dropdown-menu .dropdown:hover > .dropdown-menu {
  display: flex;
}











/* 导航栏风格1 end */


/* 导航栏风格2  宽幅文字，类别很多比较合适和美观大气*/
body {
  overflow-x: hidden;
}
/* 确保 .dropdown-menu 的宽度与浏览器窗口的宽度一致 */
.main_nav_style_2>ul>li.dropdown{
  position: static;

}
.main_nav_style_2>ul>li>.dropdown-menu {
  border-top: 2px solid #000;
  left: 50%;
  width: 1180px;
  transform: translateX(-50%);
  column-count: 4;
  column-gap: 2em; 
  padding:3em
}

.main_nav_style_2>ul>li>.dropdown-menu>li.dropdown>a{
  font-weight: 900;
  
}
.main_nav_style_2 a.dropdown-item{
  word-break: break-word;   /* 必要时换行 */
  overflow-wrap: break-word; /* 避免内容溢出容器 */
  white-space: normal;      /* 正常换行 */
  
}

.main_nav_style_2>ul>li>.dropdown-menu>li.dropdown>.dropdown-menu {
  all: unset;
}


/* 导航栏风格2 end */



/* 导航栏风格3  宽幅带图，类别很多比较合适和美观大气*/
body {
  overflow-x: hidden;
}
/* 确保 .dropdown-menu 的宽度与浏览器窗口的宽度一致 */
.main_nav_style_3>ul>li.dropdown{
  position: static;

}
.main_nav_style_3>ul>li>.dropdown-menu {
  border-top: 2px solid #000;
  left: 50%;
  width: 1180px;
  transform: translateX(-50%);
  padding:3em;
  padding-top:0;
  padding-bottom:0;
}

.main_nav_style_3>ul>li>.dropdown-menu>li.dropdown>a{
  font-weight: 900;
  
}
.main_nav_style_3 a.dropdown-item{
  word-break: break-word;   /* 必要时换行 */
  overflow-wrap: break-word; /* 避免内容溢出容器 */
  white-space: normal !important;      /* 正常换行 */
  
}


.main_nav_style_3 > ul > li > ul > div > li{
  border-bottom:1px solid #f1f1f1;
  margin-top:2em;
  padding-bottom:2em;
}

.main_nav_style_3 > ul > li  > ul > div > li  > ul.dropdown-menu,
.main_nav_style_3>ul>li>.dropdown-menu>li.dropdown>.dropdown-menu {
  all: unset;
}
.main_nav_style_3 > ul > li > ul > div > li > div > div.col-md-16.p-1 > ul > li.nav-item.dropdown > ul ul{
  left: 100%;
  top:0
}

/* 导航栏风格3 end */

/* 导航栏风格4 b */
.main_nav_style_4 >.navbar-nav>li>a{
  position: relative;
}
.main_nav_style_4 >.navbar-nav>li>a:before {
  bottom:0;
  left: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  z-index: -1;
  transition: all 0.6s cubic-bezier(.4,0,.2,1);
}



.main_nav_style_4 >.navbar-nav>li>a:hover:before {
  height: 100%;
}

.main_nav_style_4 > .navbar-nav > li > ul.dropdown-menu {
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.4,0,.1,1);
}

.main_nav_style_4 > .navbar-nav > li:hover > ul.dropdown-menu {
  opacity: 1;
  display: block;
  max-height: 1000px;

}
.main_nav_style_4 a .fa-chevron-right  {
  transition: all 0.5s ease-in-out;
}
.main_nav_style_4 a:hover .fa-chevron-right {
  transform: rotate(90deg);

}


@media (min-width: 570px) {
  .main_nav_style_4 > .navbar-nav>li>a, .main_nav_style_4 > .navbar-nav>li.active>a {
      clip-path: unset;
  }
  .main_nav_style_4 > .navbar-nav>li:hover>a, .main_nav_style_4 >.navbar-nav>li.active>a{
    border-radius: unset;
  }
}
/* 导航栏风格4 end */



/* 侧边导航风格1 b */

.left_nav_style_1>li>ul{
  display: none;

}
.left_nav_style_1 ul>li,
.left_nav_style_1 li.active{
  background: none;
}
.left_nav_style_1 li>div{
  border-bottom:1px solid #f1f1f1;
  padding:1em 0em !important;
}
.left_nav_style_1 li>div.ps-4{
  padding-left: 0em !important;
}
.left_nav_style_1 li>div.pe-5{
  padding-right: 1em !important;
}

.left_nav_style_1 a.ctrl_show{
  visibility: hidden;
}

/* 让风格0中的隐藏的样式显示 */
.left_nav_style_1 .ctrl_show_1>i{
  display: block !important;
}
.left_nav_style_1 .ctrl_show_1{
   padding-left:1em;
   position: relative;
   cursor: pointer;
}
.left_nav_style_1 .ctrl_show_1:before{
  content:'';
  display: block;
  position: absolute;
  top:-0.6em;
  height: 260%;
  left: -0.6em;
  border-left:1px solid #eee
  
}



.left_nav_style_1 .ctrl_show_1>i{
  display: block !important;
}
.left_nav_style_1>li.active>ul{
  display: block
}
.left_nav_style_1 ul>li.ps-3 > a{
  padding-left: 0 !important;
  border-bottom:1px solid #f1f1f1
}
.left_nav_style_1 .ms-3{
  margin-left: 0 !important;
}

.left_nav_style_1>li.active .fa-angle-down{
  transform: rotate(180deg);

}
/* 侧边导航风格1 end */



.stick-top{
  position: fixed;
  top: 0;
  z-index: 2;
}


.mynavbar {
  z-index: 2;
  margin-top: 0.1px;
}

/* ============================================ */



/* 精心制作的背景效果b */

