/* 默认CSS样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}
/* 头部*/
.header {
    width: 100%;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.container {
    width: 1200px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 110px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 导航栏样式 */
.bar {
    height: 100%;
}

.bar ul {
    display: flex;
    height: 100%;
    align-items: center;
}

.bar > ul > li {
    position: relative;
    margin-right: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.bar > ul > li:last-child {
    margin-right: 0;
}

.bar > ul > li > a {
    display: block;
    padding: 0 15px;
    height: 100%;
    line-height: 50px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bar > ul > li > a:hover {
    color: #24833a;
    text-decoration: none;
}

/* 下拉菜单样式 */
.bar ul ul {
    position: absolute;
    top: calc(100% - 2px); /* 调整位置，使下拉框更紧密地显示在文字下方 */
    left: 50%;
    transform: translateX(-50%); /* 使下拉框水平居中对齐文字 */
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: auto;
    height: auto;
    display: none;
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 0;
    border-radius: 4px;
}

.bar ul li:hover > ul {
    display: flex;
}

.bar ul ul li {
    width: 100%;
}

.bar ul ul li a {
    display: block;
    padding: 8px 20px;
    color: #666;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bar ul ul li a:hover {
    color: #24833a;
    text-decoration: none;
    background-color: #f5f5f5;
}

/* 我们的产品样式 */
.wmcp {
    width: 100%;
    height: 520px;
    position: relative;
}
.wmcp-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.wmcp .title {
    position: absolute;
    margin: 0 auto;
    transform: translateZ(0);
    opacity: 1;
    transition-delay: .7s;
    font-size: 64px;
    font-weight: 600;
    top: 210px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.wmcp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*产品详情 */
.product {
  padding-bottom: 64px;
}
.productTitle {
  font-size: 28px;
  color: #24833A;
  font-weight: 700;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 30px;
}
.productSubTitle {
  width:  100%;
  text-align: center;
  margin:  0 auto;
  margin-top: 30px;
  font-size: 18px;
  color: #999999;
  margin-bottom: 30px;
}
.productSeriePics {
  display: flex;
  margin:  0 auto;
  justify-content: center;
}

.productSerie {
  width: 580px;
  box-sizing: border-box;
  height: 430px;
  padding: 30px  0 20px;
  background-color: #E2E7E3;
  text-align: center;
  img {
    width: 500px;
    height: 306px;
  }
}
.productSerie:last-child {
  margin-left: 30px;
}
.productSerieName {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}


.more {
  margin: 50px auto 0;
  width: 135px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px #ccc solid;
}

.imgWrap{
  width: 500px;
  height: 306px;
  overflow: hidden;
  margin: 0 auto;
}

.title {
 color: #24833A;
 font-size: 28px;
 text-align: center;
 font-weight: 700;
}

.desc{
  color: #999;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 32px;
}
.productImg{
  transition: all 0.5s ease-out;
}

.productImg:hover{
  transform: scale(1.1);
}
.whiteWrap{  
  padding: 80px 0;
  background-color: #fff;
}
.greyWrap{  
  padding: 80px 0;
  background-color: #F8F8F8;
}

.dyList{
  display: flex;
  align-items: center;
  justify-content: center;
}

.dyItem{
  padding: 20px;
  margin: 0 8px;
  background-color: #fff;
}

.dyItemBorder{
  padding: 20px;
  margin: 0 8px;
  background-color: #fff;
  border: 1px solid #DBDBDB;
}

.dyImg{
  width: 350px;
  height: 350px;
}
.dyTitle{
  font-size: 16px;
  padding-top: 24px;
  font-weight: 700;
  width: 350px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dyDesc {
  color: #999;
  padding-top: 24px;
}

.newsWrap {
  display: flex;
  padding-top: 6px;
  justify-content: center;
}


.leftImg {
  width: 400px;
  height: 304px;
}

.newsList{
  height: 336px;
  overflow-y: auto;
  margin-left: 32px;
  width: 794px;
  margin-top: -20px;
}

.newsItem{
  line-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F4F4F4;
}

.newsItem:last-child{
  border-bottom: none;
}

.newsContent {
  width: 520px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}

.newsTime {
  color: #999;  
  font-size: 16px;
}


.artList {
  display: flex;
  flex-wrap: wrap;
  padding: 0 328px 0 360px; 
}

.artItem {
  display: flex;
  margin: 0 32px 30px 0;
}

.redBg {
  background-color: #B94120;
}
.whiteColor{
  color: #fff;
}
.artTime{
  text-align: right;
  padding: 16px 16px 0 16px;
  width: 66px;
  height: 82px;
}
.date{
  font-size: 24px;
}
.year{
  font-size: 16px;
}
.line{
  width: 27px;
  height: 1px;
  margin: 8px 0;
  display: inline-flex;
  justify-content: flex-end;
}

.artWrap{
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
}

.artTitle {
  width: 440px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  margin-bottom: 12px;
}

.artContent{
  width: 440px;
  height: 86px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #999;
}

.whiteBg{
  background-color: #fff;
}
.greykBg{
  background-color: #999;
}

.greeBg{
  background-color: #24833A;
}
.more {
  margin: 30px auto;
  width: 135px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px #ccc solid;
}


/*底部*/
.HomePage_footer {
    background-color: #3f4552;
    color: #fff;
    height: 512px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.Footer_footerWarp {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.Footer_footer {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.Footer_navWrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
}

.Footer_logo {
    width: 65px;
    height: auto;
    margin-right: 20px;
}

.Footer_nav {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.Footer_nav:hover {
    color: #fff;
}

.Footer_rightWrap {
    display: flex;
    gap: 16px;
}

.Footer_qrCode {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 14px;
}

.Footer_qrImg {
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
}

.Footer_contractList {
    display: flex;
    gap: 12px;
    padding-bottom: 40px;
    border-bottom: 1px solid #555;
}

.Footer_contractItem {
    width: 290px;
    height: 170px;
    background-color: #9c9ea4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #fff;
}

.Footer_imgWrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Footer_conImg {
    width: 100%;
    height: auto;
}

.Footer_line {
    height: 1px;
    background-color: #555;
    margin: 30px 0;
}

.Footer_num {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}