/* CSS Document*/
/* @font-face {
  font-family: 'HWMC';
  src:url('../fonts/huiwenmincho.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
* {
  padding: 0px;
  margin: 0px;
  outline: 0 none;
}

a {
  text-decoration: none;
  color: #666;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

a:hover {
  color: #b03722;
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  vertical-align: bottom;
  zoom: 1;
}

img {
  border: 0px;
}

select {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
}

textarea {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

th,
td {
  padding: 0;
}

input {
  vertical-align: middle;
  outline: none;
  font-size: 12px;
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  margin: 0px;
}

p {
  margin: 0px;
}

em,
i {
  font-style: normal;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}

body {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  background: #fff;
  color: #666;
  font-size: 12px;
  min-width: 1200px;
}

.container {
  margin: 0px auto;
  width: 90%;
  max-width: 1600px;
}

.top {
  height: 90px;
  position: fixed;
  z-index: 999;
  top: 0px;
  width: 100%;
  transition: all 0.5s ease 0s;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7);
}


.top .container {
  display: flex;
  justify-content: space-between;
}

.top .logo{
  width: 165px;
  height: 105px;
  background-color: #b03723;
	border-radius: 0px 0px 20px 20px
}

.top .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top .logo img {
  height: auto;
  width: 114px;
}

.nav {
  z-index: 10;
  display: flex;
  align-items: center;
  height: 90px;
  position: relative;
  width: calc(100% - 410px);
  padding: 0px 15px;
  box-sizing: border-box;
}

.nav .nLi {
  height: 100%;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav .nLi h3 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav .nLi h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  position: relative;
  color: #fff;
  text-transform: capitalize;
  
  border-radius: 6px;
}

.top .nav .nLi.on h3 a {
  background: #b03722;
}


.top .nav .nLi:hover h3 a {
  background: #b03722;
}

.nav .nLi .sub {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translate(-50% , 0%);
  background: rgba(0, 0, 0, 0.7);
  display: none;
  padding-bottom: 10px;
  min-width: 130px;
  border-radius: 0px 0px 5px 5px;
  overflow: hidden;
}


.nav .nLi:hover .sub {
  display: block;
}

.nav .nLi .sub a {
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  white-space: nowrap;
  text-transform: capitalize;
  color: #fff;
}

.nav .nLi .sub a:hover {
  color: #b03722;
}

.top .tel{
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  width: 250px;
  height: 90px;
  display: flex;
  align-items: center;
}

.top .tel i{
  color: #b03722;
  margin-right: 6px;
}

.phone_btn {
  float: right;
  display: none;
}

.menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.menu_cot {
  width: 70%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into .menu_cot {
  transform: translateX(0);
  transition: all 0.3s 0.2s ease;
}

.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
}

.menu_close img {
  width: 40px;
}

.menu_close a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner {
  height: auto;
}

.in_banner .swiper-slide .bj {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj img {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj .pc_img {
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.in_banner .swiper-slide .nr {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
}

.in_banner .swiper-slide .video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
}

.in_banner .swiper-slide .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_banner .swiper-slide .nr .container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  height: 100%;
  width: 80%;
}

.in_banner .swiper-slide .nr .container h2 {
  padding-right: 50px;
}

.in_banner .swiper-slide .nr .container h2 img{
  width: 450px;
  height: auto;
}


.in_banner .swiper-slide .nr .container h3 {
  font-size: 60px;
  color: #fff;
  padding: 3% 0px;
  font-weight: bold;
}

.in_banner .swiper-slide .nr .container span {
  display: flex;
}

.in_banner .swiper-slide .nr .container span a {
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  background-color: #b03722;
	box-shadow: inset 0px 0px 5px 0px 
		rgba(255, 165, 150, 0.39);
	border-radius: 6px;
  padding:10px 20px;
}

.in_banner .swiper-slide .nr .container span a i{
  margin-left: 5px;
}


.in_banner .swiper-slide .nr .container span a:hover {
  transform: translatey(-5px);
}

.in_banner .swiper-pagination {
  box-sizing: border-box;
  width: 100%;
  height:auto;
  left: auto;
  bottom: 20px; 
  display: flex;
  justify-content:center;
  box-sizing: border-box;
}

.in_banner .swiper-pagination span {
  width: 15px;
  height:15px;
  background: #fff;
  opacity: 1;
}

.in_banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #b03722;
}

.in_box{
  background: url(../images/in_box_bj.png) no-repeat;
  background-size: cover;
  height: 90vh;
}

.in_box .container{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1260px;
  margin:0px auto;
}

.in_box .container h2{
  font-size: 60px;
  color: #fff;
}

.in_box .container p{
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  padding: 30px 0px;
}

.in_box .container span img{
  width: 180px;
  height: auto;
  cursor: pointer;
}

.in_video{
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
}

.in_box1_tcimg{
width: 100%;
  max-width: 1200px;
  height: auto;
}

.in_box1{
  padding: 80px 0px;
}

.in_box1 .bt{
  font-size: 50px;
  font-weight: bold;
  color: #92724e;
  font-family: 'HWMC';
  text-align: center;
}

.in_box1 ul{
  display: flex;
  padding-top: 80px;
  margin:0px -16px;
}

.in_box1 ul li{
  width: calc(20% - 16px);
  margin: 0px 8px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.in_box1 ul li:hover{
  transform: translatey(-20px);
  transition: all 0.3s ease 0s;
}

.in_box1 ul li .img{
    position: relative;
    width: 100%;
    height: 0px;
    padding-top: 110%;
}

.in_box1 ul li .img h2{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  color: #92724e;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.in_box1 ul li .img b{
  font-size: 20px;
  color: #92724e;
  font-family: 'HWMC';
  font-weight: normal;
  position: absolute;
  top: 20px;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.in_box1 ul li .img::after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(19deg, 
		#b9a68d 0%, 
		#d8cbb4 24%, 
		#f6efda 100%);
}

.in_box1 ul li .nr{
  width: 100%;
  height: 150px;
  box-sizing: border-box;
  padding: 15px;
  background: #eee;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.in_box1 ul li .nr p{
  display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1.8;
}

.in_box1 ul li .nr i{
  display: inline-block;
  width: 2px;
	height: 16px;
	background-color: #666;
  margin: 0px 5px;
}

.di{
  background: #212329;
  color: #fff;
  padding: 30px 0px;
}

.di .container{
  max-width: 1500px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
}

.di_l{
  display: flex;
  justify-content: space-between;
  width: 780px;
  font-size: 16px;
  line-height: 2.2;
}

.di_r{
  display: flex;
}

.di_r h2{
  width: 120px;
  margin: 0px 20px;
  font-size: 14px;
}

.di_r h2 img{
  width: 100%;
  height: auto;
}

.di_r p{
  text-align: center;
  padding-top: 10px;
}

.di1{
  background: #000;
  padding:20px 0px;
  font-size: 13px;
  color: #999;
  text-align: center;
}

.di1 a{
  color: #999;
}

.ny_banner{
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ny_lj{
  padding: 40px 0px;
  font-size: 14px;
  color: #333;
}

.ny_lj a{
  color: #333;
}

.ny_lj span{
  color: #b03723;
}

.about_nr .bt{
  font-size:42px;
  font-weight: bold;
  color: #92724e;
  text-align: center;
}

.about_nr .nr{
  padding-top: 40px;
}

.about_nr .nr p{
  font-size: 16px;
  line-height: 2;
  color: #666;
  padding: 10px 0px;
}

.about_nr .nr img{
  max-width: 100%;
  height: auto;
}

.about_nr1{
  padding-top: 80px;
}

.about1_nr{
  padding: 40px 0px;
}

.about1_nr .bt{
  text-align: center;
  font-size: 50px;
  text-align: center;
  color: #92724e;
  font-weight: bold;
}

.about1_nr ul{
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about1_nr ul li{
  width: calc(50% - 10px);
  height: 180px;
  margin-bottom: 20px;
  background: #f5f5f5;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0px 5%;
  text-align: center;
}

.about1_nr ul li h2{
  font-size: 26px;
  color: #b03723;
  padding-bottom: 8px;
}

.about1_nr ul li p{
  font-size: 16px;
  color: #333;
}

.about1_nr ul li:nth-child(3),.about1_nr ul li:nth-child(6){
  width: 100%;
}

.about1_nr1{
  padding: 30px 0px;
}

.about1_nr1 .bt{
  text-align: center;
}

.about1_nr1 .bt h2{
  color: #b03722;
  font-size: 28px;
}

.about1_nr1 .bt h3{
  width: 400px;
  height: 1px;
  background: #E0E0E0;
  position: relative;
  margin: 0px auto;
  margin-top: 10px;
}

.about1_nr1 .bt h3::after{
  content: '';
  width: 120px;
  height: 3px;
  background: #b03722;
  position: absolute;
  display: block;
  top: -1px;
  left: 50%;
  transform: translate(-50% , 0);
}

.about1_nr1 .nr{
  display: flex;
  max-width: 1400px;
  margin: 0px auto;
  margin-top: 30px;
}

.about1_nr1 .nr h2{
  width: 33.3%;
  position: relative;
}

.about1_nr1 .nr img{
  width: 100%;
  height: auto;
}

.about1_nr1 .nr p{
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0px 15%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  font-size: 16px;
  color: #333;
}

.about1_nr1 .nr1{
  max-width: 1500px;
  background: url(../images/about1_bj1.png) no-repeat;
  background-size: 100% 100%;
  height: 550px;
  display: flex;
  position: relative;
}

.about1_nr1 .nr1 li{
  height: 66.6%;
  width: 24%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 0px;
  box-sizing: border-box;
  padding: 5%;
}

.about1_nr1 .nr1 li h2{
  font-size: 18px;
  color: #92724e;
  padding-bottom: 8px;
}

.about1_nr1 .nr1 li p{
  font-size: 16px;
  color: #333;
}

.about1_nr1 .nr1 li:nth-child(1){
  top:33.3%;
  left: 13%;
}

.about1_nr1 .nr1 li:nth-child(2){
  top:0%;
  left: 26%;
}

.about1_nr1 .nr1 li:nth-child(3){
  top:33.3%;
  left: 38%;
}

.about1_nr1 .nr1 li:nth-child(4){
  top:0%;
  left:50%;
}

.about1_nr1 .nr1 li:nth-child(5){
  top:33.3%;
  left: 63%;
}

.about1_nr1 .nr1 li:nth-child(6){
  top:0%;
  left: auto;
  right: 0px;
}

.about1_nr1 .nr2{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px;
  margin-top: 30px;
}

.about1_nr1 .nr2 li{
  width: calc(25% - 30px);
  margin: 0px 15px;
  margin-bottom: 30px;
  height: 260px;
  box-sizing: border-box;
  padding: 5%;
  position: relative;
  background: url(../images/about1_bj2.png) no-repeat;
  background-size: 100% 100%;
}

.about1_nr1 .nr2 li:nth-child(n+5){
background: url(../images/about1_bj3.png) no-repeat;
background-size: 100% 100%;
}

.about1_nr1 .nr2 li h2{
  font-size: 18px;
  color: #92724e;
  padding-bottom: 8px;
}

.about1_nr1 .nr2 li p{
  font-size: 16px;
  color: #333;
}

.about2_box {
  padding: 50px 0px;
  margin-bottom: 50px;
}


.about2_box .swiper-slide .img{
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  margin-bottom: -1px;
}

.about2_box .swiper-slide .img img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.about2_box .swiper-slide h2 {
  text-align: center;
  padding-top: 10px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ddd;
  height: 90px;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about2_box .swiper-pagination span {
  width:20px;
  height: 3px;
  border-radius: 5px;
}


.about2_box .swiper-pagination span.swiper-pagination-bullet-active {
  background: #b03723;
}

.pro_jj{
background: #F5F7F8;
padding-bottom: 40px;
}

.pro_list{
  display: flex;
  padding: 50px 0px;
  justify-content: space-between;
}

.pro_list_l{
  width: 260px;
  background: #F3F4F4;
}

.pro_list_l h2{
background: #B03723;
color: #fff;
font-size: 18px;
height: 60px;
box-sizing: border-box;
padding: 15px;
font-weight: bold;
}

.pro_list_l a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  font-size: 15px;
  box-sizing: border-box;
  padding: 0px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #333;
}

.pro_list_l a.on{
  color: #b03722;
}

.pro_list_l a i{
  font-size: 18px;
}

.pro_list_r{
  width: calc(100% - 300px);
}

.pro_list_r .bt{
  font-weight: bold;
  color: #333;
  font-size: 20px;
}

.pro_list_r ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
  margin-top: 30px;
}

.pro_list_r ul li{
  width: calc(25% - 20px);
  margin: 0px 10px;
  background: #f3f4f4;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.pro_list_r ul li a .img{
  width: 100%;
  height: 0px;
  padding-top: 80%;
  position: relative;
}

.pro_list_r ul li a .img img{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pro_list_r ul li a .nr{
  padding-top: 5px;
}

.pro_list_r ul li a .nr h2{
  font-size: 16px;
  color: #000;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pro_list_r ul li a .nr h3{
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.fanye{
  text-align: center;
}

.pro_detail{
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0px auto;
  padding-bottom: 50px;
}

.pro_detail_l{
  width: 50%;
  height: 400px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro_detail_l img{
 max-width: 96%;
 max-height: 96%;
 margin-left: 2%;
 margin-top: 2%;
 width: auto;
 height: auto;
}

.pro_detail_r{
  width: calc(50% - 50px);
}

.pro_detail_r h2{
  font-weight: bold;
  font-size: 20px;
  color: #b03722;
  padding-bottom: 10px;
}

.pro_detail_r p{
  font-size: 15px;
  line-height: 2;
  padding-bottom: 10px;
  display: block;
}

.pro_detail_r p strong{
  color: #333;
}

.junior_nav{
  background-color: #ffffff;
	box-shadow: 1px 1px 13px 0px 
		rgba(164, 164, 164, 0.23);
	border-radius: 10px;
  margin-top: -45px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  padding: 0px 20px;
  overflow-x: auto;
  text-align: center;
}

.junior_nav a{
  height: 90px;
  line-height: 90px;
  display: inline-block;
  font-size: 16px;
  color: #000;
  padding: 0px 2%;
  white-space: nowrap;
}

.junior_nav a.on{
  color: #b03722;
  border-bottom: 2px solid #b03722;
}

.junior_box{
  padding: 50px 0px;
}

.junior_box .bt p{
 font-size: 16px;
 color: #333;
 padding-top: 15px; 
}

.junior_box1{
  padding-bottom: 50px;
}

.junior_box1 ul li{
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.junior_box1 ul li .img{
  width: 650px;
}

.junior_box1 ul li .img img{
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.junior_box1 ul li .nr{
  width: calc(100% - 700px);
}

.junior_box1 ul li .nr h2{
  font-size: 42px;
  color: #000;
}

.junior_box1 ul li .nr h3{
  font-size: 32px;
  color: #000;
  padding: 20px 0px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.junior_box1 ul li .nr h3 span{
  padding-left: 15px;
  color: #b03722;
  font-weight: normal;
  font-size: 20px;
}

.junior_box1 ul li .nr p{
  font-size: 15px;
  line-height: 2;
}

.junior_box .nr .zsxx{
  display: flex;
  justify-content: space-between;
}

.junior_box .nr .zsxx p{
  color: #333;
}

.junior_box .nr .zsxx .left{
  width: 45%;
}

.junior_box .nr .zsxx .right{
  width: calc(55% - 40px);
}

.junior_box .nr .zsxx .right video{
  border-radius: 20px;
}

.junior1_list{
  padding: 50px 0px;
  background: #F5F7F8;
}

.junior1_list ul li{
  padding: 50px 0px;
   background: url(../images/junior1_bj.png) no-repeat left #F5F7F8;
}

.junior1_list ul li:nth-child(even){
  background: url(../images/junior1_bj.png) no-repeat right #fff;
}

.junior1_list ul li .container{
  display: flex;
  justify-content: space-between;
}

.junior1_list ul li:nth-child(even) .container{
  flex-direction: row-reverse;
}

.junior1_list ul li .left{
  width: 300px;
  padding-right: 80px;
  margin-right: 80px;
  border-right: 2px solid #ddd;
}

.junior1_list ul li:nth-child(even) .left{
  padding-left: 80px;
  margin-left: 80px;
  border-left: 2px solid #ddd;
  border-right: 0px;
}

.junior1_list ul li .left h2{
  font-size: 36px;
  font-weight: bold;
  color: #333
}

.junior1_list ul li .left b{
  display:block;
  width: 62px;
	height: 6px;
	background-color: #b03723;
  margin: 50px 0px;
}

.junior1_list ul li .left span a{
  display: inline-block;
  background-color: #b03722;
	box-shadow: inset 0px 0px 5px 0px 
		rgba(255, 165, 150, 0.39);
	border-radius: 6px;
  color: #fff;
  font-size: 18px;
  padding: 15px 25px;
}

.junior1_list ul li .left span a i{
  margin-left: 10px;
}

.junior1_list ul li .right{
  width: calc(100% - 460px);
}

.junior1_list ul li .right img{
  width: 100%;
  height: 290px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 20px;
}

.junior1_list ul li .right p{
  font-size: 15px;
  color: #333;
  line-height: 2;
}

.layout_jj{
background: #F5F7F8;
padding: 40px 0px;
}

.layout_list{
  padding: 40px 0px;
}

.layout_list ul{
  margin: 0px -30px;
  display: flex;
}

.layout_list ul li{
  margin: 0px 30px;
  width: calc(33.3% - 60px);
  background: #eee;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 5%;
  text-align: center;
}

.layout_list ul li img{
  border-radius: 50%;
  width: auto;
  max-width: 100%;
}


.layout_list ul li h2{
  font-size: 28px;
  font-weight: bold;
  color: #333;
  padding: 30px 0px;
}


.layout_list ul li span a{
  display: inline-block;
  background-color: #b03722;
	box-shadow: inset 0px 0px 5px 0px 
		rgba(255, 165, 150, 0.39);
	border-radius: 6px;
  color: #fff;
  font-size: 18px;
  padding: 15px 20px;
}

.layout_list ul li span a i{
  margin-left: 10px;
}

.layout_detail{
  display: flex;
  background-color: #ffffff;
	box-shadow: 1px 1px 30px 0px 
		rgba(164, 164, 164, 0.23);
	border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
  margin-top: -100px;
  position: relative;
}

.layout_detail .left{
  width: 45%;
  box-sizing: border-box;
  padding: 4%;
}

.layout_detail .left .bt{
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.layout_detail .left .nr p{
  font-size: 15px;
  line-height: 2;
}

.layout_detail .right{
  width: 55%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
}

.layout_detail .right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_list{
  padding: 50px 0px;
}

.news_list ul{
  margin: 0px -15px;
  display: flex;
  flex-wrap: wrap;
}

.news_list ul li{
  width: calc(33.3% - 30px);
  margin: 0px 15px;
  margin-bottom: 30px;
}

.news_list ul li a{
  background: #F5F7F8;
  display: block;
  border-radius: 22px;
  overflow: hidden;
}

.news_list ul li a:hover{
  background: #b03722;
}

.news_list ul li a .img{
  width: 100%;
  height: 0px;
  padding-top: 70%;
  position: relative;
}

.news_list ul li a .img img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
}

.news_list ul li a .nr{
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.news_list ul li a .nr .left{
  width: calc(100% - 90px);
}

.news_list ul li a .nr .left h2{
  color: #333;
  font-size: 20px;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 显示省略号 */
}

.news_list ul li a .nr .left p{
  font-size: 14px;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 显示省略号 */
}

.news_list ul li a .nr .right{
  display: flex;
  align-items: center;
  width: 90px;
}

.news_list ul li a .nr .right h2{
font-size: 36px;
color: #333;
font-weight: bold;
}

.news_list ul li a .nr .right p{
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.news_list ul li a:hover .nr .left h2{
  color: #fff;
}

.news_list ul li a:hover .nr .left p{
  color: #fff;
}

.news_list ul li a:hover .nr .right h2{
  color: #fff;
}

.news_list ul li a:hover .nr .right p{
  color: #fff;
}

.join_box1{
  padding: 50px 0px;
}

.join_bt{
  text-align: center;
}

.join_bt h2{
  color: #b03722;
  font-size: 28px;
}

.join_bt h3{
  width: 400px;
  height: 1px;
  background: #E0E0E0;
  position: relative;
  margin: 0px auto;
  margin-top: 10px;
}

.join_bt h3::after{
  content: '';
  width: 120px;
  height: 3px;
  background: #b03722;
  position: absolute;
  display: block;
  top: -1px;
  left: 50%;
  transform: translate(-50% , 0);
}

.join_bt1 h2{
  color: #fff;
}

.join_bt1 h3{
  background: #666;
}

.join_bt1 h3::after{
  background: #fff;
}

.join_box1 .nr ul{
  display: flex;
  margin: 0px -10px;
  margin-top: 80px;
}

.join_box1 .nr ul li{
  margin: 0px 10px;
  background-color: #f5f7f6;
	border-radius: 20px;
	border: solid 1px #cfcfcf;
  box-sizing: border-box;
  padding:6% 3%;
  position: relative;
}

.join_box1 .nr ul li h2{
  background-color: #b03723;
	border-radius: 8px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 10px;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translate(-50% ,0);
  width: 60%;
}

.join_box1 .nr ul li p{
  font-size: 14px;
  color: #333;
  line-height: 2;
}

.join_box2{
  padding: 50px 0px;
  background: url(../images/join_box2_bj.png) no-repeat;
  background-size: cover;
}

.join_box2 ul{
  padding-top: 50px;
  display: flex;
}

.join_box2 ul li{
  width: 25%;
  box-sizing: border-box;
  padding: 0px 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

.join_box2 ul li i{
width: 130px;
height: 130px;
border: 1px solid #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.join_box2 ul li h2{
  font-size: 20px;
  padding: 20px 0px;
  font-weight: bold;
}

.join_box2 ul li p{
  line-height: 2;
  font-size: 14px;
}

.join_box3{
  padding: 50px 0px;
}

.join_box3 ul{
  display: flex;
  padding-top: 50px;
  margin: 0px -15px;
}

.join_box3 ul li{
  width: calc(25% - 30px);
  margin: 0px 15px;
  background: #eee;
	border-radius: 20px;
  padding: 30px 0px;
}

.join_box3 ul li h2{
  text-align: center;
  padding: 0px 15px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.join_box3 ul li h3{
  padding: 15px 0px;
}

.join_box3 ul li h3 img{
  width: 100%;
  height: auto;
}

.join_box3 ul li p{
  padding: 0px 15px;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.join_box4{
  padding: 50px 0px;
}

.join_box4 .nr{
  margin-top: 50px;
  display: flex;
}

.join_box4 .nr .nr_l{
  width: 500px;
  background: url(../images/join_box4_bj.png) no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  padding: 5%;
}

.join_box4 .nr .nr_l ul li{
  border-bottom: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.join_box4 .nr .nr_l ul li:nth-last-child(1){
  border: 0px;
}

.join_box4 .nr .nr_l ul li h2{
  padding-bottom: 6px;
}

.join_box4 .nr .nr_l ul li a{
  display: inline-block;
  color: #fff;
  padding: 10px 35px;
  border: 1px solid #fff;
  margin-top: 10px;
}

.join_box4 .nr .nr_r{
  width: calc(100% - 500px);
  background: #f5f7f8;
  box-sizing: border-box;
  padding: 5% 3%;
}

.join_box4 .nr .nr_r .bt h2{
  font-weight: bold;
  font-size: 50px;
  color: #333;
}

.join_box4 .nr .nr_r .bt p{
  font-size: 12px;
  color: #333;
  font-weight: bold;
  padding: 8px 0px;
}

.join_box4 .nr .nr_r .bt h3{
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.join_box4 .nr .nr_r ul{
  padding-top: 20px;
}

.join_box4 .nr .nr_r ul li{
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  position: relative;
}

.join_box4 .nr .nr_r ul li h2{
  width: calc(50% - 10px);
}

.join_box4 .nr .nr_r ul li .text{
  width: 100%;
  height: 45px;
  background-color: #edf1f4;
	border-radius: 8px;
  border: 0px;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0px 10px;
}
.join_box4 .nr .nr_r ul li .text1{
  width: 100%;
  height: 120px;
  background-color: #edf1f4;
	border-radius: 8px;
  border: 0px;
  box-sizing: border-box;
  font-size: 14px;
  padding:10px;
}

.join_box4 .nr .nr_r ul li .yzm{
  width: auto;
  height: 45px;
}

.join_box4 .nr .nr_r ul li .btn{
  width: 147px;
	height: 50px;
	background-color: #aaacae;
	border-radius: 8px;
  color: #fff;
  font-size: 14px;
  border: 0px;
  cursor: pointer;
}

.join_box4 .nr .nr_r ul li:nth-last-child(1){
  justify-content: center;
}