@charset "utf-8";
/* CSS Document */

/*banner*/
.in-banner{width: 100%;height:100vh;position: relative;overflow: hidden;}
.in-banner .swiper-container{width: 100%;height: 100%;}
.in-banner .swiper-container .swiper-slide{width: 100%;height: 100%;position: relative;}
.in-banner .swiper-container .swiper-slide .slide-bj{position: absolute;top: 0;left: 0;z-index: 1;width: 100%;height: 100%;}
.in-banner .swiper-container .swiper-slide img{width:100%;height:auto;min-height:100%;transition:1s linear 2s;
transform:scale(1.1,1.1);object-fit: cover;}
.in-banner .swiper-container .swiper-slide-active img,.in-banner .swiper-container .swiper-slide-duplicate-active img{
		transition:6s linear;
		transform:scale(1,1);
}	
.in-banner .swiper-container .slide-text{
    display: flex;justify-content: left;align-items: center;
    position: relative;z-index: 2;
    width: 100%;height: 100%;    
}
.in-banner .swiper-container .slide-text .text{width: 580px;max-width: 100%;margin: 0;}
.in-banner .swiper-container .slide-text h2{margin: 0 0 25px;color: #fff;font-size:60px;}
.in-banner .swiper-container .slide-text p{color: #fff;font-size: 18px;opacity: 0.6;}
.in-banner .swiper-container .slide-text .text a{width: 170px;height:45px;border-radius: 30px;color: #fff;line-height: 45px;border: 2px solid #fff;font-size: 16px;margin-top: 40px;}
.in-banner .swiper-container .slide-text .text a img{display: block;width: 5px;margin-left: 40px;height: 12px;min-height: auto;}
.in-banner .swiper-container .slide-text .text a:hover{background: #f8b500;}
.btn-banner{width: 100%;position: absolute;top: 13vw;left:0;z-index: 9;}
.btn-banner .cont{position: relative;}
.in-banner .swiper-container .swiper-pagination{text-align: left;}
.in-banner .swiper-container .swiper-pagination .swiper-pagination-bullet{width: 15px;height: 15px;background: #fff;opacity: 1;margin-right: 10px;}
.in-banner .swiper-container .swiper-pagination .swiper-pagination-bullet-active{background: #f8b500;}

.banner-bottom{position: absolute;bottom: 0;left: 0;width: 100%;height: 100px;z-index: 9;display: flex;justify-content: center;align-items: center;}
.banner-btn{width: 100%;height: 36px;text-align: center;}
.banner-btn img{
    cursor: pointer;width: auto;height: 36px;
    animation: Tmouse 0.8s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}
.in-banner .swiper-container .swiper-button-next,.in-banner .swiper-container .swiper-button-prev{width: 50px;height: 50px;background: rgba(0,0,0,0.7);opacity:1;border-radius: 50%;}
.in-banner .swiper-container .swiper-button-next:after,.in-banner .swiper-container .swiper-button-prev:after{color: #fff;font-size: 20px;}
.in-banner .swiper-container .swiper-button-next:hover,.in-banner .swiper-container .swiper-button-prev:hover{background: #f8b500;}

/* 背景放大→缩小动画（Ken Burns 效果，6秒与轮播同步） */
@keyframes bannerZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* 文字从下往上动画 */
@keyframes textSlideUp {
    0%   { opacity: 0; transform: translateY(80px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 鼠标箭头动画 */
@keyframes Tmouse {
    0%   { transform: translateY(0); }
    100% { transform: translateY(8px); }
}
/*banner-end*/

/*index*/
.in-title{width: 100%;padding: 90px 0;}
.in-title h2{font-weight: bold;font-size: 56px;margin: 0;text-transform: capitalize;}
.in-title a{font-size: 16px;color: #83ad27;}
.in-title a img{display: block;margin-left:10px;}
.in-title a:hover{color: #f8b500;}

.accordion {width: 100%;height: 600px;display: flex;overflow: hidden;padding-bottom: 5px;}
.accordion-item {border-radius: 10px;position: relative;height: 100%;cursor: pointer;transition: flex 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);overflow: hidden;margin: 0 7px;border: 1px solid #cdd9bf;}
.accordion-item.active {flex: 5;cursor: default;}
.accordion-item:not(.active) {flex: 0.45;}
.accordion-bg {position: absolute;inset: 0;background-size: cover;background-position: center;transition: transform 0.6s ease;}
.accordion-item:hover .accordion-bg {transform: scale(1.05);}
.accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 50, 40, 0.55) 0%, rgba(0, 70, 55, 0.85) 100%);
  transition: opacity 0.4s ease;
}
.accordion-item.active .accordion-overlay {
  background: linear-gradient(180deg, rgba(0, 50, 40, 0.45) 0%, rgba(0, 80, 60, 0.88) 100%);
}
/* 收起状态：竖排标题 + 图标 */
.collapse-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 30px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease 0.05s;
  background: #f6f9f6;
}
.accordion-item.active .collapse-content {opacity: 0;pointer-events: none;transition: opacity 0.2s ease;}
.collapse-title {writing-mode: vertical-rl;text-orientation: mixed;font-size: 24px;font-weight: 400;   letter-spacing: 4px;color: #83ad27;}
.collapse-icon {width: 56px;display: flex;align-items: center;justify-content: center;}
.collapse-icon img {width: 100%;}
/* 展开状态：详情内容 */
.expand-content {
  position: absolute;
  inset: 0;
  display: flex;      
  justify-content: space-between;
  padding:80px 4vw;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.section-text{width: calc(100% - 110px);padding-left: 3vw;}
.accordion-item.active .expand-content {opacity: 1;pointer-events: auto;transform: translateY(0);transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;}
.section-icon {width: 103px;margin-top: 18px;}
.section-icon img{width: 100%;filter: brightness(0) invert(1);}
.section-title {font-size: 44px;font-weight: 600;margin-bottom: 40px;}
.tags {display: flex;flex-wrap: wrap;gap: 10px;margin-bottom: 26px;}
.tag {margin-bottom: 10px;}
.tag a{
  padding: 5px 15px;
  border: 2px solid #fff;
  border-radius: 20px;
  font-size: 16px;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
  
}
.tag a:hover {background: rgba(168, 198, 108, 0.25);border-color: #a8c66c;}
.section-desc {
  width: 750px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 100%;
}
.section-desc p {margin-bottom: 12px;}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  padding: 12px 20px;
  background: #8db03f;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size:16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  width: fit-content;
}
.btn-more:hover {background: #f8b500;color: #fff;}

.in-case{width: 100%;background: url(../images/index_20.jpg) no-repeat;background-size: cover;background-attachment: fixed;margin-top: 90px;padding-bottom: 90px;}
.in-case .mySwiper3{padding-bottom: 80px;}
.in-case .swiper-slide{display: flex;justify-content: space-between;align-items: stretch;background: #8db03f;border-radius: 10px;overflow: hidden;}
.in-case .swiper-slide .case-lf{width:50%;}
.in-case .swiper-slide .case-rf{width:50%;}
.in-case .swiper-slide .case-rf img{width:100%;display: block;}
.in-case .swiper-slide .case-lf h3{font-size: 40px;font-weight: 700;color: #fff;padding: 50px 30px;}
.in-case .swiper-slide .case-lf ul{display: grid;grid-template-columns: repeat(2, 1fr);grid-gap:20px;padding: 0 30px;}
.in-case .swiper-slide .case-lf ul li{background: #fff;text-align: center;font-size: 18px;padding: 20px 15px;font-weight: 700;}
.in-case .mySwiper3 .swiper-button-next,
.in-case .mySwiper3 .swiper-button-prev{width: 40px;height: 40px;background: rgba(0,0,0,0.2);border-radius: 50%;display: flex;align-items: center;justify-content: center;top: auto;bottom: 0;}
.in-case .mySwiper3 .swiper-button-next:after,
.in-case .mySwiper3 .swiper-button-prev:after{font-size: 20px;color: #fff;}
.in-case .mySwiper3 .swiper-button-next{right: 0;}
.in-case .mySwiper3 .swiper-button-prev{left: auto;right:55px;}
.in-case .mySwiper3 .swiper-button-next:hover,.in-case .mySwiper3 .swiper-button-prev:hover{background:#f8b500;}
.in-case .mySwiper3 .swiper-pagination{width: calc(100% - 150px);bottom: 13px;text-align: left;}
.in-case .mySwiper3 .swiper-pagination .swiper-pagination-bullet{margin: 0;height: 2px;border-radius: 0;background-color: #fff;opacity: 1;transition: background-color 0.5s ease;width: 20%;}
.in-case .mySwiper3 .swiper-pagination .swiper-pagination-bullet-active{background: #73b020;}

.in-khjz{display: none;}
.in-khjz .mySwiper4{padding-bottom: 80px;}
.in-khjz .mySwiper4 .swiper-con{border-radius: 10px;padding:15px;overflow: hidden;border: 1px solid #eee;}
.in-khjz .mySwiper4 .swiper-slide figure{border-radius: 10px;width:100%;overflow: hidden;height: 250px;}
.in-khjz .mySwiper4 .swiper-slide figure img{width: 100%;height: 100%;object-fit: cover;}
.in-khjz .mySwiper4 .swiper-slide:hover figure img{transform: scale(1.05);}
.in-khjz .mySwiper4 .swiper-slide .text{
    position: relative;
    padding:15px 0px 15px 30px;
    margin: 15px 0;
}
.in-khjz .mySwiper4 .swiper-slide .text-p p{font-size: 16px;color: #666;line-height: 30px;}
.in-khjz .mySwiper4 .swiper-slide .text-p{overflow-y: auto;height: 180px;padding-right: 35px;text-align: justify;}
.in-khjz .mySwiper4 .swiper-slide .text-p::-webkit-scrollbar {width: 5px;}
.in-khjz .mySwiper4 .swiper-slide .text-p::-webkit-scrollbar-track {background: #f1f1f1;border-radius: 3px;}
.in-khjz .mySwiper4 .swiper-slide .text-p::-webkit-scrollbar-thumb {background: #83ad27;border-radius: 3px;}

.in-khjz .mySwiper4 .swiper-slide .text::after,.in-khjz .mySwiper4 .swiper-slide .text::before{font-size: 50px;font-family: arial;}
.in-khjz .mySwiper4 .swiper-slide .text::after{position: absolute;content: ' “ ';top: 6px;left: 0;}
.in-khjz .mySwiper4 .swiper-slide .text::before{position: absolute;content: ' ” ';bottom:-18px;right:10px;}
.in-khjz .mySwiper4 .swiper-slide .khjz-logo{border-top: 2px #dedede dashed;margin: 20px auto;padding: 20px 0 0;}
.in-khjz .mySwiper4 .swiper-slide .khjz-logo img{width: auto;height:40px;}
.in-khjz .mySwiper4 .swiper-slide .khjz-logo p{color: #f8b500;font-size: 20px;}
.in-khjz .mySwiper4 .swiper-button-next,
.in-khjz .mySwiper4 .swiper-button-prev{width: 40px;height: 40px;background: rgba(0,0,0,0.2);border-radius: 50%;display: flex;align-items: center;justify-content: center;top: auto;bottom: 0;}
.in-khjz .mySwiper4 .swiper-button-next:after,
.in-khjz .mySwiper4 .swiper-button-prev:after{font-size: 20px;color: #fff;}
.in-khjz .mySwiper4 .swiper-button-next{right: 0;}
.in-khjz .mySwiper4 .swiper-button-prev{left: auto;right:55px;}
.in-khjz .mySwiper4 .swiper-button-next:hover,.in-khjz .mySwiper4 .swiper-button-prev:hover{background:#f8b500;}
.in-khjz .mySwiper4 .swiper-pagination{width: calc(100% - 150px);bottom: 13px;text-align: left;}
.in-khjz .mySwiper4 .swiper-pagination .swiper-pagination-bullet{margin: 0;height: 2px;border-radius: 0;background-color: #ddd;opacity: 1;transition: background-color 0.5s ease;width: 12%;}
.in-khjz .mySwiper4 .swiper-pagination .swiper-pagination-bullet-active{background: #73b020;}

.in-news{width: 100%;background: url(../images/index_20.jpg) no-repeat;background-size: cover;background-attachment: fixed;padding-bottom: 90px;margin-top:80px;}
.in-news .mySwiper{width: 100%;padding-bottom: 80px;}
.in-news .swiper-slide figure{width: 100%;height: 315px;border-radius: 5px;overflow: hidden;display: flex;align-items: center;justify-content: center;}
.in-news .swiper-slide figure img{width: 100%;height: 100%;object-fit: cover;}
.in-news .swiper-slide:hover figure img{transform: scale(1.05);}
.in-news .swiper-slide time{display: block;font-size: 16px;color: #73b020;margin: 30px 0 25px;}
.in-news .swiper-slide h3{font-size: 24px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;}
.in-news .mySwiper .swiper-button-next,
.in-news .mySwiper .swiper-button-prev{width: 40px;height: 40px;background: rgba(0,0,0,0.2);border-radius: 50%;display: flex;align-items: center;justify-content: center;top: auto;bottom: 0;}
.in-news .mySwiper .swiper-button-next:after,
.in-news .mySwiper .swiper-button-prev:after{font-size: 20px;color: #fff;}
.in-news .mySwiper .swiper-button-next{right: 0;}
.in-news .mySwiper .swiper-button-prev{left: auto;right:55px;}
.in-news .mySwiper .swiper-button-next:hover,.in-news .mySwiper .swiper-button-prev:hover{background:#f8b500;}
.in-news .mySwiper .swiper-pagination{width: calc(100% - 150px);bottom: 13px;text-align: left;}
.in-news .mySwiper .swiper-pagination .swiper-pagination-bullet{margin: 0;height: 2px;border-radius: 0;background-color: #fff;opacity: 1;transition: background-color 0.5s ease;width: 20%;}
.in-news .mySwiper .swiper-pagination .swiper-pagination-bullet-active{background: #73b020;}

.in-dc .mySwiper2{padding:0 6vw 80px 9vw;}
.in-dc .mySwiper2 .swiper-slide{padding: 3px;}
.in-dc .mySwiper2 .swiper-slide a{background: #fff;border-radius: 5px;box-shadow:2px 0 10px rgba(0,0,0,0.08);display: block;justify-content: space-between;align-items: flex-start;}
.in-dc .mySwiper2 .swiper-slide a figure{width: 100%;height:510px;overflow: hidden;display: flex;align-items: center;justify-content: center;}
.in-dc .mySwiper2 .swiper-slide a figure img{width: 100%;height: 100%;object-fit: cover;}
.in-dc .mySwiper2 .swiper-slide .text{padding:25px 20px 30px;}
.in-dc .mySwiper2 .text h3{font-size: 20px;height: 52px;}
.in-dc .mySwiper2 .text time{display: block;margin-top: 20px;font-size: 16px;color: #73b020;}
.in-dc .mySwiper2 .swiper-slide a:hover figure img{transform: scale(1.05);}
.in-dc .mySwiper2 .cont1{position: relative;margin-top: 80px;max-width: 1550px;width: 100%;}
.in-dc .mySwiper2 .swiper-button-next,.in-dc .mySwiper2 .swiper-button-prev{width: 40px;height: 40px;background: rgba(0,0,0,0.2);border-radius: 50%;display: flex;align-items: center;justify-content: center;top: auto;bottom: 0;}
.in-dc .mySwiper2 .swiper-button-next:after,
.in-dc .mySwiper2 .swiper-button-prev:after{font-size: 20px;color: #fff;}
.in-dc .mySwiper2 .swiper-button-next{right: 0;}
.in-dc .mySwiper2 .swiper-button-prev{left: auto;right:55px;}
.in-dc .mySwiper2 .swiper-button-next:hover,.in-dc .mySwiper2 .swiper-button-prev:hover{background:#f8b500;}
.in-dc .mySwiper2 .swiper-pagination{width: calc(100% - 150px);bottom: 13px;text-align: left;}
.in-dc .mySwiper2 .swiper-pagination .swiper-pagination-bullet{margin: 0;height: 2px;border-radius: 0;background-color: #dddddd;opacity: 1;transition: background-color 0.5s ease;width: 11%;}
.in-dc .mySwiper2 .swiper-pagination .swiper-pagination-bullet-active{background: #73b020;}


.in-flbanner{width: 100%;background: url(../images/index_23.jpg) no-repeat;background-size: cover;background-attachment: fixed;padding: 15vw 0;}
.in-flbanner .text{width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;text-align: center;}
.in-flbanner .text h2{font-size: 56px;color: #fff;margin: 0;}
.in-flbanner .text p{font-size: 18px;color: #fff;margin: 30px 0 50px;}
.in-flbanner .text ul{display: flex;justify-content: center;gap: 30px;}
.in-flbanner .text ul li{}
.in-flbanner .text ul li a{display: block;width: 230px;height: 50px;line-height: 50px;text-align: center;border-radius: 30px;border: 2px solid #fff;font-size: 17px;color: #fff;}
.in-flbanner .text ul li a:hover{background: #fff;color: #73b020;}

/*footer*/
.footer{width: 100%;background: #222222;padding-top:120px;}
.foot-box{display: flex;justify-content: space-between;align-items: flex-start;}
.foot-logo{margin-bottom: 20px;}
.foot-logo img{height: 36px;}
.foot-l .text{padding-left: 50px;}
.foot-l .text p{font-size: 17px;color: #fff;margin: 20px 0 5px;}
.foot-l .text a{font-size: 24px;color: #f8b500;}
.foot-nav{text-transform: capitalize;}
.foot-nav h3{margin-bottom: 20px;}
.foot-nav h3 a{font-size: 20px;color: #999;}
.foot-nav h3 a:hover{color: #fff;}
.foot-nav p{margin-bottom: 11px;}
.foot-nav p a{font-size: 15px;color: #999;}
.foot-nav p a:hover{color: #fff;}
.foot-ewm{background: #fff;border-radius: 5px;text-align: center;width: 125px;overflow: hidden;padding-bottom: 10px;}
.foot-ewm img{width: 100%;display: block;}
.foot-ewm p{margin:0;font-size: 14px;color: #666;}
.foot-bq{width: 100%;margin-top:120px;background: #181818;}
.foot-bq-text{display: flex;justify-content: space-between;align-items: center;padding: 40px 0;}
.foot-bq-l{font-size: 15px;color: #999;}
.foot-bq-l{}
.foot-bq-l a{font-size: 15px;color: #999;display: inline-block;margin-left: 30px;}

/* 右侧悬浮容器 */
.fixed-sidebar{
  position:fixed;
  right:0px;
  top:50%;
  transform:translateY(-50%);
  z-index:99;
  display:flex;
  flex-direction:column;
  gap:8px;
  
}
.fixed-sidebar-r{background: #f8b500 url(../images/index_11.png) no-repeat;background-position: 8px -10px;width: 60px;border-radius: 50px;padding:60px 8px 20px;}

/* 悬浮按钮通用样式 */
.fixed-sidebar .sidebar-item{
  width: 100%;
  text-align:center;
  padding:14px 0px;
  color:#fff;
  cursor:pointer;
  position:relative;
  transition:all 0.24s ease;
  border-radius: 40px;
}
.fixed-sidebar .sidebar-item a{color: #fff;font-size: 14px;}
.fixed-sidebar .sidebar-item:hover{background:#f9c026;color: #fff;}
/* 底部官网按钮绿色 */
.fixed-sidebar .sidebar-item.official{background:#84c230;}
.fixed-sidebar .sidebar-item.official img{width: 50px;}
.fixed-sidebar .sidebar-item.official h4{font-size: 16px;line-height: 16px;}
.fixed-sidebar .sidebar-item.official p{font-size: 12px;}
.fixed-sidebar .sidebar-item.official:hover{background:#73b020;}
/* 悬浮提示浮窗（微信二维码/文字提示） */
.fixed-sidebar .tip-box{
    position:absolute;
    right:calc(100% + 12px);
    top:50%;
    transform:translateY(-50%);
    background:#f9c026;
    border-radius:8px;
    box-shadow:0 2px 12px #00000022;
    white-space:nowrap;
    display:none;
}
.fixed-sidebar .sidebar-item:hover .tip-box{display:flex;}
.fixed-sidebar .tip-text{
  font-size:15px;
  color:#fff;
  height: 100%;
  padding: 0 15px;
  justify-content: center;
  align-items: center;
}
.fixed-sidebar .qrcode-img{
  width:140px;
  height:140px;
  display:block;
}
/* 留言弹窗遮罩 */
.modal-mask{
    position:fixed;
    left:0;top:0;right:0;bottom:0;
    background:rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index:10000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}
.modal-mask .modal-box{
    width:480px;
    background:#ffffff;
    border-radius:18px;
    padding:32px;
    box-shadow:0 12px 40px rgba(0,0,0,0.18);
    position:relative;
    animation: modalPop 0.3s ease-out;
}
/* 弹窗弹出动画 */
@keyframes modalPop{
    0%{opacity:0;transform:scale(0.92);}
    100%{opacity:1;transform:scale(1);}
}
/* 关闭小圆按钮 */
.modal-mask .modal-close-icon{
    position:absolute;
    right:20px;
    top:20px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.2s;
}
.modal-mask .modal-close-icon:hover{
    background:#ffb500;
}
.modal-mask .modal-close-icon svg{
    width:16px;
    height:16px;
    fill:#666;
}
.modal-mask .modal-close-icon:hover svg{
    fill:#fff;
}
.modal-mask .modal-box h3{
    font-size:22px;
    color:#222;
    margin-bottom:24px;
    font-weight:600;
}
.modal-mask .form-item{
    margin-bottom:16px;
}
.modal-mask .form-item label{
    display:block;
    font-size:14px;
    color:#444;
    margin-bottom:6px;
}
.modal-mask .form-item input,.modal-mask .form-item textarea{
    width:94%;
    padding:12px 14px;
    border:1px solid #e2e2e2;
    border-radius:10px;
    font-size:15px;
    transition:0.24s;
    background:#fcfcfc;
}
.modal-mask .form-item input::placeholder,.modal-mask .form-item textarea::placeholder{
    color:#999;
    font-family: 'SourceHanSansCN-Regular';
}

.modal-mask .form-item input:focus,.modal-mask .form-item textarea:focus{
    outline:none;
    border-color:#ffb500;
    box-shadow:0 0 0 3px rgba(255,181,0,0.15);
    background:#fff;
}
.modal-mask .form-item textarea{
    height:120px;
    resize:none;
}
.modal-mask .btn-group{
    display:flex;
    gap:14px;
    margin-top:22px;
}
.modal-mask .btn{
    flex:1;
    padding:13px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    font-weight:500;
    transition:0.24s;
}
.modal-mask .btn-sub{
    background:linear-gradient(135deg,#ffb500,#ff9c00);
    color:#fff;
}
.modal-mask .btn-sub:hover{
    opacity:0.92;
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(255,181,0,0.3);
}
.modal-mask .btn-close{
    background:#f2f2f2;
    color:#555;
}
.modal-mask .btn-close:hover{
    background:#e6e6e6;
}


/*内页*/
/*banner*/
.channel-banner{width: 100%;height:600px;position: relative;overflow: hidden;}
.banner-bj{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    animation: bannerZoom 3s ease-out forwards;
}
.channel-banner .cont{display: flex;justify-content: left;align-items: flex-end;height: 100%;}
.channel-banner .banner-info{position: relative;padding-bottom: 70px;}
.channel-banner .banner-info h1{font-size: 48px;color: #fff;}
.channel-banner .banner-info p{font-size: 60px;font-weight: bold;text-transform: uppercase;font-family: Arial, sans-serif;color: transparent;-webkit-text-stroke: 0.5px #ffffff61;margin-top: -40px;}
@keyframes bannerZoom {
    0% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.ny-title{text-align: left;padding-bottom: 40px;}
.ny-title h2{font-size: 48px;margin: 0;text-transform: capitalize;color: #333;}

/*about*/
.ny-gsjj{width: 100%;background: #f4f4f8;padding:100px 0;margin-bottom: 80px;}
.ny-gsjj-l{width: 50%;}
.ny-gsjj-l .text p{font-size: 17px;color: #777;line-height: 30px;}
.ny-gsjj-r{width: 45%; position: relative;}
.ny-gsjj-r .ny-gsjj-dt{width: 100%;}
.ny-gsjj-r .ny-gsjj-dt img{width: 100%;}
.ny-gsjj-r .ny-gsjj-img2{position:absolute;width: 102px;height: auto;bottom: -105px;right: 0;}
.ny-gsjj-r .ny-gsjj-btn span{display: block;position: absolute;width: 10px;height: 10px;background: #f9c026;border-radius: 50%;transition: all 0.5s ease-in-out;}
.ny-gsjj-r .ny-gsjj-btn span::after{
    content: '';
    position: absolute;
    top: -9px;
    left: -9px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border:1px solid #f9c126;
    background: rgba(249, 193, 38, 1);
    animation: rangeScale 3s linear infinite;
}

@keyframes rangeScale {
    0% {
        opacity: 0.8;
        transform: scale(0.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.ny-gsjj-r .ny-gsjj-btn span.sp1{top: 39%;right: 22%;}
.ny-gsjj-r .ny-gsjj-btn span.sp2{top: 37%;right: 24%;}
.ny-gsjj-r .ny-gsjj-btn span.sp3{top: 55%;right: 37%;}
.ny-gsjj-r .ny-gsjj-btn span.sp4{top: 58%;right: 14%;}
.ny-gsjj-r .ny-gsjj-btn span.sp5{top: 60%;right: 12%;}
.ny-gsjj-r .ny-gsjj-btn span.sp6{top: 64%;right: 28%;}
.ny-gsjj-r .ny-gsjj-btn span.sp7{top: 72%;right: 17%;}
.ny-gsjj-r .ny-gsjj-btn span.sp8{top: 84%;right: 26%;}


.ny-pp-l{width: 40%;}
.ny-pp-l .text p{font-size: 17px;color: #777;line-height: 30px;}
.ny-pp-l .ny-pp-a a{border-radius: 5px;padding: 10px 30px;background: #83ad27;width:180px;color: #fff;font-size: 16px;margin-top: 40px;}
.ny-pp-l .ny-pp-a a:hover{background: #ffb500;}
.ny-baogao{width: 100%;margin-top: 40px;}
.ny-baogao h3{font-size:24px;color: #83ad27;margin: 0 0 30px;}
.ny-baogao .ny-baogao-bdf a{padding: 0 20px;height: 60px;border-radius: 5px;border: 1px solid #e7f2e4;}
.ny-baogao .ny-baogao-bdf a h4{font-size: 16px;color: #666;}
.ny-baogao .ny-baogao-bdf a span{color: #83ad27;}
.ny-baogao .ny-baogao-bdf a span img{display: block;margin-right: 15px;}
.ny-baogao .ny-baogao-bdf a:hover h4{color: #83ad27;}

.ny-pp-r{width: 45%;}
.ny-pp-r ul{display: grid;grid-template-columns: repeat(3, 1fr);gap: 30px;}
.ny-pp-r ul li{position: relative;border-radius: 10px;overflow: hidden;}
.ny-pp-r ul li figure{width: 100%;height: 290px;display: flex;justify-content: center;align-items: center;}
.ny-pp-r ul li figure img{width: 100%;height: 100%;object-fit: cover;}
.ny-pp-r ul li .text{padding: 20px;position: absolute;bottom: 0;left: 0;width: 80%;transition: all 0.5s;}
.ny-pp-r ul li .text p{font-size: 24px;color: #fff;}
.ny-pp-r ul li:nth-child(3) .text,
.ny-pp-r ul li:nth-child(4) .text{top: 10px;}
.ny-pp-r ul li:hover figure img{transform: scale(1.05);}
.ny-pp-r ul li:nth-child(3):hover{background: #f8b500;}
.ny-pp-r ul li:nth-child(4):hover{background: #83ad27;}
.ny-pp-r ul li:nth-child(3):hover figure img,.ny-pp-r ul li:nth-child(4):hover figure img{opacity: 0;}
.ny-pp-r ul li:hover .text{bottom: 58%;}

.ny-lc{width: 100%;background: url(../images/index_27.jpg) no-repeat top;background-attachment: fixed;background-size: cover;margin-top: 80px;padding-top: 80px;padding-bottom: 80px;}
.ny-lc .jq22{width: 90%;margin: 30px auto 0;}
.ny-lc .jq22 .list{width: 100%;position: relative;}
.ny-lc .jq22 .list::after{content: '';position: absolute;top: 20px;left: 160px;width:1px;height: 100%;background: #b8b8b8;}
.ny-lc .jq22 .jq22-li{width: 100%;display: flex;justify-content: space-between;align-items: flex-start;margin-bottom: 30px;}
.ny-lc .jq22 .jq22-li .title{width: 167px;display: flex;justify-content: space-between;align-items: center;}
.ny-lc .jq22 .jq22-li .title h3{font-size:48px;font-weight:600;color: #b8b8b8;line-height: 48px;transition: all 0.5s;}
.ny-lc .jq22 .jq22-li .title span{display: block;width: 12px;height: 12px;border-radius: 50%;background: #b8b8b8;transition: all 0.5s;}
.ny-lc .jq22 .jq22-li .text{width: calc(100% - 220px);}
.ny-lc .jq22 .jq22-li .text p{font-size: 17px;border: #000;line-height: 35px;position: relative;padding-left: 16px;opacity: 0.5;transition: all 0.5s;}
.ny-lc .jq22 .jq22-li .text p::after{content: '';position: absolute;top:15px;left: 0;width:5px;height: 5px;background: #000;border-radius: 50%;}
.ny-lc .jq22 .jq22-li:hover .text p{opacity: 1;}
.ny-lc .jq22 .jq22-li:hover .title span{background: #83ad27;}
.ny-lc .jq22 .jq22-li:hover .title h3{color: #83ad27;}
.ny-lc .jq22 .more{margin-top: 80px;}
.ny-lc .jq22 .more a{display: block;margin: 0 auto;width: 230px;height: 50px;line-height: 50px;text-align: center;font-size: 16px;color: #999;border-radius: 5px;background: #fff;}
.ny-lc .jq22 .more a:hover{background: #83ad27;color: #fff;}
.ny-lc .jq22 .more p{line-height: 50px;text-align: center;font-size: 16px;color: #999;}

.ny-zhuanjia{margin-bottom: 0;}
.zj-title{display: flex;justify-content: left;align-items: flex-end;}
.zj-title h2{font-size: 36px;color: #83ad27;margin: 0;line-height: 46px;}
.zj-title h3{font-size: 20px;color: #83ad27;margin: 0;margin-left: 30px;}
.ny-zhuanjia .ny-gsjj-l{width: 67%;margin-top:25px;}
.ny-zhuanjia .jianjie{width: 94%;background: #fff;border-radius: 10px;padding: 30px;font-size: 17px;color: #777;line-height: 35px;}
.ny-zhuanjia .ny-gsjj-l .text{padding: 30px;}
.ny-zhuanjia .ny-gsjj-r{width: 360px;}

/*联系我们*/
.ny-lxwm{width: 100%;}
.ny-lxwm li{border-radius: 10px;background: #fff;margin-bottom: 30px;padding: 30px;position: relative;border: 3px solid #fff;transition: all 0.8s;}
.ny-lxwm li h2{font-size: 17px;color: #83ad27;margin: 0 0 30px;}
.ny-lxwm li .text{display: flex;justify-content: left;align-items: flex-start;margin-bottom: 10px;}
.ny-lxwm li .text img{display: block;margin-right: 10px;margin-top: 3px;}
.ny-lxwm li .text a{font-size: 16px;color: #333;}
.ny-lxwm li .text a:hover{color: #83ad27;}
.ny-lxwm li::after{content: '';position: absolute;top: 32px;left:-3px;width:3px;height:20px;background: #83ad27;}
.ny-lxwm li:hover{border: 3px solid #83ad27;}
.ny-contact{margin-bottom: 0;}
.ny-contact .ny-gsjj-r {
    flex: 0 0 40%;
    align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 80px; 
    max-height: calc(100vh - 120px);
    /*overflow-y: auto;*/
}
.ny-contact .ny-gsjj-r .ny-gsjj-btn span::after{background:#83ad27;}
.ny-contact .ny-gsjj-r .ny-gsjj-btn span{background:#83ad27;}

/*观点*/
.gd-list{width: 100%;background:url(../images/index_30.png) no-repeat bottom;background-size: cover;background-attachment: fixed;padding-top: 80px;padding-bottom: 80px;}
.gd-list-l{width: 22%;border-top: 2px solid #83ad27;}
.gd-list-l h2{font-size: 24px;padding:35px 0 33px;border-bottom: 1px solid #ddd;line-height: 24px;text-transform: capitalize;}
.gd-list-l ul{width: 100%;}
.gd-list-l ul li{display: flex;justify-content: space-between;align-items: center;width: 100%;padding: 30px 0;border-bottom: 1px solid #ddd;}
.gd-list-l ul li a{font-size: 16px;color: #333;line-height: 36px;text-transform: capitalize;}
.gd-list-l ul li img{display: block;opacity: 0;}
.gd-list-l ul li:hover img,.gd-list-l ul li.active img{opacity: 1;}
.gd-list-l ul li:hover a,.gd-list-l ul li.active a{color: #83ad27;}
.gd-search{}
.gd-search form{width: 100%;border-radius: 30px;border: 1px solid #ddd;margin-top: 20px;overflow: hidden;}
.gd-search form button{background: none;border: none;width:45px;height: 45px;display: flex;justify-content: center;align-items: center;}
.gd-search form button img{display: block;}
.gd-search form input{width:calc(100% - 45px);height: 45px;background: none;border: none;font-size: 16px;color: #333;}
.gd-search form input::placeholder{font-size: 16px;color: #999;}

.gd-list-r{width: 100%;border-top:2px solid #ddd;position: relative;}
.gd-list-r::after{content: '';position: absolute;top:-2px;left: 0;width:100px;height: 2px;background: #83ad27;}
.gd-list-r .title{padding:35px 0 33px;}
.gd-list-r .title h3{font-size: 30px;color: #83ad27;line-height: 30px;text-transform: capitalize;}
.gd-list-r .jq22 li{margin-bottom: 30px;}
.gd-list-r .jq22 li a{}
.gd-list-r .jq22 li figure{width: 260px;overflow: hidden;}
.gd-list-r .jq22 li figure img{width: 100%;}
.gd-list-r .jq22 li .text{width: calc(100% - 300px);}
.gd-list-r .jq22 li time{font-size: 14px;color: #f8b500;}
.gd-list-r .jq22 li .text h4{font-size: 24px;margin: 15px 0 20px;}
.gd-list-r .jq22 li .text p{font-size: 14px;color: #666;line-height: 25px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
.gd-list-r .jq22 .more{margin-top: 80px;}
.gd-list-r .jq22 .more a{display: block;margin: 0 auto;width: 230px;height: 50px;line-height: 50px;text-align: center;font-size: 16px;color: #fff;border-radius: 5px;background: #f8b500;}
.gd-list-r .jq22 .more a:hover{background: #83ad27;color: #fff;}
.gd-list-r .jq22 .more p{line-height: 50px;text-align: center;font-size: 16px;color: #999;}
.gd-list-r .jq22 li a:hover figure img{transform: scale(1.05);}

.gd-list-r .news-xq ul{padding-left: 20px;}
.gd-list-r .news-xq ul li{list-style: disc;}

.jq22-dc .list{display: grid;grid-template-columns: repeat(2, 1fr);grid-gap: 40px;}
.jq22-dc .list li{margin: 0;}
.jq22-dc .list li a figure{width:200px;height: 280px;}
.jq22-dc .list li a .text{width: calc(100% - 220px);padding-top: 10px;}
.gd-list-r .jq22-dc li a .text h4{margin: 10px 0 20px;}
.gd-list-r .jq22-dc li a .text p{display: block;}
.search-info{margin-top: 20px;font-size: 16px;color: #999;}
.gd-list-r .xzwj{}
.gd-list-r .xzwj a{
    display: block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    margin: 50px auto 0;
    text-align: center;
    background: #84c230;
    color: #fff;
    font-size: 16px;
}
.gd-list-r .xzwj a:hover{background: #f8b500;}

.news-xq{}
.news-xq .title h4{font-size: 35px;}
.news-xq .title-btn{border-bottom: 1px solid #ddd;padding-bottom: 30px;}
.news-xq .title-btn li{font-size: 15px;color: #666;margin-right: 30px;}
.news-xq .title-btn li figure img{display: block;margin-right: 5px;}
.news-xq .title-btn li span{color: #f8b500;}
.news-xq .news-box{border-bottom: 1px solid #ddd;padding: 40px 0;}
.news-xq .news-box img{max-width: 100%;}
.news-xq .news-box p{font-size: 17px;color: #222;line-height: 30px;}
.news-box-btn{margin: 30px 0 80px;}
.news-box-btn p{font-size: 16px;color: #666;margin-bottom: 10px;}
.news-box-btn p a{color: #666;}
.news-box-btn p a:hover{color: #83ad27;}

/*分页*/
.last-page{margin: 50px auto 80px;display:flex; justify-content: center;align-items: center;}
.last-page span a{margin: 0 5px;color: #333;font-size: 16px;height: 50px;line-height: 50px;width:50px;border-radius: 5px;display: flex;justify-content: center;align-items: center;background: #f5f5f5;}
.last-page span a:hover,.last-page span a.page-num-current{background: #f8b500;color: #fff;}
.last-page span a:hover img{filter: brightness(0) invert(1);}
.last-page .page-numbar{display: flex;}
.text-secondary{text-align: center;margin: 80px 0;}
.text-secondary img{width: 300px;}

/*产品列表*/
.cplist-box{margin-top:40px;}
.cplist-bj{width:100%;background:#f5f5f5;margin-bottom:40px;}
.cplist-l{width:300px;background: #83ad27;display: flex;justify-content: center;align-items: center;min-height: 530px;}
.cplist-l .text{width: 170px;padding:50px 0;}
.cplist-l h2{font-size: 54px;color: #FFF;letter-spacing: 3.24px;text-align: center;}
.cplist-l .text-p{margin-top: 50px;text-align: center;}
.cplist-l .text-p p{font-size: 16px;color: #FFF;margin-bottom:15px;}
.cplist-l a{
    display: block;
    margin: 80px auto 0;
    background: #FFFFFF;
    border-radius: 2px;
    width: 144px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    font-size: 18px;
    color: #83ad27;
    letter-spacing: 0;
    text-decoration: none;
    font-weight: bold;
}
.cplist-r{flex: 1;box-sizing: border-box; padding:45px 0 0 60px;}
.cplist-r .title{display: inline-block;font-size: 28px;color: #333;padding-bottom: 14px;border-bottom: 3px solid #83ad27;}
.cplist-r .desc{font-size: 45px;color: #333;margin-top: 14px;}
.cplist-r .desc-view{margin-top: 20px;display: flex;align-items: stretch;justify-content: space-between;}
.cplist-r .desc-view .left{width: 380px;background: #FFF;padding: 24px 30px 30px;position: relative;}
.cplist-r .desc-title{font-weight: 600;font-size: 20px;color: #333;}
.cplist-r .desc-view .left .desc-text{font-size: 14px;color: #666;line-height: 30px;margin-top: 14px;}
.cplist-r .desc-view .left .desc-more{margin-right: 0;background: #EEE;border-radius: 2px;display: block;font-size: 12px;color: #999;width: 70px;height: 25px;line-height: 25px;margin-top: 10px;text-align: center;margin-left: auto;}
.cplist-r .desc-view .left .desc-more:hover{background:#f8b500;color:#fff;}
.cplist-r .right{width: calc(100% - 465px);background-color: #fff;padding: 24px 30px 0 30px;box-sizing: border-box;position: relative;}
.cplist-r .right1{display:none;}
.yewu-title{display: flex;justify-content: left;margin-top: 14px;align-items: flex-start;flex-wrap: wrap;}
.yewu-title li{margin-right:2vw;}
.yewu-title li h4{line-height: 30px;font-size: 14px;color: #807e7e;}
.yewu-title li .text-p{line-height: 30px;font-size: 14px;color: #afacac;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;width: 98%;}
/*.cplist-bj:nth-child(2) .cplist-l{background:#FF7212;}
.cplist-bj:nth-child(2) .cplist-l a{color: #FF7212;}
.cplist-bj:nth-child(2) .cplist-r .title{border-bottom: 3px solid #FF7212;}
.cplist-bj:nth-child(3) .cplist-l{background:#f8b500;}
.cplist-bj:nth-child(3) .cplist-l a{color: #f8b500;}
.cplist-bj:nth-child(3) .cplist-r .title{border-bottom: 3px solid #f8b500;}
.cplist-bj:nth-child(4) .cplist-l{background:#C8DC19;}
.cplist-bj:nth-child(4) .cplist-l a{color: #C8DC19;}
.cplist-bj:nth-child(4) .cplist-r .title{border-bottom: 3px solid #C8DC19;}
.cplist-bj:nth-child(5) .cplist-l{background:#68E4EA;}
.cplist-bj:nth-child(5) .cplist-l a{color: #68E4EA;}
.cplist-bj:nth-child(5) .cplist-r .title{border-bottom: 3px solid #68E4EA;}
.cplist-bj:nth-child(6) .cplist-l{background:#2FB5EA;}
.cplist-bj:nth-child(6) .cplist-l a{color: #2FB5EA;}
.cplist-bj:nth-child(6) .cplist-r .title{border-bottom: 3px solid #2FB5EA;}
.cplist-bj:nth-child(7) .cplist-l{background:#1772E0;}
.cplist-bj:nth-child(7) .cplist-l a{color: #1772E0;}
.cplist-bj:nth-child(7) .cplist-r .title{border-bottom: 3px solid #1772E0;}
.cplist-bj:nth-child(8) .cplist-l{background:#3434CE;}
.cplist-bj:nth-child(8) .cplist-l a{color: #3434CE;}
.cplist-bj:nth-child(8) .cplist-r .title{border-bottom: 3px solid #3434CE;}
.cplist-bj:nth-child(9) .cplist-l{background:#9626ED;}
.cplist-bj:nth-child(9) .cplist-l a{color: #9626ED;}
.cplist-bj:nth-child(9) .cplist-r .title{border-bottom: 3px solid #9626ED;}*/

.ppyxl-ul{display: grid;grid-template-columns: repeat(3, 1fr);grid-gap: 30px;width: 100%;padding-bottom: 50px;}
.ppyxl-ul li{}
.ppyxl-ul li a{display: block;width: 100%;height: auto;text-align: center;}
.ppyxl-ul li figure{width: 100%;overflow: hidden;height: 180px;}
.ppyxl-ul li figure img{width:100%;height: 100%;object-fit: cover;}
.ppyxl-ul li p{font-size: 16px;}

.cp-list .gd-list-l ul li{flex-wrap: wrap;}
.cp-list .gd-list-l ul li img{cursor: pointer;}
.cp-list .gd-list-l ul li ul{width: 100%;}
.cp-list .gd-list-l ul li ul li{padding: 0px;border-bottom: none;width:100%;margin-top: 5px;}
.cp-list .gd-list-l ul li ul li a{display: flex;justify-content: space-between;align-items: center;width: 100%;color: #999;padding:7px 15px 7px 30px;border-radius: 5px;position: relative;}
.cp-list .gd-list-l ul li ul li a h4{font-size: 16px;}
.cp-list .gd-list-l ul li ul li a img{filter: brightness(0) invert(1);opacity: 0;}
.cp-list .gd-list-l ul li ul li a::after{content: '';position: absolute;top: 23px;left: 15px;width:4px;height: 4px;background: #999;border-radius: 50%;transition: all 0.5s;}
.cp-list .gd-list-l ul li ul li a:hover,.cp-list .gd-list-l ul li ul .on a{background: #83ad27;color: #fff;}
.cp-list .gd-list-l ul li ul li a:hover img,.cp-list .gd-list-l ul li ul .on img{opacity: 1;}
.cp-list .gd-list-l ul li ul li a:hover::after,.cp-list .gd-list-l ul li ul .on a::after{background: #fff;}
.nav-sub {display: none;overflow: hidden;}
.cp-list .gd-list-l ul li.active .nav-sub{display: block;}
.nav-sub.open {display: block;}
.nav-toggle {cursor: pointer;transition: transform 0.3s ease;}
.nav-toggle.rotated {transform: rotate(-90deg);}
.cp-list .gd-list-r .title{padding-bottom: 0;}
.cp-list .news-xq .title h4{font-size: 48px;}
.nav-sub.collapsed {display: none !important;}
.cp-list .news-xq .news-box{border-bottom: none;}
.fhlb{
    position: fixed;
    right: 0;
    z-index: 99;
    top: 70%;
    background: #f8b500;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.fhlb:hover{background:#83ad27;}

/*岗位列表*/
.job-email{width:88%;background: #83ad27;border-radius: 5px;padding:20px;}
.job-email img{display: block;width: 34px;}
.job-email .text{width: calc(100% - 45px);}
.job-email .text p{font-size: 16px;color: #fff;}
.job-email .text a{font-size: 20px;font-weight: 800;color: #fff;}
.job-list .gd-list-l{border-top:none;}
.job-list .job-zwsx{border-radius: 5px;background: #f4f4f8;margin-bottom: 20px;}
.job-list .job-zwsx h3{font-size: 24px;color: #333;padding: 50px 0 25px;margin: 0 auto;width: 80%;}
.job-list .job-zwsx .job-box{border-top: 1px solid #ddd;margin: 0 auto;width:80%;padding: 25px 0;font-size: 16px;color: #666;}
.job-list .job-zwsx .job-box .title{margin-bottom: 10px;}
.job-list .job-zwsx .job-box .title p{font-size: 16px;color: #999;position: relative;}
.job-list .job-zwsx .job-box .title p::after{content: '';position: absolute;top: 5px;left: -33px;width: 3px;height: 14px;background: #83ad27;}
.job-list .job-zwsx .job-box .btnbtn-info{background: #83ad27;color: #fff;border-radius: 5px;padding:3px 8px;}
.job-list .job-zwsx .job-box .active{background: #83ad27;color: #fff;border-radius: 5px;}
.job-list .job-zwsx .job-box a{color: #666;display: inline-block;padding:3px 8px;}
.job-list .job-zwsx .job-box a:hover{background: #83ad27;color: #fff;border-radius: 5px;}
.job-list .gd-list-r{border-top: none;width:74%;}
.job-list .gd-list-r::after{display: none;}
.job-list .gd-list-r .jq22 li{width:94%;background: #fff;border: 1px solid #ddd;border-radius: 5px;padding: 0 30px;}
.joblist-title{height: 120px;cursor: pointer;}
.joblist-title h2{font-size: 24px;color: #666;width: 40%;transition: all 0.5s;}
.joblist-title .dizhi{width: 125px;}
.joblist-title .dizhi p{font-size: 16px;color: #999;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.joblist-title time{font-size: 16px;color: #999;}
.joblist-title .gb{width: 35px;height: 35px;border-radius: 50%;background: #ececec;text-align: center;cursor: pointer;transition: all 0.5s;}
.joblist-title .gb span{display: block;width: 19px;height: 2px;background: #b3b3b3;margin: 16px auto 0;transition: all 0.5s;}
.joblist-title .gb span:nth-child(2){transform: rotate(-90deg);margin-top: -2px;}
.joblist-title .gb:hover{background: #f8b500;}
.joblist-title .gb:hover span{background: #fff;}
.joblist-title:hover h2{color: #83ad27;}
.job-list .job-text{padding-bottom: 50px;display: none;}
.job-list .job-text p{font-size: 16px;color: #333;line-height: 30px;}
.joblist-title.active .gb span:nth-child(1){transform: rotate(45deg);}
.joblist-title.active .gb span:nth-child(2){transform: rotate(-45deg);}
.joblist-title.active .gb{background: #f8b500;}
.joblist-title.active .gb span{background: #fff;}
.joblist-title.active h4{color: #83ad27;}

.ss-list .jq22 li .text a{font-size: 14px;color: #f8b500;}
.ss-list .jq22 li .text a:hover{color: #83ad27;}
.ss-list .jq22 li .text h4 a{font-size: 24px;color: #000;}
.ss-list .jq22 li .text h4 a:hover{color: #f8b500;}

.wap-fenlei{display: none;}

.in-banner-en .swiper-container .slide-text .text{width: 60%;}
.in-banner-en .swiper-container .slide-text h2{font-size: 40px;}
.in-flbanner-en .text h2 {font-size: 30px;}
.ny-pinpai-en .ny-pp-l {width: 50%;}
.in-dc-en .mySwiper2 .swiper-slide a figure{}


@media (min-width: 1500px){

}

@media (min-width: 1950px){
    
}

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

@media screen and (max-width:1800px){
   .cp-list-lb ul {width: 80%;}
   .cpright-top {width: 80%;}
   .cp-list-lb .paging {width: 80%;}
}

@media screen and (max-width:1700px){
    .fixed-sidebar-r{padding: 60px 5px 20px;}
   
}

@media screen and (max-width:1550px){
  .in-title h2,.in-flbanner .text h2{font-size: 3vw;}
  .expand-content{padding: 50px 4vw;}
  .section-icon {width: 75px;}
  .section-title {font-size: 35px;}
  .tag a {padding: 7px 15px;border: 1px solid #fff;font-size: 14px;}
  .fixed-sidebar .sidebar-item{padding: 10px 0;}
  .fixed-sidebar .sidebar-item.official {padding: 15px 0;}
  .fixed-sidebar-r{padding: 50px 5px 10px;background-position: 1px -13px;}
  .in-news .swiper-slide h3 {font-size: 22px;}
  .in-dc .mySwiper2 .text h3 {font-size: 18px;}
  .in-news .swiper-slide figure{height: 18vw;}
  .in-dc .mySwiper2 .swiper-slide a figure{height: 27vw;}
  .in-dc .mySwiper2 {padding: 0 6vw 80px 5vw;}

  .channel-banner{height: 500px;}
  .cp-list .news-xq .title h4 {font-size: 40px;}
  .jq22-dc .list li a .text{padding-top: 0px;width: calc(100% - 215px);}
  .gd-list-r .jq22 li .text h4 {font-size: 22px;margin: 10px 0 15px;}
  .gd-list-r .jq22-dc li a .text h4{width: 100%;}
  .joblist-title h2 {font-size: 22px;}
  .job-email .text a {font-size: 18px;}
  
  .in-case .swiper-slide .case-lf h3{padding: 25px 30px;font-size:36px;}
}

@media screen and (max-width:1500px){
  #certify .swiper-slide{width: 330px;}
  .ny-title h2 {font-size: 30px;margin: 0 0 10px;}
 
}

@media screen and (max-width:1450px){
  .section-title {font-size: 30px;margin-bottom: 20px;}
  .collapse-title{font-size: 20px;}
  .collapse-icon {width: 50px;}
  .expand-content {padding: 50px 3vw;}
  .section-desc{font-size: 14px;line-height: 25px;}
  .btn-more{gap: 30px;font-size: 14px;}
  .accordion{height: 530px;}
  .in-title {padding: 60px 0;}
  .in-news .swiper-slide time {margin: 20px 0 15px;}
  .in-news .swiper-slide h3 {font-size: 18px;}
  .in-flbanner .text p {font-size: 16px;}
  .in-flbanner .text ul li a {width: 190px;height: 45px;line-height: 45px;border: 1px solid #fff;font-size: 16px;}
  .in-flbanner{padding: 13vw 0;}
  .in-dc .mySwiper2 .text h3 {font-size: 18px;}
  .foot-nav h3 a {font-size: 18px;}
  .foot-nav p a {font-size: 14px;}
  .in-case .swiper-slide .case-lf h3{font-size:30px;}
  .in-case .swiper-slide .case-lf ul{grid-gap: 15px;}

  .channel-banner{height: 450px;}
  .channel-banner .banner-info h1 {font-size: 40px;}
  .channel-banner .banner-info p {font-size: 50px;}
  .ny-gsjj-l .text p {font-size: 16px;}
  .ny-pp-l {width: 46%;}
  .ny-pp-r ul li .text p {font-size: 20px;}
  .ny-lc .jq22 .jq22-li .title h3 {font-size: 40px;}
  .ny-lc .jq22 .jq22-li .text p {font-size: 16px;line-height: 30px;}
  .ny-zhuanjia .ny-gsjj-l {width: 65%;}
  .gd-list-l {width: 20%;}
  .gd-list-r {width: 76%;}
  .cp-list .news-xq .title h4 {font-size: 35px;}
  .gd-list-r .title {padding: 20px 0 15px;}
  .news-xq .news-box{padding: 20px 0;}
  .gd-list-l h2 {font-size: 22px;padding: 30px 0 28px;}
  .cp-list .gd-list-l ul li ul li a h4 {font-size: 14px;line-height: 22px;}
  .cp-list .gd-list-l ul li ul li a{padding: 12px 15px 12px 30px;}
  .cp-list .gd-list-l ul li ul li a::after {top: 21px;}
  .gd-list-l ul li{padding: 20px 0;}
  .news-xq .news-box p {font-size: 16px;}
  .news-xq .title h4 {font-size: 30px;}
  .gd-list-r .title {padding: 30px 0 25px;}
  .news-xq .news-box p {font-size: 16px;}
  .jq22-dc .list{grid-gap: 20px;}
  .job-email{padding: 20px 10px;}
  .job-email img {width: 26px;}
  .job-email .text p {font-size: 14px;}
  .job-email .text {width: calc(100% - 30px);}
  .job-email .text a {font-size: 16px;}
  .cplist-r {padding: 30px 0 0 25px;}
  
    
}

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

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

@media screen and (max-width:1200px){
  .in-banner{margin-top: 60px;height: calc(100vh - 60px);}
  .in-banner .swiper-container .slide-text h2{font-size: 40px;}
  .in-banner .swiper-container .slide-text p{font-size: 16px;}
  .in-banner .swiper-container .slide-text .text {width: 515px;}
  .in-banner .swiper-container .slide-text .text a {width: 140px;border: 1px solid #fff;font-size: 14px;}
  
  .section-title {font-size: 24px;}
  .section-icon {width: 50px;}
  .section-text {width: calc(100% - 80px);padding-left: 0;}
  .expand-content {padding: 30px 2vw;}
  .section-title {font-size: 20px;}
  .btn-more {gap: 25px;font-size: 14px;padding: 10px 15px;}
  .in-dc .mySwiper2 .swiper-slide .text {padding: 20px 10px;}
  .in-case .swiper-slide{flex-wrap: wrap;}
  .in-case .swiper-slide .case-lf,.in-case .swiper-slide .case-rf{width:100%;}
  .in-case .swiper-slide .case-lf{padding: 0 0 30px;}
  .in-case .swiper-slide .case-lf h3 {font-size: 24px;}
  .in-case .swiper-slide .case-lf ul li{font-size: 16px;padding: 15px 10px;}
  .cplist-l h2 {font-size: 30px;letter-spacing: 1px;}
  .cplist-l {width: 210px;}
  .cplist-r .title{font-size: 20px;padding-bottom: 10px;border-bottom-width: 1px !important;}
  .cplist-r .desc {font-size: 24px;margin-top: 10px;}
  .cplist-l a,.cplist-r .desc-title{font-size: 16px;}
  .cplist-r .desc-view .left,.cplist-r .right{padding:15px;}
  .cplist-r .right{width: calc(100% - 427px);}
  
  .channel-banner{margin-top: 60px;height: 300px;}
  .channel-banner .banner-info h2 {font-size: 30px;margin-bottom: 10px;}
  .channel-banner .banner-info span{width: 30px;height: 3px;}
  .ny-title h2 {font-size: 24px;margin: 0px 0 10px;}
  .ny-title span{width: 30px;height: 3px;}
  .flx-between-center{flex-wrap: wrap;}
  .ny-gsjj-l,.ny-pp-l{width: 100%;}
  .ny-gsjj-r,.ny-pp-r{width: 100%;margin-top: 30px;}
  .ny-lc .jq22{width: 100%;}
  .ny-lc .jq22 .jq22-li .title {width: 90px;}
  .ny-lc .jq22 .jq22-li .title h3 {font-size: 24px;}
  .ny-lc .jq22 .list::after{left: 86px;}
  .ny-lc .jq22 .jq22-li .text {width: calc(100% - 120px);padding-top: 7px;}
  .ny-lc .jq22 .jq22-li .title span {width: 8px;height: 8px;}
  .ny-lc .jq22 .more a{width: 180px;}
  .ny-gsjj{padding: 40px 0;}
  .ny-zhuanjia .ny-gsjj-l {width: 70%;}
  .zj-title h2 {font-size: 24px;line-height: 29px;}
  .zj-title h3 {font-size: 16px;}
  .ny-zhuanjia .jianjie {padding: 15px;font-size: 14px;line-height: 28px;}
  .ny-zhuanjia .ny-gsjj-l .text {padding: 15px;}
  .ny-gsjj-l .text p {line-height: 28px;font-size: 14px;}
  .ny-zhuanjia .ny-gsjj-r {width: 270px;}
  .ny-gsjj-r .ny-gsjj-dt{text-align: center;}
  .ny-contact .ny-gsjj-r{width: 100%;flex: auto;position: relative;max-height: initial;top: 0;}
  .gd-list-l{display: none;}
  .gd-list-r{width: 100%;}
  .wap-fenlei{display: block;margin: 40px auto;width: 90%;}
  .wap-fenlei .fenlei-bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #83ad27;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
  }
  .wap-fenlei .fenlei-bt h2 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
  }
  .wap-fenlei .fenlei-bt span {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
  }
  .wap-fenlei .fenlei-bt span svg {
    width: 20px;
    height: 20px;
  }
  /* 展开时箭头旋转 */
  .wap-fenlei.open .fenlei-bt span {transform: rotate(90deg);}
  /* 主列表默认隐藏 */
  .wap-fenlei > ul {display: none;overflow: hidden;}
  .wap-fenlei.open > ul {display: block;}
  /* 一级栏目 */
  .wap-fenlei > ul > li {border-bottom: 1px solid #eee;display: flex;justify-content: space-between;align-items: center;flex-wrap: wrap;}
  .wap-fenlei > ul > li:last-child {border-bottom: none;}
  .wap-fenlei > ul > li > h3 {margin: 0;padding: 13px 15px;}
  .wap-fenlei > ul > li > h3 a {
    flex: 1;
    font-size: 15px;
    color: #333;
    font-weight: bold;
  }
  .wap-fenlei > ul > li.active > h3 a {color: #83ad27;}
  .wap-fenlei > ul > li .nav-toggle {
    width: 13px;
    height: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-right: 19px;
  }
  /* 展开时 toggle 图标旋转 */
  .wap-fenlei > ul > li.expanded .nav-toggle {transform: rotate(90deg);}
  /* 二级栏目默认隐藏 */
  .wap-fenlei .nav-sub {display: none;background: #fafafa;width: 100%;}
  .wap-fenlei .nav-sub.open,
  .wap-fenlei > ul > li.expanded > .nav-sub {display: block;}
  .wap-fenlei .nav-sub li {margin: 0 15px;}
  .wap-fenlei .nav-sub li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0 11px 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  .wap-fenlei .nav-sub li:last-child a {border-bottom: none;}
  .wap-fenlei .nav-sub li h4 {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin: 0;
  }
  .wap-fenlei .nav-sub li.on h4 {color: #83ad27;}
  .wap-fenlei .nav-sub li a span img {width: 16px;height: 16px;}
  .gd-list {padding-top: 0px;padding-bottom: 40px;}
  .cp-list .news-xq .title h4 {font-size: 24px;}
  .gd-list-r .title h3 {font-size: 24px;}
  .gd-list-r .jq22 li figure {width: 220px;}
  .gd-list-r .jq22 li .text{width: calc(100% - 240px);}
  .gd-list-r .jq22 li .text h4 {font-size: 18px;margin: 10px 0 15px;}
  .gd-list-r .jq22 .more a{width: 180px;}
  .news-xq .title h4 {font-size: 24px;}
  .news-box-btn p {font-size: 14px;}
  .jq22-dc .list {grid-template-columns: repeat(1, 1fr);}
  .gd-list-r{margin-top: 30px;}
  .job-list .gd-list-l{display: block;width: 100%;margin-top: 40px;}
  .job-list .gd-list-box{flex-wrap: wrap;}
  .job-email{width: 98%;}
  .job-list .job-zwsx h3 {font-size: 18px;padding: 20px 0 20px;width: 95%;}
  .job-list .job-zwsx .job-box{width: 95%;padding: 15px 0;font-size: 14px;}
  .joblist-title {height: 80px;}
  .job-list .gd-list-r .jq22 li {width: 97%;padding: 0 15px;}
  .joblist-title h2 {font-size: 16px;}
  .joblist-title .dizhi p {font-size: 14px;}
  .joblist-title .gb {width: 30px;height: 30px;}
  .joblist-title .gb span {width: 13px;margin: 15px auto 0;}
  .job-list .job-text p {font-size: 14px;line-height: 28px;}
  .ny-contact{padding-bottom:140px;}
  .job-list .gd-list-r{width: 100%;}

}

@media screen and (max-width:1024px){
  .in-banner{height: 500px;}
  .in-banner .swiper-container .slide-text h2 {margin-bottom: 20px;font-size: 30px;line-height: 40px;}
  .in-banner .swiper-container .slide-text p{font-size: 14px;}
  .in-banner .swiper-container .slide-text .text {width: 451px;}
  .in-banner .swiper-container .slide-text .text a{height: 40px;line-height: 40px;}
  .fixed-sidebar-r {padding: 30px 5px 10px;width:40px;background-position:-10px -28px;background-size: 50px auto;}
  .fixed-sidebar .sidebar-item a p{display: none;}
  .fixed-sidebar .tip-text{padding: 0 10px;}
  .fixed-sidebar .sidebar-item.official h4 {font-size: 12px;}
  .fixed-sidebar .sidebar-item.official img {width: 37px;}
  .fixed-sidebar .sidebar-item a figure img{width: 20px;}
  .foot-nav{display: none;}
  .foot-bq-text{flex-wrap: wrap;}
  .foot-bq-l{text-align: center;margin-bottom: 10px;width: 100%;font-size: 14px;}
  .foot-bq-r{margin-bottom: 0;}
  .in-news .swiper-slide figure{height: 31vw;}
  .in-dc .mySwiper2 .swiper-slide a figure {height: 62vw;}
  .in-news .mySwiper .swiper-pagination .swiper-pagination-bullet{width: 16%;}
   
  .ny-zhuanjia .ny-gsjj-l {width: 65%;}
  
   
}

@media screen and (max-width:910px){
  .accordion {flex-direction: column;height: auto;}
  .accordion-item {min-height: 72px;flex: none !important;margin-bottom: 10px;}
  .accordion-item.active {min-height: 420px;}
  .section-icon{display: none;}
  .section-text{width: 100%;}
  .collapse-content {flex-direction: row;padding: 18px 20px;}
  .collapse-title {writing-mode: horizontal-tb;letter-spacing: 0px;}
  .expand-content {padding: 32px 24px;}
  .in-flbanner .text ul li{width: 23%;}
  .in-flbanner .text ul li a{width: 100%;}
  .in-flbanner .text ul{gap: 10px;}
  
  .cplist-bj .flx-between-stretch{flex-wrap: wrap;}
  .cplist-l {width: 100%;height: auto;min-height: auto;justify-content: left;}
  .cplist-l a{display:none;}
  .cplist-l h2{text-align: left;font-size: 24px;line-height: 30px;}
  .cplist-l .text {width: 100%;padding: 20px 15px;text-align: left;}
  .cplist-l .text-p {display:none;}
  .cplist-r {padding: 10px 0 0 0px;}
  .cplist-r .desc-view .left, .cplist-r .right{width: 47%;}
  .cplist-bj{padding-bottom: 30px;}
  .cplist-r .title {font-size:18px;}
  .cplist-r .desc {font-size: 18px;}
  .cplist-r .desc-view .left .desc-text{line-height: 25px;}
  .yewu-title li h4 {line-height: 25px;}
}

@media screen and (max-width:780px){
  .in-title {padding: 40px 0;}
  .in-title h2, .in-flbanner .text h2{font-size: 24px;}
  .accordion-item.active {min-height: 520px;}
  .collapse-title {font-size: 18px;}
  .collapse-icon {width: 40px;}
  .in-news .mySwiper .swiper-button-prev,.in-dc .mySwiper2 .swiper-button-prev,.in-khjz .mySwiper4 .swiper-button-prev,.in-case .mySwiper3 .swiper-button-prev{left: 0;right: auto;}
  .in-flbanner .text p {margin: 20px 0;font-size: 14px;}
  .in-flbanner .text ul li a{height: 40px;line-height: 40px;font-size: 14px;}
  .footer{padding-top: 50px;}
  .foot-logo img {height: 30px;}
  .foot-l .text {padding-left: 43px;}
  .foot-l .text p {font-size: 14px;margin: 15px 0 5px;}
  .foot-l .text a {font-size: 18px;}
  .foot-ewm{width: 100px;padding-bottom: 5px;}
  .foot-bq{margin-top: 50px;}
  .foot-bq-text{padding: 20px 0;}
  .in-news .swiper-slide h3,.in-dc .mySwiper2 .text h3 {font-size: 16px;}
  .fixed-sidebar-r{background-image: none;padding: 10px 5px;}
  .in-news .mySwiper .swiper-pagination,.in-dc .mySwiper2 .swiper-pagination,.in-case .mySwiper3 .swiper-pagination,.in-khjz .mySwiper4 .swiper-pagination{text-align: center;width: 100%;margin: 0 auto;}
  .in-news .mySwiper .swiper-pagination .swiper-pagination-bullet,.in-dc .mySwiper2 .swiper-pagination .swiper-pagination-bullet,.in-khjz .mySwiper4 .swiper-pagination .swiper-pagination-bullet,.in-case .mySwiper3 .swiper-pagination .swiper-pagination-bullet{width:8px;height: 3px;border-radius: 30px;margin: 0 3px;}

  .ny-gsjj{padding: 40px 0;}
  .ny-gsjj-l .text p,.ny-pp-l .text p {font-size: 14px;line-height: 25px;}
  .ny-gsjj-box{flex-wrap: wrap;}
  .ny-zhuanjia .ny-gsjj-l{width: 100%;}
  .ny-zhuanjia .ny-gsjj-r{width: 100%;margin-top: 30px;text-align: center;}
  .ny-zhuanjia .ny-gsjj-r img{max-width: 100%;width: auto;}
  .ny-lxwm li{padding: 15px 10px;}
  .ny-lxwm li:hover {border: 2px solid #83ad27;}
  .ny-lxwm li::after {top: 19px;width: 2px;height: 18px;left: -2px;}
  .ny-lxwm li .text a {font-size: 14px;}
  .ny-lxwm li h2 {font-size: 16px;margin: 0 0 15px;}
  .news-xq .title-btn ul{flex-wrap: wrap;width:100%;padding-left:0px;}
  .news-xq .title h4 {font-size: 18px;}
  .ny-contact{padding-bottom: 140px;}
  .cplist-r .desc-view{flex-wrap: wrap;}
  .cplist-r .desc-view .left, .cplist-r .right{width: 100%;}
  .cplist-r .desc-view .left{margin-bottom:20px;}
  
  .in-case .swiper-slide .case-lf ul{padding: 0 15px;}
  .in-case .swiper-slide .case-lf h3 {padding: 25px 15px;}
  .in-case .swiper-slide .case-lf ul li {font-weight: 400;font-size: 14px;}
  .in-khjz .mySwiper4 .swiper-slide .khjz-logo p{font-size: 14px;}
  .in-khjz .mySwiper4 .swiper-slide .khjz-logo img{height: 25px;}
  .in-khjz .mySwiper4 .swiper-con{width: 92%;padding: 10px;}
  .in-khjz .mySwiper4 .swiper-slide figure{height: 45vw;}
  .in-khjz .mySwiper4 .swiper-slide .text-p p {font-size: 14px;line-height: 25px;}
  .news-xq .news-box img {height: auto !important;}
      .in-dc .mySwiper2 .swiper-slide a figure {
        height: 118vw;
    }

}

@media screen and (max-width:640px){ 
  .in-banner .swiper-container .slide-text p{opacity: 1;}
  .expand-content {padding: 20px 15px;}
  .accordion-item.active {min-height: 590px;}
  .in-news .swiper-slide figure {height: 60vw;}
  .in-news{padding-bottom: 40px;margin-top: 40px;}
  .in-news .mySwiper {padding-bottom: 60px;}

  .channel-banner{height: 250px;}
  .channel-banner .banner-info {padding-bottom: 30px;}
  .channel-banner .banner-info p {font-size: 35px;margin-top: -27px;}  
  .channel-banner .banner-info h1 {font-size: 30px;}
  .ny-title {padding-bottom: 20px;}
  .ny-gsjj{margin-bottom: 40px;}
  .ny-pp-r ul {grid-template-columns: repeat(2, 1fr);gap: 15px;}
  .ny-pp-r ul li .text {padding: 20px 10px;width: 92%;}
  .ny-pp-r ul li .text p {font-size: 16px;}
  .ny-lc .jq22 .jq22-li .title h3 {font-size: 18px;}
  .ny-pp-l .ny-pp-a a{width: 80%;}
  .ny-baogao {margin-top: 20px;}
  .ny-baogao h3 {font-size: 20px;margin: 0 0 15px;}
  .ny-baogao .ny-baogao-bdf a span img {margin-right: 5px;}
  .ny-baogao .ny-baogao-bdf a {padding: 0 10px;}
  .ny-pp-r ul li figure{height: 60vw;}
  .ny-lc {margin-top: 40px;padding-top: 40px;padding-bottom: 50px;}
  .ny-lc .jq22 .list::after{display: none;}
  .ny-lc .jq22 .jq22-li{flex-wrap: wrap;}
  .ny-lc .jq22 .jq22-li .title{width: 100%;}
  .ny-lc .jq22 .jq22-li .title span{display: none;}
  .ny-lc .jq22 .jq22-li .title h3 {color: #83ad27;font-size: 20px;}
  .ny-lc .jq22 .jq22-li .text{width: 100%;}
  .ny-lc .jq22 .jq22-li .text p {font-size: 14px;line-height: 27px;}
  .ny-lc .jq22 .more a,.gd-list-r .jq22 .more a{width: 130px;height: 35px;line-height: 35px;font-size: 14px;}
  .ny-lc .jq22 .more p,.gd-list-r .jq22 .more p{line-height: 35px;font-size: 14px;}
  .ny-zhuanjia,.ny-contact{margin: 0 auto;}
  .gd-list-r .jq22 li .text p{-webkit-line-clamp: 1;}
  .gd-list-r .jq22 li figure {width: 150px;}
  .gd-list-r .jq22 li .text {width: calc(100% - 160px);}
  .gd-list-r .jq22 li .text h4 {font-size: 16px;margin: 5px 0 5px;}
  .jq22-dc .list li a figure{width: 100%;height: auto;margin-bottom:10px;}
  .jq22-dc .list li a .text{width: 100%;}
  .joblist-title .gb{display: none;}
  .gd-list-r .jq22 li time{display: none;}
  .ppyxl-ul {grid-template-columns: repeat(2, 1fr);}
  .ppyxl-ul li figure{height: 140px;}
  
}

@media screen and (max-width:510px){
  .in-title h2{width:60%;}
  .in-title a {font-size: 14px;}
  .in-dc .mySwiper2 .text h3{overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}

  .gd-list-r .jq22 li a{flex-wrap: wrap;}
  .gd-list-r .jq22 li figure{width: 100%;height: auto;margin-bottom:10px;}
  .gd-list-r .jq22 li .text{width: 100%;}
  .ppyxl-ul {grid-template-columns: repeat(1, 1fr);}
  .ppyxl-ul li figure{height:auto;}




}

@media screen and (max-width:480px){
  .accordion-item.active {min-height: 700px;}
  .in-flbanner .text ul{flex-wrap: wrap;}
  .in-flbanner .text ul li{width: 48%;}
  .foot-l .text {padding-left: 0px;}
  .foot-logo img {height: 25px;}
  .foot-box{align-items: center;}
  
      .ny-contact {
        padding-bottom: 230px;
    }
 .ny-gsjj-r .ny-gsjj-img2{bottom: -160px;}
}

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