/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.pagebanner {
  background-image: url("/images/banner.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 头部导航样式 */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 0;
  color: #FFFFFF;
}

.header {}

.header img {
  width: 80px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li {
  margin-left: 30px;
}

.nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
.nav ul li a:hover,.nav ul li a:focus{
  color: #1D90D9;
}
/* 主体内容样式 */
.pagebanner .main-section {
  display: flex;
  align-items: center;
  padding: 80px 0;

  color: #FFFFFF;
}

.pagebanner .text-content {
  flex: 1;
  margin-right: 50px;
}

.pagebanner .text-content h1 {
  position: relative;
  margin-bottom: 20px;
  padding: 17px 15px;
  padding-left: 25px;
  margin-left: -25px;
  background-image: linear-gradient(to right, rgba(29, 145, 218, 1) 0%, rgba(29, 145, 218, 0.8) 15%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  font-size: 27px;
  line-height: 1.3;
  padding-top: 20px;

}

.pagebanner .text-content h1 span {
  width: 0;
  height: 0;
  display: block;
  border-top: 54px solid transparent;
  border-left: 54px solid transparent;
  border-right: 54px solid rgba(29, 145, 218, 1);
  border-bottom: 54px solid rgba(29, 145, 218, 1);
  position: absolute;
  left: -108px;
  top: 0;
  bottom: 0;
}

.pagebanner .text-content p {

  font-weight: bolder;

  margin-bottom: 20px;
}

.pagebanner .features {
  list-style: none;
  margin-bottom: 30px;
}

.pagebanner .features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;

}

.pagebanner .features li img {
  margin-right: 5px;
}




.pagebanner .cta-button{
  
  padding: 12px 8px;
  margin-top: 10px;
}
.pagebanner .cta-button strong{
  font-size: 20px;
  line-height: 22px;
}
.pagebanner .cta-button span{
  padding: 5px 10px;

  line-height: 30px;
}

.pagebanner .images-section {
  width: 35%;
}

.pagebanner .images-section img {
  max-width: 100%;
}

.cagesBox {
  background-image: url("/images/cages.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
}
/* 顶部鸡笼类型区样式 */
.top-section {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
  position: relative;
}

.intro-card {
  flex: 1 1 320px;
  background-color: #fff;


  box-shadow: 0px 6px 15px 0px rgba(0, 30, 50, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-card span {
  display: block;
  width: 100%;
  height: 5px;
  background: #1D8BD3;
}

.intro-card .con {
  padding: 30px;
}
.intro-card .con img{
    vertical-align: text-top;;
}

.intro-card h2 {
  color: #000;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.3;
}

.intro-card p {
  margin-bottom: 25px;
  font-size: 15px;
  color: #333;
  padding-bottom: 20px;
  z-index: 5;
  line-height: 1.5;
}

.intro-card .todetails {
  min-height: 200px;
  background-image: url("/images/type.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -20px;
  z-index: 0;
  text-align: center;
}


.cage-cards {
  flex: 2 1 550px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 250px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;

}

.card:hover {
  transform: translateY(-5px);
}

.cardCon {
  padding: 0 20px;
  padding-bottom: 10px;
}

.card h3 {
  color: #fff;
  background-color: #3498db;
  padding: 5px 18px;
  border-radius: 0 0 22px 0;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
}

.card img {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 25px auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 5px;
  border: 1px solid #f1f1f1;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* 底部规格区样式 */
.specs-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 4;
}


.specs-section h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 22px;
  text-align: center;
  font-weight: 600;
}

.specs-section h2 span {
  display: inline-block;
  width: 110px;
  height: 2px;
  margin: 0 10px;
  vertical-align: middle;
  background: linear-gradient(270deg, #1C8AD2 0%, #fff 100%);
  position: relative;
}

.specs-section h2 span:last-child {
  background: linear-gradient(90deg, #1C8AD2 0%, #fff 100%);
}

.specs-section h2 span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1C8AD2;
  top: -3px;
  left: 0;
  border-radius: 50%;
}

.specs-section h2 span:first-child::before {
  position: absolute;
  top: -3px;
  right: 0;
  left: auto;
}

.specs-section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.specs-section table thead tr th {

  padding: 0;
  font-size: 18px;
  color: #000000;
}

.specs-section table thead tr th span {
  display: block;
  padding-top: 10px;
  margin: 0 6px;
}

.specs-section table thead tr th:nth-child(n+2) span {
  background: linear-gradient(180deg, #ccc 0%, #fff 100%);
}

.specs-section table thead tr th span::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 10px;
  background: #1C8AD2;
}

.specs-section table thead tr th:first-child span::after {
  background: #FACC15;
}

.specs-section table td {
  font-weight: 500;
  padding: 12px 15px;
  text-align: center;

}

.specs-section table thead th {}

.specs-section table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* 可以不管 */
.specs-section button {

  display: block;
  transition: all 0.3s ease;
  margin: 0 auto;
}
.alienBox {

  position: relative;
  margin: 0 180px;
  text-align: right;
  z-index: 2;
  margin-top: -56px;
  display: block;

}
.alienBox .alien1{

  height: 200px;
  background: linear-gradient(to right, rgba(29, 145, 218, 1) 0%, rgba(29, 145, 218, 0.8) 15%, rgba(29, 145, 218, 0.7) 50%, rgba(29, 145, 218, 0.1) 90%, rgba(29, 145, 218, 0) 100%);
}
.alienBox .alien1 span{
  display: inline-block;
  width: 0;
  height: 0;
  display: block;
  border-top: 100px solid transparent;
  border-left: 100px solid transparent;
  border-right: 100px solid rgba(29, 145, 218, 1);
  border-bottom: 100px solid rgba(29, 145, 218, 1);
  margin-left: -200px;
}
.alienBox .alien2{
  height: 134px;
  width: 220px;
  background: linear-gradient(to right, rgba(29, 145, 218, 1) 0%, rgba(29, 145, 218, 0.8) 15%, rgba(29, 145, 218, 0.5) 50%, rgba(26, 149, 226, 0.3)  80% , rgba(26, 149, 226, 0)  100%);
  position: absolute;
  right: -180px;
  top: -30px;
}
.alienBox .alien2 span{
  display: inline-block;
  width: 0;
  height: 0;
  display: block;
  border-top: 67px solid transparent;
  border-left: 67px solid transparent;
  border-right: 67px solid rgba(29, 145, 218, 1);
  border-bottom: 67px solid rgba(29, 145, 218, 1);
  margin-left: -134px;
}
.AutomationBox{
  background-image: url("/images/systems.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
  color: #fff;
  margin-top: -60px;
  padding-top: 80px;

}
.AutomationBox h2{
  width: 333px;
  line-height: 1.3;
}
.AutomationBox .container>p{
  font-weight: normal;
  margin-bottom: 25px;
}
.AutomationBox  .AutomationCon{
  margin-left: -15px;
  margin-right: -15px;
  font-size: 0;
}
.AutomationBox .AutomationItem{
  max-width: 25%;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 15px;

}

.AutomationBox .AutomationItem .AutomationItemBox>img{
  width: 100%;
  height: auto;
}
.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon{
  display: block;
  background-color: #fff;
  box-sizing: border-box;
  padding: 14px 20px;
}
.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon:hover,.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon:focus{
  background: #1C8AD2;

}
.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon a{
  color: #000;
}
.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon:hover a,.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon:focus a{
  color: #fff;
}
.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon h6{
  margin-bottom: 25px;
  margin-top: 14px;
}
.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon p{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.AutomationBox .AutomationItem .AutomationItemBox .AutomationItemCon .iscon {
  margin-top: 25px;
}
.block{
  padding: 50px 0;
}
.SolutionsBox .Solutions {
  font-size: 0;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 50px;
}
.SolutionsBox .title{
 width: 423px;
}
.SolutionsBox .Solutions .SolutionsItem{
  display: inline-block;
  width: 33.33%;
  box-sizing: border-box;
  padding: 0 12px;

}
.SolutionsBox .Solutions .SolutionsItem img{
width: 100%;
height: auto;
border: 2px solid #1C8AD2;
margin-bottom: 25px;
}
.SolutionsBox .Solutions .SolutionsItem h5{
  margin-bottom: 16px;
}
.SolutionsBox .Solutions .SolutionsItem  p{
  margin-bottom: 31px;
}
.SolutionsBox .Solutions .SolutionsItem .SolutionsItembtm{

}
.SolutionsBox .Solutions .SolutionsItem .SolutionsItembtm span{
  display: inline-block;
  width: 32px;
height: 3px;
background: #1C8AD2;
}
.SolutionsBox .Solutions .SolutionsItem .SolutionsItembtm  i{
  width: calc( 100% - 32px );
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #1C8AD2 100%);
  margin-bottom: 1px;
}
.caseBox{
position: relative;
padding-bottom: 450px;
}
.caseTop{
position: relative;
}
.caseTop .caseBg span{
display: block;
position: relative;
height: 400px;
background: #1C8AD2;
width: calc( 100% - 400px );
z-index: 8;
}
.caseTop .caseBg span::after{
  content: "";
  width: 0;
  height: 0;
  border:200px solid #1C8AD2;
  border-bottom:200px solid transparent;
  border-right:200px solid transparent;
  position: absolute;
  right: -400px;
  top: 0;

}
.caseTop .caseBg span:last-child{
  width: calc( 100% - 300px );
  height: 140px;
  position: relative;
  z-index: 5;
  background: #8DC4E8;
  margin-top: -140px;
}
.caseTop .caseBg span:last-child::after{
  border:70px solid #8DC4E8;
  border-bottom:70px solid transparent;
  border-right:70px solid transparent;
  position: absolute;
  right: -140px;
}
.caseTop .container{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 16px;
  z-index: 100;
  padding: 30px 0;
}
.caseTop  h2{
  max-width: 365px;
}
.caseCon{
font-size: 0;
}
.caseBox .caseCon{
  background-image: url("/images/systems.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  box-sizing: border-box;
  padding: 64px 60px;
}
.caseBox .caseText>div{
  width: 50%;
  box-sizing: border-box;
  display: inline-block;
}
.caseBox .caseText>.caseLeft{
  padding: 30px 0;
  box-sizing: border-box;
  padding-right: 80px;
}
.caseBox .caseText>.caseLeft h3{
  margin-bottom: 50px;
}
.caseBox .caseText>.caseLeft  p{
  line-height: 1.8;
  margin-bottom: 83px;
}

.caseBox .caseText .caseRight .caseItem{
  margin: 10px 0;
}

.caseBox .caseText .caseRight .caseItem a{
  display:flex;
  align-items: center;
  justify-self: center;
  background: rgba(28, 138, 210, 0.6);
  color: #fff;
  box-sizing: border-box;
  padding: 8px 8px 8px 40px;
  position: relative;
  transition: all 0.5s;
}
.caseBox .caseText .caseRight .caseItem a img{
  height: 100px;
  width: auto;
  margin-left: 30px;
}
.caseBox .caseText .caseRight .caseItem a h6{
  box-sizing: border-box;
  padding-right: 10px;
  line-height: 1.5;
}
.caseBox .caseText .caseRight .caseItem a:hover{
  background: rgba(28, 138, 210, 0.9);
}
.caseBox .caseText .caseRight .caseItem a:hover::before{
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 30px;
  background: #EBC21B;
  left: 0;
}
.why{

}
.whyCon{
background-image: url("/images/why.png");
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
padding: 40px 0;
height: 540px;
}
.whyCon .container{
  color: #fff;
  height: 100%;
}
.whyCon  .whybox{
  display: flex;
  align-items: center;
  height: 100%;

}
.whyCon .title{
  width: 40%;
}
.whyCon .title h2 >img{
  margin-left: 15px;
}
.whyCon .title p{
  margin-top: 12px;
  margin-bottom: 50px;
  font-size: 20px;
}
.whyCon  .whyList{
  width: 60%;
padding-top: 45px;
}
.whyCon  .whyList li{
  margin: 51px 0;
  padding-left: 10px;
}
/* 第一项内边距最大，依次递减 */
.whyCon  .whyList li:nth-child(1) { padding-left: 105px; }
.whyCon  .whyList li:nth-child(2) { padding-left: 80px; }
.whyCon  .whyList li:nth-child(3) { padding-left: 60px; }
.whyCon  .whyList li:nth-child(4) { padding-left: 40px; }
.formbox  .title{
  text-align: center;
  margin-bottom: 40px;
}
.formCon{
  display: flex;
  align-items: center;
}
.formCon .formLeft{
width: calc(50% - 50px);
margin-right: 50px;
} 
.formCon .formLeft h2{
  margin-bottom: 20px;
}
.formCon .formLeft h5 span{
  display: inline-block;
  width: 3px;
  height: 14px;
  background: #1C8AD2;
  /* vertical-align: text-top; */
  padding-right: 2px;
}
.formCon .formLeft p{
  margin: 38px 0;
  line-height: 1.5;
}
.formCon .formLeft ul{

}
.formCon .formLeft ul li{
  margin-bottom: 20px;


}
.formCon .formLeft ul li i{
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  vertical-align: middle;
  font-style: normal;
  margin-right: 3px;
}
.formCon .formLeft ul li span{
  font-weight: bold;
}
.formCon  .myForms{
  background: #F0F0F0;
  width: 50%;
}
.formCon form {

  box-sizing: border-box;
  padding: 30px 20px;
}

.formCon label,.formCon  label p{
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  max-width: 50%;
  display: inline-block;
  width: 49%;
  margin-top: 10px;
  text-align: left;
  
}

.formCon label:nth-child(n+6) {
  max-width: 100%;
  width: 100%;
}

.formCon input,
.formCon textarea {
  height: 37px;
  font-size: 14px;
  line-height: 14px;
  padding-left: 15px;
  padding-right: 15px;
  flex: 1;
  border-style: solid;
  border-width: 1px;
  border-color: #bbbbbb;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: inset 0px 2px 3px #dddddd;
  -webkit-box-shadow: inset 0px 2px 3px #dddddd;
  -moz-box-shadow: inset 0px 2px 3px #dddddd;
  width: 85%;
  margin-top: 5px;
  text-align: left;

}

.formCon textarea {
  height: 104px;
  line-height: 22px;
  padding: 15px;
}

.formCon .submit {

  border-style: none;
  border-radius: 5px;
  width: 150px;
  height: 38px;
  background: #38a4e7;
  box-shadow: none;
  text-shadow: none;
  color: #ffffff;
  font-size: 15px;
  line-height: 34px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  background-repeat: no-repeat;
  vertical-align: bottom;
  margin-bottom: 0;
}

.formCon .submit:hover,
.formCon .submit:focus {
  cursor: pointer;
  background: #38a4e7;
}
.formCon .myForms i{
  display: inline-block;
  margin-top:25px;
}

/* 按钮 */
.myForms .submitbox {
    position: relative;
}

.myForms .circle {
    position: absolute;
    top: 14px;
    left: 154px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px dashed #38a4e7;
    border-style: solid dashed solid solid;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* faq */
.faq{
  background-image: url("/images/faqs.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
}
.faq h2 img{ 
  margin-left: 5px;
}
.faq ul li{
  background: #333333;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}
.faq ul li .faqTit{

border-radius: 10px;
padding: 18px 10px 18px 30px;
display: flex;
align-items: center;
transition: all 0.7s
}
.faq ul li .faqTit:hover{
  background: #1C8AD2;
  cursor: pointer;
}
.faq ul li .faqTit span{
  display: block;
  width: 20px;
  text-align: center;
}
.faq ul li .faqTit strong{
  display: block;
  width: 8px;
} 
.faq ul li .faqTit p{
  flex: 1;
}
.faq ul li .faqCon{
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  background-color: #1C8AD2;
  border-radius: 10px;

}
.faq ul li .faqCon p{
  padding: 10px 10px 10px 30px;
  line-height: 1.5;
}

.faq ul li.active{
 
  background-color: #1C8AD2;
}
.faq ul li.active .faqCon{
  /* height: auto; */
}
.faq ul li  .faqTit  .dwon{
  display: none;
}
.faq ul li   .faqTit  .add{
  display: block;
}
.faq ul li.active  .faqTit  .dwon{
  display: block;
}
.faq ul li.active   .faqTit  .add{
  display: none;
}
/* 底部 */
.footer{ 
  background-image: url("/images/foot.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
}
.footer .footer-logo{
  text-align: center;
}
.footer .footer-logo img{
  height: 55px;
  width: auto;
}
.footer .footer-con{
  margin-top: 30px;
 display: flex;
justify-content: center;
 align-items: center;
}
.footer .footer-con .footerItem a{
  display: flex;

   align-items: center;
   color: #fff;
   padding: 0 20px;
}
.footer .footer-con .footerItem a:hover,.footer .footer-con .footerItem a:focus{
  color: #1C8AD2;
}
.footer .footer-con .footerItem img{
  margin-right: 10px;
}