/* CSS Document */
/* 重置之前的hero区域样式 */

html body{ font-family:Arial, Helvetica, sans-serif; color:#666; }

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {
    margin: 0;
    padding: 0;
    border: none;
}
a{ color:#666;}
a:hover{ color:#FF9900;}
.c{ clear:both;}
    .hero-section {
      position: relative;
      height: 60vh;
      min-height:776px;
      overflow: hidden;
    }
    
    /* 添加Banner切换相关样式 */
    .hero-slider {
      position: relative;
      height: 100%;
      width: 100%;
    }
    
    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1;
    }
    
    .hero-slide.active {
      opacity: 1;
      z-index: 2;
    }
    
    .hero-slide.fade-out {
      opacity: 0;
      z-index: 1;
    }
    
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.1);
      transition: transform 8s ease-out;
    }
    
    .hero-slide.active img {
      transform: scale(1);
    }
    
    .hero-overlay {
      position: absolute;
      inset: 0;
      
      z-index: 1;
    }
    
    .hero-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    /* 修复文字内容区域 */
    .slide-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }
    
    .slide-content.active {
      opacity: 1;
      pointer-events: auto;
    }
    
    .slide-text-container {
      max-width: 1000px;
    }
    
    /* 文字动画样式 */
    .slide-title {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .slide-title.show {
      opacity: 1;
      transform: translateY(0);
    }
    
    .slide-description {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    }
    
    .slide-description.show {
      opacity: 1;
      transform: translateY(0);
    }
    
    .slide-buttons {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    }
    
    .slide-buttons.show {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* 增强文字可读性 */
    .text-animate {
      color: white;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    /* 按钮增强效果 */
    .hero-btn-primary {

      background-color:#FFE24C;
      color:#333;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 25px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .hero-btn-primary:hover {
      background-color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }
    
    .hero-btn-secondary {
      background-color: white;
      color: #2563eb;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    .hero-btn-secondary:hover {
      background-color: #f8fafc;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* 幻灯片指示器 */
    .slider-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }
    
    .slider-indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .slider-indicator.active {
      background: rgba(255, 255, 255, 0.9);
      transform: scale(1.2);
      border-color: rgba(255, 255, 255, 0.3);
    }
    
    .slider-indicator:hover {
      background: rgba(255, 255, 255, 0.8);
      transform: scale(1.1);
    }
    
    /* 幻灯片导航箭头 */
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 24px;
      z-index: 10;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .hero-section:hover .slider-nav {
      opacity: 1;
    }
    
    .slider-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .slider-btn:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .slider-btn:active {
      transform: translateY(0);
    }
    
    /* 幻灯片计数器 */
    .slider-counter {
      position: absolute;
      bottom: 30px;
      right: 40px;
      color: white;
      font-size: 14px;
      font-weight: 500;
      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(4px);
      padding: 6px 12px;
      border-radius: 20px;
      z-index: 10;
    }
    
    /* 主要内容区域样式 */
    .section-padding {
      padding: 80px 0;
    }
    
    /* 响应式调整 */
    @media (max-width: 768px) {
      .hero-section {
        height: 50vh;
        min-height: 400px;
      }
      
      .slide-text-container {
        max-width: 90%;
      }
      
      .slider-nav {
        padding: 0 16px;
        opacity: 1;
      }
      
      .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
      }
      
      .slider-counter {
        bottom: 20px;
        right: 20px;
        font-size: 12px;
      }
      
      .slider-indicators {
        bottom: 20px;
      }
      
      .slide-title {
        font-size: 2.5rem;
        line-height: 1.2;
      }
      
      .slide-description {
        font-size: 1.125rem;
        line-height: 1.5;
      }
	  
	 .dsp_sj_list dl dt {
        margin: 0 12px !important;
    }
	  
	  .container {
    width: 96%;
}
	  
    }
    
    @media (max-width: 640px) {
      .hero-section {
        height: 45vh;
        min-height: 350px;
      }
      
      .slider-nav {
        display: none;
      }
      
      .slide-title {
        font-size: 2rem;
        line-height: 1.2;
      }
      
      .slide-description {
        font-size: 1rem;
        line-height: 1.4;
      }
      
      .hero-btn-primary,
      .hero-btn-secondary {
        padding: 12px 20px;
        font-size: 0.875rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero-section {
        height: 40vh;
        min-height: 300px;
      }
      
      .slide-title {
        font-size: 1.75rem;
      }
      
      .slide-description {
        font-size: 0.875rem;
        margin-bottom: 20px;
      }
      
      .slide-buttons {
        flex-direction: column;
        gap: 12px;
      }
      
      .hero-btn-primary,
      .hero-btn-secondary {
        width: 100%;
        justify-content: center;
      }
    }
    
    /* 添加一些基础样式，确保内容正常显示 */
    .container {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 16px;
      padding-right: 16px;
    }
    
    .font-sans {
      font-family: 'Inter', sans-serif;
    }
    
    /* 卡片悬停效果 */
    .card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card-hover:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    /* 按钮样式 */
    .btn-primary {
      background-color: #2563eb;
      color: white;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }
    
    .btn-primary:hover {
      background-color: #1d4ed8;
    }

  

 /* 自定义样式 */
    :root {
      --primary-color: #FFCC19;
      --primary-dark: #1d4ed8;
      --secondary-color: #0ea5e9;
      --text-dark: #1f2937;
      --text-light: #6b7280;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      overflow-x: hidden;
    }
    
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
      color: #4b5563;
      font-weight: 500;
	  font-size:18px;
	  float:left;
	  margin-left:40px;
	  font-weight:bold;
    }
    
    .nav-link:hover {
      color: var(--primary-color);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: var(--primary-color);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 50;
      min-width: 200px;
      overflow: hidden;
	  margin-top:15px;
    }
    
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
	  
    }
    
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: 300px;
      background-color: white;
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 100;
      overflow-y: auto;
    }
    
    .mobile-menu.active {
      transform: translateX(0);
    }
    
    .hero-overlay {
      
    }
    
    .card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card-hover:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary {
      background-color: var(--primary-color);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    
    .btn-primary:hover {
      background-color: var(--primary-dark);
    }
    
    .section-padding {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }
    
    @media (max-width: 768px) {
      .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
      }
	  
	 
	  
    }
    
    /* 移动端菜单下拉箭头动画 */
    .mobile-dropdown-btn.active i {
      transform: rotate(180deg);
    }
    
    .mobile-dropdown-btn i {
      transition: transform 0.3s ease;
    }
    
    /* 内容区域动画 */
    .fade-in {
      animation: fadeIn 0.8s ease forwards;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* 加载优化 */
    .lazy-load {
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .lazy-load.loaded {
      opacity: 1;
    }
    
    /* 改进的响应式表格 */
    .responsive-table {
      width: 100%;
      overflow-x: auto;
    }
	
	
/*-----dsp-----*/
.dsp_content{
	width:100%;
	background:#FFD934;
	overflow:hidden;
	text-align:center;
	color:#666;
}

.dsp_content_info{
	font-size:26px;
	line-height:150%;
	padding-top:2%;
	padding-bottom:2%;
	text-align:left;
}


.dsp_sj{
	width:100%;
	overflow:hidden;
}

.dsp_sj_list{ width:100%; overflow:hidden;}
.dsp_sj_list dl{ width:90%; margin:5%; overflow:hidden; float:left;}
.dsp_sj_list dl dt{ width:33.3%; overflow:hidden; font-size:16px; text-align:center; float:left;}
.dsp_sj_list dl dt span{ font-size:60px; color:#DE252F; width:100%;}

/*-----main-----*/

.in_aboutus{ width:100%; overflow:hidden; float:left; margin-top:2%; background:#F1F1F1;}
.in_aboutus_left{ width:60%; overflow:hidden; float:left; background:#F1F1F1;}
.in_aboutus_left_r{ width:85%; overflow:hidden; float:right;}
.in_aboutus_left_r_content{ width:100%; overflow:hidden; margin-top:8%; float:left;}
.in_aboutus_left_r_info{ font-size:46px; border-bottom:2px solid #EE2A26; line-height:150%; margin-bottom:1%;display: inline-block;
  padding-bottom: 2px;}
  
.in_aboutus_left_r_info_dsp{ width:100%; font-size:18px; line-height:150%; margin-bottom:30px;}
.in_aboutus_left_ny{ width:95%; float:left; overflow:hidden; margin-top:2%;}

.in_aboutus_left_ny_tp{ width:25%; overflow:hidden; float:left; text-align:center;}
.in_aboutus_left_ny_tp img{ max-width:100%; height:auto;}
.in_aboutus_left_ny_text{ width:73%; overflow:hidden; float:right; line-height:150%; font-size:16px;}


.in_aboutus_right{ width:40%; overflow:hidden; float:left;}
.in_aboutus_right img{ width:100%; height:auto;}

.button_hs{ width:205px; height:40px; text-align:center; line-height:40px; margin-top:25px; margin-bottom:15px;}
.button_hs a{ width:205px; height:40px; text-align:center; border:1px solid #CCC; line-height:40px; background:#FFE24C; display:block;border-radius:25px;}
.button_hs a:hover{ width:205px; height:40px; text-align:center; border:1px solid #CCC; line-height:40px;background:#fff;}

.line_in{ width:100%; height:5px; background:#FFE24C;}

/*----work----*/
.work_in{ background:url(../images/work_inbg.jpg) top center no-repeat; width:100%; overflow:hidden;}
.work_in_tit{ width:100%; font-size:56px; margin-bottom:3%; margin-top:5%; text-align:center;}
.work_in_content{ width:100%; overflow:hidden; float:left; background:#F1F1F1;}
.work_in_content_left{ width:50%; float:left; overflow:hidden;}
.work_in_content_right{ width:50%; float:left; overflow:hidden;}
.work_in_box{ width:100%; background:#F1F1F1; overflow:hidden;}
.work_in_box_left{ width:50%; overflow:hidden; float:left;}
.work_in_box_left img{ width:100%; height:auto;}

.work_in_box_right{ width:50%; overflow:hidden; float:left;}

.work_in_box_right_txt{ width:78%; margin-left:5%; overflow:hidden; float:left; margin-top:6%;}
.work_in_box_right_tit{ font-size:28px; line-height:200%; margin-bottom:1%; }
.work_in_box_right_cont{ width:100%; overflow:hidden; line-height:150%; float:left; font-size:16px;}

.work_in_list{ width:100%; overflow:hidden; float:left; float:left; margin-top:5%;}

.work_in_list dl{ width:100%; float:left; overflow:hidden;}
.work_in_list dl dt{  float:left; overflow:hidden; padding-left:10px; padding-right:10px;border-right:1px solid #ccc; text-align:center;}
.work_in_list dl dt span{font-size:50px; color: #DE252F; line-height:120%; text-align:center;}




.work_in_lista{ width:100%; overflow:hidden; float:left; float:left; margin-top:5%;}

.work_in_lista dl{ width:100%; float:left; overflow:hidden;}
.work_in_lista dl dt{  float:left; overflow:hidden; padding-left:10px; padding-right:10px;border-right:1px solid #ccc; text-align:center;}
.work_in_lista dl dt span{font-size:50px; color: #DE252F; line-height:120%; text-align:center;}


.work_in_line{ width:100%; height:25px; background:#FFD600; float:left;}

.work_in_t{ width:100%; overflow:hidden; background:#F1F1F1;}

.work_in_box_right_txta{ width:78%; margin-right:5%; overflow:hidden; float:right; margin-top:6%;}

.work_in_box_right_titb{ font-size:28px; color:#333; line-height:200%; margin-bottom:1%; }


.work_in_list_a{ width:100%; overflow:hidden; float:left; float:left; margin-top:3%;}
.work_in_list_a dl{ width:100%; float:left; overflow:hidden;}
.work_in_list_a dl dt{  width:100%; float:left; overflow:hidden; text-align:center;}
.work_in_list_a dl dt span{font-size:50px; color: #DE252F; line-height:120%; text-align:center; margin-top:20px;}

.white_line{ border-right:1px solid #F1F1F1 !important;}

.link_all{ width:100%; overflow:hidden; float:left; margin:1% auto;}
.link_all_c{ width:100%; float:left; overflow:hidden; min-height:50px;}
.link_all_c span{ float:left; overflow:hidden; line-height:50px;min-height:50px;}

.link_all_c dl{ max-width:100%; float:left; overflow:hidden; min-height:50px; margin-left:20px;}
.link_all_c dl dt{ float:left; overflow:hidden; min-height:50px; margin-right:30px;}
.link_all_c dl dt img{ border:1px solid #ccc; max-width:220px;}

.in_job_t{ width:100%; overflow:hidden; float:left;}
.in_job_t_tp{ width:100%; overflow:hidden; float:left;}
.in_job_t_tp img{ width:100%; height:auto;}
.in_job_text{ width:100%; text-align:center; font-size:48px; color:#fff; font-weight:bold; position:absolute; z-index:9999; margin-top:5%;}


.button_jj{ width:285px; height:45px; line-height:45px; text-align:center;border-radius:25px; margin:20px auto; background:#D6CED9; font-size:18px; color:#333;display: inline-block;}
.button_jj span{ float:left; overflow:hidden; margin-top:10px; margin-left:25px;}

.foot_all{ width:100%; overflow:hidden; float:left; margin-top:50px;}
.foot_all_left{ float:left; overflow:hidden; margin-right:80px;}
.foot_all_left_a{ float:left; overflow:hidden; margin-bottom:30px; max-width:180px;}
.foot_all_left_a1{ float:left; overflow:hidden;margin-bottom:30px;}

.foot_all_right{ float:right; overflow:hidden;}
.foot_all_list{ width:285px; overflow:hidden; float:left; margin-right:25px;}
.foot_all_list_tit{ width:100%; height:30px; line-height:30px; border-bottom:1px solid #ccc; font-size:18px; margin-bottom:15px;}
.foot_all_dl{ width:100%; overflow:hidden; float:left;}
.foot_all_dl dl{ width:100%; overflow:hidden; float:left; font-size:14px;}
.foot_all_dl dl dt{ width:100%; line-height:150%; float:left; font-weight:400;}
.text-xl img{ max-width:260px; height:auto;}

.foot_bottom{ width:100%; overflow:hidden; border-top:1px solid #ccc; margin-top:40px; float:left; text-align:center;font-weight:400;}

.foot_bottom_t{ width:100%; line-height:30px; height:30px; text-align:center;  margin-top:15px; font-weight:400;}



/*-----ny-----*/
.about_us_banner{ width:100%; overflow:hidden; float:left;}
.about_us_banner img{ width:100%; height:auto;}
.about_us_wz{ width:100%; position:absolute; z-index:9; top:30%;}
.about_us_wz_tit{ width:100%; font-size:50px; color:#fff; line-height:110%;clear:both;}
.about_us_wz_tit span{ width:100%; font-size:14px; line-height:150%; margin-top:-15px; float:left;}


.about_mbx{ width:100%; min-height:55px; line-height:50px; background:#EBEBEB; float:left;}
.about_mbx_left{  line-height:55px; float:left; display: flex;  align-items: center; /* 垂直居中对齐 */  gap: 10px; /* 图片和文字之间的间距 */}
.about_mbx_right{ float:right; line-height:55px; overflow:hidden;}
.about_mbx_right dl{float:right; line-height:55px; overflow:hidden;display: flex;}
.about_mbx_right dl dt{ text-align:center; font-size:16px;line-height:55px; overflow:hidden; display:block;display: flex;}
.about_mbx_right dl dt a{ text-align:center; font-size:16px;line-height:55px; overflow:hidden; padding:0 20px;}
.about_mbx_right dl dt a:hover{ float:left;text-align:center; font-size:16px;line-height:55px; overflow:hidden; padding:0px 20px; background:url(../images/mbx_menu_bg.jpg) bottom center no-repeat #FFCC19; color:#fff;}

.about_mbx_right dl dt.on a{ float:left;text-align:center; font-size:16px;line-height:55px; overflow:hidden; padding:0px 20px; background:url(../images/mbx_menu_bg.jpg) bottom center no-repeat #FFCC19; color:#fff;}

.about_ny_content{
	width:100%;
	overflow:hidden;
	max-width:1497px;
	margin:0 auto;
	}


.about_ny_content_a{
	margin-top:40px;
	width:100%;
	overflow:hidden;
	float:left;
	background:url(../images/about01bg.jpg) bottom center no-repeat #F2F3F8;
	}
	
.about_ny_content_aa{
	margin-top:40px;
	width:100%;
	overflow:hidden;
	float:left;
	background:url(../images/about02bg.jpg) bottom center no-repeat #F2F3F8;
	}
	
.about_ny_content_bb{
	margin-top:40px;
	width:100%;
	overflow:hidden;
	float:left;
	
	}
	
	
.about_container{ width:96%; margin:2%; float:left; overflow:hidden;}	
.about_ny_left{ float:left; margin-right:2%; overflow:hidden; width:25%;}
.about_ny_right{width:72%; float:right; overflow:hidden;}
.about_ny_right_a{ width:20px; float:left; overflow:hidden;}
.about_ny_right_b{ float:left; overflow:hidden;float:left;width:98%; display:inline;}
.about_ny_right_tit{ font-size:26px; line-height:150%; float:left; width:98%;}
.about_ny_right_dsc{ font-size:16px; line-height:150%; overflow:hidden; font-weight:400; }
.about_ny_right_list{ width:100%; overflow:hidden; float:left; margin-top:30px; font-weight:400;}
.about_ny_right_list dl{ width:100%; overflow:hidden; float:left;}
.about_ny_right_list dl dt{ padding-right:20px; margin-right:20px; overflow:hidden; float:left; border-right:1px solid #ccc;  font-size:18px;}
.about_ny_right_list dl dt span{ font-size:40px; font-weight:bold; margin-right:5px;}

.about_ny_intro{ font-size:16px; line-height:120%; float:left; font-weight:400;}

.about_d{ width:10px; height:10px; background:#FFCC19; border-radius:50%; text-align:center; margin-top:17px;}


.about_d_left{ width:32%; overflow:hidden; float:left;}
.about_d_right{ width:65%; overflow:hidden; float:right;}

.about_d_list{ width:100%; overflow:hidden; margin-top:40px; float:left;}
.about_d_list dl{ width:100%; overflow:hidden; float:left;}
.about_d_list dl dt{ width:46%; overflow:hidden; float:left; font-size:18px; padding:2%; font-weight:400;}



.about_d_list dl dt span {
    font-size: 40px;
    font-weight: bold;
    margin-right: 5px;
}

.about_d_list_k{ width:100%; background:url(../images/f_a.jpg) top right no-repeat #F9F9F9;}
.about_d_list_k1{ width:100%; background:url(../images/f_b.jpg) top right no-repeat #FED700;}
.about_d_list_k2{ width:100%; background:url(../images/f_c.jpg) top right no-repeat #FED700;}
.about_d_list_k3{ width:100%; background:url(../images/f_d.jpg) top right no-repeat #F9F9F9;}


.about_Principle{ width:100%; overflow:hidden; float:left; margin-top:40px;}
.about_Principle_left{ width:96%; float:left; overflow:hidden; font-size:16px; overflow:hidden;}

.about_Principle_line{ width:96px; height:3px; background:#FFCC19; float:left; margin-bottom:30px; clear:both;}
.about_content{ width:100%; overflow:hidden; float:left;}
.about_content_tit{ width:100%; font-size:32px; line-height:120%; margin-bottom:20px; float:left;}
.about_content_desc{ font-size:16px; line-height:150%; float:left; overflow:hidden;}

.about_content_desc_list{ width:100%; overflow:hidden; float:left; margin-bottom:30px;}
.about_content_desc_list_left{ width:58px; overflow:hidden; float:left; margin-right:2%;}
.about_content_desc_list_right{ width:88%; overflow:hidden; float:left; width:86%;}
.about_content_desc_list_tit{ font-size:20px; line-height:150%; float:left; overflow:hidden; margin-bottom:20px;}

.about_c_line{ width:58px; background:#FFCC19; float:left; margin-top:15px; height:2px;}

.about_Principle_right{ width:28%; float:right; overflow:hidden; font-size:14px; overflow:hidden;}

.hk_content{ width:100%; overflow:hidden; margin-top:40px;}
.hk_content_tit {
    font-size: 38px;
    border-bottom: 2px solid #EE2A26;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
}


.hkpro_list{ width:100%; overflow:hidden; float:left; margin-top:40px;}
.hkpro_list dl{ width:100%; overflow:hidden; float:left;}
.hkpro_list dl dt{ min-height:358px; width:30%; overflow:hidden; float:left; background:#fff;box-shadow: 0 0 10px #ccc;    border: 1px solid #fff; text-align:center;float:left; margin:1.5%;}

.hkpro_box{ width:92%; margin:4%; overflow:hidden;}
.hkpro_box_ren{ width:100%; overflow:hidden; float:left;}
.hkpro_box_ren img{ width:100%; height:auto;}
.hkpro_box_title{ width:100%; overflow:hidden; font-size:22px; line-height:200%; text-align:center; border-bottom:1px solid #ccc; margin-top:15px; float:left;}

.hkpro_box_intro{ font-size:16px; width:100%; margin-top:15px; line-height:200%; text-align:center;}

.hkpro_box_desc{ font-size:14px; width:100%; margin-top:15px; line-height:150%; text-align:left; float:left;}


.hkpro_show{ width:100%; overflow:hidden; float:left;}

.hkpro_show_left{ width:30%; float:left; overflow:hidden;}
.hkpro_show_left img{ width:98%; height:auto; border-right:3px solid #FFCC19;}
.hkpro_show_right{ width:68%; float:right; overflow:hidden;}

.hkpro_show_tit{ width:100%; overflow:hidden; float:left; font-size:26px; line-height:150%;}
.hkpro_show_desc{ width:100%; overflow:hidden; float:left; font-size:18px; line-height:180%; margin-bottom:15px;}
.hkpro_show_content{ width:100%; overflow:hidden; float:left; font-size:16px; line-height:150%;}


.contact_all{ width:100%; overflow:hidden; float:left; margin-top:30px;}
.contact_all_tk{ width:100%; background:#EDEEF0; overflow:hidden; border-radius:5px;}
.contact_all_tk_left{ width:40%; float:left; overflow:hidden;}
.contact_all_tk_right{ width:55%; float:right; overflow:hidden;}
.contact_all_tk_right img{ width:100%; height:auto;}
.contact_content{ width:90%; margin:5%; overflow:hidden; float:left;}
.contact_content_title{ width:100%; font-size:28px; color:#E3383E; font-weight:bold; margin-bottom:20px;}
.contact_content_desc{ width:100%; font-size:18px; line-height:180%; float:left;}

.content_bottom{ width:100%; margin-top:40px;width:100%; overflow:hidden;}

.content_bottom_t1{ width:48%; float:left; overflow:hidden;background:#EDEEF0; }
.content_bottom_t2{ width:48%; float:right; overflow:hidden;background:#EDEEF0; }

.contact_bottom_t1_a{ width:100%; overflow:hidden; float:left;}
.contact_bottom_t1_a img{ width:100%; height:auto; float:left;}



/*----esg-----*/

.red_box{ width:460px; height:45px; background:#DC3515; color:#FFF; text-align:center; border-radius:25px; border:1px solid #FFF; font-size:20px; line-height:45px; margin-top:20px;}
.red_box a:hovrr{background:#fff; color:#DC3515; display:block;}

.esg_all{ width:100%; overflow:hidden; float:left; margin-top:50px;}
.esg_top_line{ width:260px; height:3px; background:#FFCC19; margin-bottom:20px;}
.esg_top_tit{ width:100%; font-size:32px; line-height:150%; float:left;}


.esg_top_content{ width:100%; font-size:16px; line-height:150%; float:left; margin-top:30px;}


.Careerst_all{ width:100%; overflow:hidden; float:left; margin-top:40px;}

.Careerst_all_tit {
    font-size:32px;
    border-bottom: 2px solid #FFCC19;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
}

.Careerst_all_tit_y{ width:100%; overflow:hidden; background:#F1F1F1; border-bottom:6px solid #FFE24C;}
.Careerst_all_tit_y_left{ width:55%; overflow:hidden; float:left;}
.Careerst_all_tit_y_right{ width:42%; overflow:hidden; float:right; margin-right:1.5%; font-size:16px;}

.Careerst_all_tit_y_right span{ font-size:24px; font-weight:bold; line-height:180%; clear:both; margin-bottom:10px; margin-top:30px; float:left; width:100%;}



.Careerst_all_a{ width:100%; overflow:hidden; float:left; margin-top:40px;}

.Careerst_all_tit {
    font-size:32px;
    border-bottom: 2px solid #FFCC19;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
}

.Careerst_all_tit_x{ width:100%; overflow:hidden; background:#F1F1F1; border-bottom:6px solid #FFE24C; float:left; }
.Careerst_all_tit_x_left{ width:42%; overflow:hidden; float:left; margin-left:1.5%; font-size:16px;}
.Careerst_all_tit_x_right{ width:55%; overflow:hidden; float:right;}


.Careerst_all_tit_x_left span{ font-size:24px; font-weight:bold; line-height:180%; clear:both; margin-bottom:10px; margin-top:30px; float:left; width:100%;}


.Careerst_Contact_our{ width:100%; overflow:hidden; float:left; background:#ECEEEF; margin-top:40px;}

.Careerst_Contact_our_tit {
    font-size:32px;
    border-bottom: 2px solid #FFCC19;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
	margin-top:40px;
}

.Careerst_Contact_our_content{ width:100%; overflow:hidden; float:left; margin-bottom:40px;}
.Careerst_Contact_our_content_left{ width:48%; margin-top:20px; background:#FFF; float:left;}
.Careerst_Contact_our_content_right{ width:48%; margin-top:20px; background:#FFF; float:right;}
.Contact_our_box{ width:90%; margin:5%; overflow:hidden; float:left;}
.Contact_our_box_left{ width:25%; float:left; overflow:hidden;}
.Contact_our_box_content{ width:53%; float:left; overflow:hidden; font-size:20px; line-height:150%; text-align:left;}
.Contact_our_box_content span{ font-size:24px; line-height:180%; float:left; clear:both; margin-top:5%;}
.Contact_our_box_right{ width:22%; float:left; overflow:hidden;}


.Apply_here{ width:100%; float:left; overflow:hidden; background:#F5EEE2;}
.Apply_here_left{ width:40%; float:left; overflow:hidden;}
.Apply_here_left img{max-width:100%; overflow:hidden; float:left;}
.Apply_here_right{ width:50%; float:left; overflow:hidden; margin-left:2%;}

.Apply_here_right_tit{ width:100%; margin-top:5%; font-size:32px; line-height:180%;}
.Apply_here_right_desc{ width:100%; font-size:20px; line-height:150%;}
.Apply_here_right_an{ width:100%; float:left; margin-top:20px;}

.news_all_cont{ width:100%; overflow:hidden; float:left; }
.news_all_cont_tit{ width:100%; font-size:40px; color:#FF9900; line-height:150%;margin-top:40px;}


.news_all_list{ width:100%; overflow:hidden; float:left;}
.news_all_list dl{ width:100%; float:left; overflow:hidden;}
.news_all_list dl dt{ width:100%; background:#F1F1F1; overflow:hidden; margin-bottom:30px; margin-top:20px; max-height:300px;}
.news_all_list dl dt img{ width:96%; height:auto; float:left;}


.news_all_list_left{ width:28%; float:left; overflow:hidden; margin:15px 0 15px 0; border-right:2px solid #FFCC19;}
.news_all_list_right{ width:68%; float:left; overflow:hidden; margin:15px 0 15px 2%;}

.news_all_tit{ font-size:24px; width:100%; line-height:180%; float:left;}
.news_all_desc{ width:100%; font-size:16px; line-height:150%; float:left;}
.news_all_time{ width:100%; font-size:12px; line-height:150%; float:left; margin-top:20px; margin-bottom:30PX;}

.news_an{ width:116px; height:40px; line-height:40px; color:#fff; font-size:14px; text-align:center; background:#FFCC19;}
.news_an a{ display:block;color:#fff; font-size:14px; text-align:center; background:#FFCC19;}
.news_an a:hover{ display:block;color:#fff; font-size:14px; text-align:center; background:#A6A6A6;}


.news_show{ width:100%; overflow:hidden; float:left; margin-top:20px;}
.news_show_tit{ width:100%; font-size:40px; line-height:180%; float:left; color:#FF9900; text-align:center;}
.news_show_data{ width:100%; float:left; overflow:hidden; border-bottom:1px dashed #ccc;border-top:1px dashed #ccc; text-align:center; line-height:250%;}

.news_show_content{ width:100%; overflow:hidden; float:left; line-height:150%; margin-top:30px; font-size:16px; margin-bottom:40px; }


.news_show_bottom{ width:100%; border-top:1px solid #ccc; float:left; overflow:hidden; margin-top:20px;}

.news_show_left{ width:80%; float:left; overflow:hidden; font-size:14px; line-height:180%; margin-top:30px;}

.news_show_right{ width:20%; float:left; overflow:hidden; font-size:14px; line-height:180%; text-align:right;margin-top:50px;}

/*-----end-----*/
/*----our work-----*/

.our_work_box{ width:100%; margin-top:160px; background:#F1F1F1; overflow:hidden; float:left;}

.our_work_box_list{ width:92%; overflow:hidden; float:left; margin:4%;}
.our_work_box_list_left{ width:46%; float:left; overflow:hidden; margin:2%;}
.our_work_box_list_left_tit{ width:100%; float:left; font-size:24px; line-height:180%; margin-bottom:15px; margin-top:20px;}
.our_work_box_list_left_desc{ width:100%; float:left; overflow:hidden; line-height:150%;font-size:16px;}


.our_work_box_list_right{ width:48%; float:right; overflow:hidden;margin:1%;}


.our_work_tit_x{ width:48%; overflow:hidden; background:#F1F1F1; border-bottom:6px solid #FFE24C; float:left; margin-bottom:40px; }
.our_work_tit_xx{ width:48%; overflow:hidden; background:#F1F1F1; border-bottom:6px solid #FFE24C; float:right; margin-bottom:40px; }
.our_work_tit_x_left{ width:96%; overflow:hidden; float:left; margin:2%; font-size:16px;}

.our_work_tit_x_left span {
    font-size: 24px;
    font-weight: bold;
    line-height: 180%;
    clear: both;
    margin-bottom: 10px;
    margin-top:10px;
    float: left;
    width: 100%;
}

/* ===== 分页样式 ===== */
.pagev {
  text-align: center;
  color: #666;
  clear: both;
}

.pagev span {
  line-height: 24px;
  padding: 0px 9px;
  display: inline-block;
  
}

.fonts {
  color: #fff;
  background-color: #FFCC19;
  border: 1px solid #FFCC19;
}

.pagev span a {
  background-color: #fff;
  color: #666;
  border: 1px solid #D9D9D9;
  line-height: 24px;
  padding: 0px 9px;
  display: inline-block;
  text-decoration: none;
  margin: 1.5em 0;
}

.pagev span a:hover {
  color: #fff;
  background-color: #FFCC19;
  border: 1px solid #FFCC19;
}



 /* 响应式调整zx */
 
	  
@media (max-width:1366px) {
    .container {
        max-width: 1260px;
    }	
	
	.text-xl img{max-width:180px;}
	.nav-link{ font-weight:400;}
	
	.in_aboutus_left_r {
    width:97% !important;
    overflow: hidden;
    float: right;
}

.in_aboutus_left_ny_tp {
    width: 20%;
    overflow: hidden;
    float: left;
    text-align: center;
}

.in_aboutus_left_r_info_dsp {
    width: 100%;
    font-size: 16px;
    line-height: 150%;
    margin-bottom:10px;
}


.in_aboutus_left_ny {
    width: 99%;
	margin-top: 1%;
}

.in_aboutus_left_ny_text{
	width:78%;
}

.in_aboutus_left_ny_text{
	line-height:150%;

}
.in_aboutus_left_r_content {
    width: 100%;
    overflow: hidden;
    margin-top: 5%;
    float: left;
}


.hero-section {
    position: relative;
    height: 60vh;
    min-height: 450px;
    overflow: hidden;
}

.in_aboutus_left_r_info {
    font-size: 42px;

}

.work_in_tit {
    width: 100%;
    font-size:50px;
    margin-bottom: 3%;
    margin-top: 5%;
    text-align: center;
}

.dsp_sj_list dl {
    width: 96%;
    margin: 5% 2%;
    overflow: hidden;
    float: left;
}

.dsp_sj_list dl dt {
	margin:0 46px;
    overflow: hidden;
    font-size: 16px;
    text-align: center;
    float: left;
	width:auto;
}

.dsp_content_info {
    font-size: 22px;
    line-height: 150%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.work_in_box_right_txt {
    width: 92%;
    margin-left: 5%;
    overflow: hidden;
    float: left;
    margin-top: 6%;
}

.work_in_box_right_cont {
    width: 100%;
    overflow: hidden;
    line-height: 150%;
    float: left;
}
.work_in_list dl dt span {
    font-size: 40px;
    color: #DE252F;
    line-height: 120%;
    text-align: center;
}



    .work_in_list dl dt {
        margin-bottom:10px;
        font-size: 13px;
    }


.work_in_box_right_txta {
    width: 92%;
    margin-right: 5%;
    overflow: hidden;
    float: right;
    margin-top: 6%;
}


.work_in_box_right_txta {
    width: 92%;
    margin-right: 5%;
    overflow: hidden;
    float: right;
    margin-top:2%;
}

.foot_all_left {
    float: left;
    overflow: hidden;
    margin-right:40px;
}

.foot_all_right {
    width: 75%;
    float: right;
    overflow: hidden;
}

.foot_all_list {
    width: 22%;
    overflow: hidden;
    float: left;
}

.in_job_text {
    width: 100%;
    text-align: center;
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    z-index: 9999;
    margin-top: 5%;
}

}


@media (max-width:1280px) {
	
	.about_ny_right {
    width: 76%;
    float: right;
    overflow: hidden;
}
.about_ny_left {
    float: left;
    margin-right: 2%;
    overflow: hidden;
    width: 20%;
}

.about_ny_right_b {
    float: left;
    overflow: hidden;
    float: left;
    width: 96%;
    display: inline;
}
.about_ny_right_list dl dt span{ font-size:32px;}

.about_d_list dl dt span {
    font-size:32px;
    font-weight: bold;
    margin-right: 5px;
}

}








@media (max-width:1024px) {
	
	.our_work_box_list_left {
    width: 58%;
    float: left;
    overflow: hidden;
    margin: 2%;
}

.our_work_box_list_right {
    width: 35%;
    float: right;
    overflow: hidden;
    margin: 1%;
}


	.news_show_tit {
    width: 100%;
    font-size: 40px;
    line-height: 130%;
    float: left;
    color: #FF9900;
    text-align: center;
}


	.news_all_tit {
    font-size:20px;
    width: 100%;
    line-height: 150%;
    float: left;
}

.news_all_time {
    width: 100%;
    font-size: 12px;
    line-height: 150%;
    float: left;
    margin-top:5px;
    margin-bottom:10px;
}

.news_an a {
    display: block;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: #FFCC19;
}

.news_all_desc {
    width: 100%;
    font-size: 14px;
    line-height: 150%;
    float: left;
}


.news_an {
    width: 116px;
    height:30px;
    line-height:30px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: #FFCC19;
}

.news_an a:hover{ display:block;color:#fff; font-size:12px; text-align:center; background:#A6A6A6;}

	.Careerst_Contact_our_content_left {
    width: 100%;
    margin-top: 20px;
    background: #FFF;
    float: left;
}

.Careerst_Contact_our_content_right {
    width: 100%;
    margin-top: 20px;
    background: #FFF;
    float: left;
}


.Apply_here_left {
    width: 100%;
    float: left;
    overflow: hidden;
}


.Apply_here_left img{
    width: 100%;
    float: left;
    overflow: hidden;
}



.Apply_here_right {
    width: 100%;
    float: left;
    overflow: hidden;
	margin-bottom:2%;
}


	.Careerst_all_tit_y_left {
    width: 100%;
    overflow: hidden;
    float: left;
	margin-bottom:2%;
}

.Careerst_all_tit_y_left img{
    width: 100%;

}

.Careerst_all_tit_y_left {
    width: 96%;
    overflow: hidden;
    float: left;
	margin-bottom:2%;
	margin-left:2%;
}

.Careerst_all_tit_y_left img {
    width: 100%;
    overflow: hidden;
    float: left;
}

.Careerst_all_tit_x_left {
    width: 96%;
    overflow: hidden;
    float: left;
	margin-bottom:2%;
}

.Careerst_all_tit_x_right {
    width: 96%;
    overflow: hidden;
    float: left;
	margin:0 2% 2% 2%;
}

.Careerst_all_tit_x_right img {
    width: 100%;
    overflow: hidden;
    float: left;
}

.Careerst_all_tit_y_right {
    width: 96%;
    overflow: hidden;
    float:left;
	margin:0 2% 2% 2%;
    
}
	.foot_all_list {
    margin-right: 22px;
}
	.yy_line{ border-right:1px solid #F1F1F1 !important;}
	.work_in_lista dl dt{width:230px;}
	
	    .in_aboutus_left_r_info {
        font-size: 32px !important;
    }
	
	.work_in_list dl dt {
    padding-left: 10px;
    padding-right: 10px;
	width:155px;
   
}
	
	    .work_in_tit {
        font-size:45px !important;     
    }
	
	    .dsp_sj_list dl dt {
        margin: 0 18px !important;
    }
	
	.logo_tt{ width:100px; height:auto;}
    .nav-link {
    position: relative;
    transition: color 0.3s ease;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    float: left;
    margin-left: 10px;
}


.hero-section {
    position: relative;
    height: 60vh;
    max-height: 350px;
    overflow: hidden;
}

.link_all_c dl dt {
    margin-right: 8px;
}

.about_ny_right_list dl dt {
    margin-bottom: 20px;
    width: 42%;
    padding-right: 20px;
    margin-right: 20px;
    overflow: hidden;
    float: left;
    border-right: 1px solid #ccc;
    font-size: 18px;
}

.about_d_left {
    width: 28%;
    overflow: hidden;
    float: left;
}

.about_d_right {
    width:70%;
    overflow: hidden;
    float: right;
}

    .about_d_list dl dt span {
        font-size: 28px;
        font-weight: bold;
        margin-right: 5px;
    }

}


  @media (max-width: 768px) {
      .container {
        min-width: 96% !important;
		max-width: 100% !important;		
    }
 
}
 
 @media (max-width: 820px) {
	 
	     .our_work_box_list_left {
        width: 96%;
        float: left;
        overflow: hidden;
        margin: 2%;
    }
	
	    .our_work_box_list_right {
        width: 98%;
        float: right;
        overflow: hidden;
        margin: 1%;
    }
	
	 .news_all_list dl dt {
    width: 100%;
    background: #F1F1F1;
    overflow: hidden;
    margin-bottom: 30px;
    margin-top: 20px;
    max-height:400px;
}

.news_show_tit {
    width: 100%;
    font-size:30px;
    line-height: 130%;
    float: left;
    color: #FF9900;
    text-align: center;
}


.news_all_cont_tit {
    width: 100%;
    font-size:30px;
    color: #FF9900;
    line-height: 150%;
    margin-top: 40px;
}
	 
	     .dsp_content_info {
        font-size:20px;
        line-height: 120%;
        padding-top: 2%;
        padding-bottom: 2%;
    }
	 
	 .hkpro_list dl dt {
    min-height: 658px;
    width: 46%;
    overflow: hidden;
    float: left;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    border: 1px solid #fff;
    text-align: center;
    float: left;
    margin: 1.5%;
}


.Careerst_all_tit_y_right span {
    font-size:20px;
    font-weight: bold;
    line-height: 180%;
    clear: both;
    margin-bottom: 10px;
    margin-top: 30px;
    float: left;
    width: 100%;
}
.Apply_here_right_tit {
    width: 100%;
    margin-top: 5%;
    font-size: 32px;
    line-height: 180%;
}

.Apply_here_right_tit {
    width: 100%;
    margin-top: 5%;
    font-size:26px;
    line-height: 180%;
}

.Careerst_Contact_our_tit {
    font-size:28px;
    border-bottom: 2px solid #FFCC19;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
    margin-top: 40px;
}

.Apply_here_right_desc {
    width: 100%;
    font-size:18px;
    line-height: 150%;
}

*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

.Careerst_all_tit {
    font-size:24px;
    border-bottom: 2px solid #FFCC19;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
}

.hk_content_tit {
    font-size:28px;
    border-bottom: 2px solid #EE2A26;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
}

      .container {
        min-width: 96% !important;
		max-width: 100% !important;
		
    }
	
	.about_d_list dl dt {
    width: 96%;
    overflow: hidden;
    float: left;
    font-size: 18px;
    padding: 2%;
	margin-bottom:20px;
}
	

	.about_mbx_right dl dt a {
    text-align: center;
    font-size: 16px;
    line-height: 55px;
    overflow: hidden;
    padding: 0 5px;
}

.about_us_wz {
    width: 100%;
    position: absolute;
    z-index: 9;
    top: 20%;
}
	
	
	.in_aboutus_right {
    width: 100%;
    overflow: hidden;
    float: left;
}
	
	.dsp_sj_list dl dt {
        margin: 0 12px !important;

        width: 210px !important;
    }
	
	.dsp_sj_list dl dt span {
    font-size:45px;
    color: #DE252F;
    width: 100%;
}

.in_aboutus_left {
    width: 100%;
    overflow: hidden;
    float: left;
    background: #F1F1F1;
}

    .work_in_tit {
        font-size:45px !important;

    }
	
	.work_in_box_left {
    width: 100%;
    overflow: hidden;
    float: left;
}

.work_in_box_right {
    width: 100%;
    overflow: hidden;
    float: left;
}

.work_in_list dl dt {
        padding-left: 10px;
        padding-right: 10px;
        width: 32% !important;
    }
    .work_in_lista dl dt {
        width: 48% !important;
		line-height:120%;
		font-size:12px
    }
	
    .in_job_text {
        font-size:22px !important;
    }
	
	    .foot_all_right {
        width: 65% !important;
    }
	    .foot_all_list {
        width: 30% !important;
		margin-right:10px !important;
		margin-bottom:15px !important;
}
.foot_all_list_tit {
    font-size: 16px !important;

}

.work_in_list_a dl dt span {
    font-size:40px !important;
}
}



@media (max-width: 480px) {
	
	.about_Principle_left {
    width: 100% !important;
    float: left;
    overflow: hidden;
    font-size: 14px;
    overflow: hidden;
}

	    .news_show_tit {
        width: 100%;
        font-size: 20px;
        line-height: 130%;
        float: left;
        color: #FF9900;
        text-align: center;
    }
.news_show_right {
    width:100%;
    float: left;
    overflow: hidden;
    font-size: 14px;
    line-height: 180%;
    text-align: left;
    margin-top:0px;
}
	.news_show_left {
    width: 100%;
    float: left;
    overflow: hidden;
    font-size: 14px;
    line-height: 180%;
    margin-top: 30px;
}
	
	    .news_all_cont_tit {
        width: 100%;
        font-size:24px;
        color: #FF9900;
        line-height: 150%;
        margin-top:20px;
    }
	
	.news_all_list_left {
    width: 100%;
    float: left;
    overflow: hidden;
    margin: 15px 0 15px 0;
    border-right: 2px solid #FFCC19;
}
	
	
	    .news_all_list dl dt {
        width: 100%;
        background: #F1F1F1;
        overflow: hidden;
        margin-bottom: 30px;
        margin-top: 20px;
        max-height: 800px;
    }
	
	
	.news_all_list_right {
    width: 100%;
    float: left;
    overflow: hidden;
    margin: 15px 0 15px 2%;
}
	
	.Contact_our_box_left {
    width:15%;
    float: left;
    overflow: hidden;
}
	.Contact_our_box_content {
    width: 50%;
    float: left;
    overflow: hidden;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
	margin-left:3%;
}


.Contact_our_box_content span {
    font-size:18px;
    line-height: 180%;
    float: left;
    clear: both;
    margin-top:2%;
}

.Contact_our_box_right {
    width: 32%;
    float: left;
    overflow: hidden;
	margin-top:-30px;
}

	.hkpro_show_left{ width:100%; float:left; overflow:hidden;}
.hkpro_show_left img{ max-width:100%; height:auto; border-right:0px; text-align:center;}
.hkpro_show_right{ width:100%; float:right; overflow:hidden; margin-top:25px;}
	
	
		 .hkpro_list dl dt {
    min-height: 658px;
    width: 95%;
    overflow: hidden;
    float: left;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    border: 1px solid #fff;
    text-align: center;
    float: left;
    margin: 3%;
}


.hk_content_tit {
    font-size:22px;
    border-bottom: 2px solid #EE2A26;
    line-height: 150%;
    margin-bottom: 1%;
    display: inline-block;
    padding-bottom: 2px;
}
	
	.about_mbx_right {
		width:100%;
    float: left;
    line-height: 55px;
    overflow: hidden;
}
	
	.about_mbx{ height:auto; overflow:hidden;}
	.about_mbx_left {
    line-height: 55px;
    float: left;
    display: flex
;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid #ccc;
}


.about_ny_right {
        width: 100%;
        float: right;
        overflow: hidden;
    }
	
	
.about_ny_left {
        float: left;
        margin-right: 2%;
        overflow: hidden;
        text-align: center;
		width:100%;
    }
.about_ny_left img{text-align: center;
		width:30%; margin:20px auto;}
		
.about_ny_right_tit {
    font-size: 22px;
    line-height: 150%;
    float: left;
    width: 98%;
}

    .about_ny_right_b {
        float: left;
        overflow: hidden;
        float: left;
        width: 88%;
        display: inline;
    }
.about_d {
    width:8px;
    height:8px;
    background: #FFCC19;
    border-radius: 50%;
    text-align: center;
    margin-top: 12px;
}

.about_mbx_right dl {
    float: right;
    line-height: 55px;
    overflow: hidden;
	float:left;
	display:block;
	width:100%;
}
.about_mbx_right dl dt{
	width:46% !important;
	float:left;
	margin-right:10px;
	border-bottom:1px solid #ccc;
	
    }
	
	
	
    .about_mbx_right dl dt a {
        text-align: center;
        font-size: 14px;
        line-height: 55px;
        overflow: hidden;
		display:block;
     
    }
	
	.about_mbx_right dl dt a:hover{ float:left;text-align:center; font-size:14px;line-height:55px; overflow:hidden;  background:url(../images/mbx_menu_bg.jpg) bottom center no-repeat #FFCC19; color:#fff;display:block; width:100%;}
	
	.about_ny_right_dsc {
    font-size: 14px;
    line-height: 150%;
    overflow: hidden;
}

    .about_ny_right_list dl dt {
        margin-bottom: 20px;
        width: 45%;
        padding-right: 20px;
        margin-right: 20px;
        overflow: hidden;
        float: left;
        border-right: 1px solid #ccc;
        font-size: 14px;
    }
	    .about_ny_right_list dl dt span {
        font-size: 24px;
    }
	
	    .about_d_left {
        width: 100%;
        overflow: hidden;
        float: left;
    }
	.about_d_left img{ width:50%; margin:20px auto;}
	    .about_d_right {
        width: 94%;
        overflow: hidden;
        float: right;
		margin-right:3%;
    }
	
.dsp_sj_list dl dt {
        margin: 10px auto !important;
        width: 100% !important;
		border-bottom:1px dashed #ccc;
    }
	    .in_job_text {
        font-size: 18px !important;
    }
	.in_aboutus_left_ny_tp {
        width: 100%;
        overflow: hidden;
        float: left;
        text-align: center;
		margin:20px auto;
		display: none;
    }
	    .in_aboutus_left_ny_text {
        width: 100%;
    }
	    .in_aboutus_left_r_info_dsp {
        width: 100%;
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 10px;
    }
	
	.in_aboutus_left_r_info {
        font-size: 24px !important;
    }
	.work_in_tit {
        font-size: 24px !important;
    }
	.work_in_box_right_tit {
    font-size: 20px;
  
    line-height: 200%;
    margin-bottom: 1%;
}
.work_in_list dl dt {
   
        width: 50% !important;
    }
	.button_hs {
    width: 205px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin: 15px auto;
  
}
    .link_all_c dl dt {
        margin-right: 8px;
		width:45%;
		margin-bottom:0px;
    }
	.link_all_c dl dt {
    float: left;
    overflow: hidden;
    min-height: 20px;
    margin-right:10px;
	margin-bottom:15px;
}

.foot_all_left {
        float: left;
        overflow: hidden;
        margin-right: 0px;
		width:100%;
		text-align:center;
		
    }
	.foot_all_right {
		padding-top:20px;
		border-top:1px dashed #CCC;
        width: 100% !important;
    }
	    .foot_all_list {
        width:45% !important;
        margin-right: 15px !important;
        margin-bottom: 15px !important;
		min-height:135px;
    }
	.foot_all_left_a1 {
    width: 100%;
    float: left;
    overflow: hidden;
    margin-bottom: 30px;
}
.foot_all_left_a {
    float: left;
	 width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
	text-align:center;
	max-width:100%  !important;
}
.foot_all_left_a img{ text-align:center  !important; margin:0 auto;}
.foot_bottom {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #ccc;
    margin-top:10px;
    float: left;
    text-align: center;
	font-size: 11px;
	margin-bottom:20px;
}
.foot_bottom_t {
    font-size: 11px;
}
    .hero-section {
        position: relative;
        height: 60vh;
        min-height:250px;
		max-height:350px;
        overflow: hidden;
    }
	.dsp_content_info {
        font-size: 18px;
        line-height: 150%;
        padding-top: 2%;
        padding-bottom: 2%;
    }
	.foot_all_dl dl {
    width: 100%;
    overflow: hidden;
    float: left;
    font-size: 12px;
}
}

@media (max-width: 480px) {
	
	.our_work_tit_x {
    width: 98%;
    overflow: hidden;
    background: #F1F1F1;
    border-bottom: 6px solid #FFE24C;
    float: left;
    margin-bottom: 40px;
}

.foot_all_left_a img{ width:50%; height:auto; text-align:center;}

.our_work_tit_xx {
    width: 98%;
    overflow: hidden;
    background: #F1F1F1;
    border-bottom: 6px solid #FFE24C;
    float: left;
    margin-bottom: 40px;
}
	
	    .about_mbx_left {
        font-size: 14px;

    }
	
	.Careerst_all_tit_x {
    width: 100%;
    overflow: hidden;
    background: #F1F1F1;
    border-bottom: 2px solid #FFE24C;
    float: left;
}
	
	.esg_top_tit {
    width: 100%;
    font-size:22px;
    line-height:120%;
    float: left;
}
	
	.content_bottom_t1 {
    width: 100%;
    float: left;
    overflow: hidden;
    background: #EDEEF0;
	margin-bottom:30px;
}

.content_bottom_t2 {
    width: 100%;
    float: left;
    overflow: hidden;
    background: #EDEEF0;
}
	
	.contact_all_tk_left {
    width: 100%;
    float: left;
    overflow: hidden;
	
}

.contact_all_tk_right {
    width: 100%;
    float: right;
    overflow: hidden;
}
	
	    .about_us_wz {
        width: 100%;
        position: absolute;
        z-index: 9;
        top:110px;
    }
	
	.contact_content_title {
    width: 100%;
    font-size: 22px;
    color: #E3383E;
    font-weight: bold;
    margin-bottom: 20px;
}

	.about_us_wz_tit span {
    width: 100%;
    font-size: 12px;
    line-height: 150%;
    margin-top: -15px;
    float: left;
}
	.about_us_wz_tit {
    width: 100%;
    font-size:24px;
    color: #fff;
    line-height: 110%;
    clear: both;
}

	    .in_job_text {
        font-size: 16px !important;
    }
	
	.button_jj {
    width: 225px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 25px;
    margin: 10px auto;
    background: #D6CED9;
    font-size: 14px;
    color: #333;
    display: inline-block;
}

.in_job_t_tp img {
    
	min-height:110px !important;
    float: left;
}

.button_jj img{ width:60%; height:auto;}


.work_in_list_a dl dt {
    line-height: 120%;
	font-size:12px;

}


    .work_in_box_right_cont {

        overflow: hidden;
        line-height: 120%;
        float: left;
    }
	
	    .in_aboutus_left_ny_text {
        width: 100%;
		line-height:120%;
    }
	

｝

@media (max-width:1260px) {
	
.container {
        min-width: 1200px !important;
    }
.nav-link {
    font-size: 16px !important;
}


    .dsp_sj_list dl dt {
        margin: 0 18px !important;
  
    }

}