:root {
  --main-color: #FED03D;
}

.omit2{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


.w1200 {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header {
  height: 85px;
}
.header .flex {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav ul {
  display: flex;
  align-items: center;
}
.header .nav ul a {
  height: 50px;
  line-height: 50px;
  display: block;
  padding: 0 20px;
  position: relative;
  font-size: 18px;
  color: #333;
}
.header .nav ul a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}
.header .nav ul a:hover::after {
  width: 100%;
}

.main_page1 {
  width: 100%;
  height: 185px;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.main_page1 h3 {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  line-height: 70px;
}
.main_page1 a {
  line-height: 36px;
  height: 36px;
  display: block;
  padding: 0 20px;
  background: #362E2B;
  font-size: 14px;
  color: #fff;
}

.grid {
  display: grid;
  gap: 20px;
}

.w1240 {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.main_title {

  margin-bottom: 40px;
}
.main_title h3 {
	  text-align: center;
  font-size: 30px;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
}
.main_title .fine {
  width: 200px;
  height: 20px;
  position: relative;
  margin: 0 auto;
}
.main_title .fine::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-1px);
  z-index: 1;
  background: var(--main-color);
}
.main_title p {
  font-size: 16px;
  color: #000;
  max-width: 800px;
  margin: 8px auto 0 auto;
}

.main_page2 {
  padding: 48px 0;
}
.main_page2 .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0 25px;
}
.main_page2 .grid .item {
  background: #F5F5F5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 6px;
}
.main_page2 .grid .item h3 {
  margin-top: 30px;
  font-size: 40px;
  color: #333;
  font-weight: bold;
}
.main_page2 .grid .item p {
  margin-top: 20px;
  padding: 0 20px;
  font-size: 14px;
  color: #808080;
  line-height: 2;
  text-align: center;
}

.main_page3 {
  padding: 138px 0;
  background-image: url(../images/banner_.jpg);
  background-size: 100% 100%;
}
.main_page3 .num_list {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 96px 0;
}
.main_page3 .num_list .item {
  text-align: center;
}
.main_page3 .num_list .item h3 {
  font-size: 72px;
  font-weight: bold;
  color: #fff;
  line-height: 80px;
}
.main_page3 .num_list .item p {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 20px;
}

.main_page4 {
  padding: 40px 0;
}
.main_page4 .main_title {
  margin-bottom: 56px;
}

.list-more {
  padding: 0 20px;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  background: #362E2B;
}
.list-more a {
  line-height: 36px;
  height: 36px;
  text-align: center;
  min-width: 110px;
  color: #fff;
  display: block;
}

.news_list {
  margin: 36px 0;
  padding: 0 20px;
  grid-template-columns: repeat(3, calc((100% - 80px) / 3));
  gap: 0 40px;
}
.news_list .item .porTbox {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 230px;
}
.news_list .item .porTbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_list .item .porTbox .showBox {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}
.news_list .item .porTbox .showBox a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 60%;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 0.5rem 0;
}
.news_list .item .porTbox .showBox a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
}
.news_list .item .porTbox .showBox a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
}
.news_list .item .porBbox {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 130px;
  padding: 20px 20px 10px;
  border: 1px solid #f2f2f2;
}
.news_list .item .porBbox .porTitle {
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.news_list .item .porBbox .proSummry {
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  margin: 10px 0;
  text-overflow: ellipsis;
}
.news_list .item .porBbox .lookDetail {
  display: flex;
  color: #777;
  height: 38px;
  line-height: 38px;
  border-top: 1px solid #e5e5e5;
  justify-content: space-between;
  align-items: center;
}
.news_list .item .porBbox .lookDetail img {
  max-width: 24px;
}
.news_list .item:hover .porTbox .showBox {
  opacity: 1;
}
.news_list .item:hover .porTbox .showBox a::after {
  width: 1.6rem;
}
.news_list .item:hover .porTbox .showBox a::before {
  width: 1.6rem;
}

.main_page5 {
  padding: 48px 0;
  background: #F0F0F0;
}
.main_page5 .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0 12px;
}
.main_page5 .grid .item {
  padding: 32px 6px;
  text-align: center;
}
.main_page5 .grid .item h3 {
  font-size: 20px;
  color: #333;
  margin-top: 30px;
  font-weight: bold;
}
.main_page5 .grid .item p {
  font-size: 14px;
  color: #808080;
  line-height: 2;
  margin-top: 20px;
  overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.main_page6 {
  padding: 138px 0;
  background-image: url(../images/banner_6.jpg);
  background-size: 100% 100%;
}
.main_page6 .main_title {
  margin-bottom: 0;
}
.main_page6 .main_title h3 {
  color: #fff;
}
.main_page6 .e_pabox {
  margin: 96px 0;
}
.main_page6 .e_pabox .editor {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.main_page6 .e_pabox .editor .img {
  max-width: 100px;
  margin: 20px auto;
}
.main_page6 .e_pabox .editor p.fir {
  width: 100%;
  font-size: 16px;
  color: #fff;
  margin: 10px 0 20px 0;
}
.main_page6 .e_pabox .editor p.se {
  width: 100%;
  font-size: 16px;
  color: #fff;
}

.news_list2 .item {
  max-height: 400px;
  overflow: hidden;
}
.news_list2 .item .porBbox .leftBox .omit1 {
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.main_page7 {
  padding: 60px 0;
}

.main_page8 {
  background: #F9F9F9;
  padding: 64px 0;
}

.firend_list {
  padding: 30px 20px 50px 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.firend_list li {
  text-align:center;
  margin: 5px;
  transition: all 0.5s;
}
.firend_list li img {
  margin: 20px 0 0px;
}
.firend_list li p{
	height:40px;
	line-height:40px;
}
.firend_list li:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 17px 25px 0px;
  z-index: 9;
}

.f_cont {
  width: 100%;
  height: 350px;
  background-image: url(../images/contactus_bottom.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-attachment: fixed;
  background-size: cover;
  padding: 64px 0;
}
.f_cont .flex {
  display: flex;
  align-items: center;
}
.f_cont .left {
  width: 100%;
  max-width: 75.9677419355%;
}
.f_cont .right {
  width: 100%;
  max-width: 24.0322580645%;
  padding: 76px 0;
  text-align: center;
}
.f_cont .right .list-more {
  background: var(--main-color);
}
.f_cont .right .list-more a {
  color: #fff;
}
.f_cont .right p {
  font-size: 16px;
  color: #fff;
  line-height: 18px;
  margin-top: 8px;
}
.f_cont .main_title {
  -moz-text-align-last: left;
       text-align-last: left;
  margin: 48px 0;
}
.f_cont .main_title h3 {
  color: #fff;
}
.f_cont .main_title p {
  color: #fff;
  margin-left: 0;
  max-width: 100%;
  text-align: left;
}
.f_cont .main_title .fine {
  margin-left: 0;
}

.footer {
  padding-top: 50px;
  padding-bottom: 20px;
  background: #000000;
}
.footer .f_logo {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}
.footer .fp {
  font-size: 14px;
  color: #999;
  line-height: 28px;
  height: 47px;
  max-width: 908px;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 20px;
  text-align: center;
}
.footer .f_add {
  width: 100%;
  max-width: 1240px;
  margin: 25px auto 30px auto;
  padding: 0 20px;
  gap: 0;
  grid-template-columns: minmax(auto, 502px) minmax(auto, 400px) minmax(auto, 298px);
}
.footer .f_add p {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin-top: 20px;
}
.footer .f_add p span {
  color: #999;
}
.footer .ffine {
  height: 20px;
  width: 100%;
  position: relative;
}
.footer .ffine::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgb(52, 52, 52);
  z-index: 1;
}
.footer .fb {
  max-width: 908px;
  width: 100%;
  margin: 10px auto 0 auto;
  padding: 0 20px;
  line-height: 25px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .fb a {
  color: #707070;
  display: block;
  margin-left: 10px;
  transition: all 0.2s;
}
.footer .fb a:hover {
  color: var(--main-color);
}

.w1400 {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.inside_banner {
  width: 100%;
}
.inside_banner img {
  width: 100%;
}

.inside_t {
  padding: 40px;
  background: var(--main-color);
}
.inside_t .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inside_t .flex h3 {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  line-height: 74.5px;
  margin-left: 75px;
}
.inside_t .flex .list-more {
  margin-right: 75px;
}

.about_page2 {
  background-image: url(../images/about_page2.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
}

.about_page1 {
  padding-top: 60px;
}
.about_page1 .w1240 {
  padding: 0 140px;
}
.about_page1 .main_title {
  margin-bottom: 0;
}

.product_page {
  padding-bottom: 40px;
}
.product_page .grid.w1240 {
  grid-template-columns: minmax(auto, 25.4032258065%) minmax(auto, 74.5967741935%);
}
.product_page .left_nav {
  margin-top: 70px;
  margin-left: 20px;
}
.product_page .left_nav ul {
  width: 100%;
  height: auto;
  overflow: visible;
  box-shadow: 0px 5px 20px 0px rgba(192, 192, 192, 0.4);
  z-index: 999;
  background-color: #fff;
}
.product_page .left_nav ul li {
  background: #fff;
  padding-left: 20px;
  height: 50px;
  line-height: 49px;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  transition: all 0.5s ease;
}
.product_page .left_nav ul li a {
  position: relative;
  color: #7b8a96;
  font-size: 18px;
  transition: all 0.5s ease;
}
.product_page .left_nav ul li a::before {
  content: "";
  display: block;
  width: 3px;
  height: 50px;
  background-color: var(--main-color);
  position: absolute;
  left: -20px;
  top: -13px;
  opacity: 0;
  transition: all 0.5s ease;
}
.product_page .left_nav ul li:hover {
  background: #f5f8fa;
}
.product_page .left_nav ul li:hover a::before {
  opacity: 1;
}
.product_page .right_page {
  margin-top: 30px;
}
.product_page .right_page .rightTit {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid rgb(240, 240, 240);
  padding-left: 20px;
}
.product_page .right_page .rightTit p {
  font-size: 16px;
  color: #000;
}
.product_page .right_page .right_ul {
  border: 1px solid #f0f0f0;
  padding: 36px 20px;
}
.product_page .right_page .right_ul .news_list {
  margin-top: 0;
  padding: 0;
}
.product_page .right_page .right_ul .news_list .item .porTbox {
  position: relative;
}
.product_page .right_page .right_ul .news_list .item .porTbox img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: initial;
  transition: all 0.5s ease;
}

.product_center {
  background: #fff;
  padding: 50px 20px;
}
.product_center .Pt_Box .leftBox {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  padding-bottom: 20px;
  margin: 0;
  padding: 0;
  width: 50%;
  height: 500px;
  overflow: hidden;
  background: #eee;
}
.product_center .Pt_Box .leftBox .pro_swiper {
  height: 100%;
}
.product_center .Pt_Box .leftBox .pro_swiper .swiper-slide {
  overflow: hidden;
}
.product_center .Pt_Box .leftBox .pro_swiper .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
}
.product_center .Pt_Box .leftBox .pro_swiper .swiper-button-next::after,
.product_center .Pt_Box .leftBox .pro_swiper .swiper-button-prev::after {
  color: #fff;
}
.product_center .Pt_Box .rightBox {
  float: left;
  padding-left: 18px;
  width: auto;
  height: auto;
  min-width: 200px;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  display: block;
  box-flex: 1;
  flex: 1;
  width: 50%;
  height: 500px;
}
.product_center .Pt_Box .rightBox .p_content {
  width: auto;
  height: auto;
  margin: 0 0 16px 0;
  padding: 0 0 36px 0;
  border-bottom: 1px solid #e8e8e8;
}
.product_center .Pt_Box .rightBox .p_content .p_title {
  font-size: 30px;
  color: #262626;
  line-height: 1;
  font-weight: bold;
}
.product_center .Pt_Box .rightBox .p_content .p_summary {
  margin: 10px 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
  color: #595959;
}
.product_center .Pt_Box .rightBox .P_thums {
  margin-top: 20px;
}
.product_center .Pt_Box .rightBox .P_thums .swiper-slide {
  border: 2px solid transparent;
  cursor: pointer;
}
.product_center .Pt_Box .rightBox .P_thums .swiper-slide-thumb-active {
  border-color: var(--main-color);
}
.product_center .Pb_Box {
  width: 100%;
  height: auto;
  overflow: visible;
  margin-top: 20px;
}
.product_center .Pb_Box .d_TabTitleBox {
  width: 100%;
}
.product_center .Pb_Box .d_TabTitleBox .e_RelationBtn {
  height: 45px;
  text-align: center;
  padding: 0 25px;
  cursor: pointer;
  float: left;
  width: auto;
}
.product_center .Pb_Box .d_TabTitleBox .e_RelationBtn:hover {
  color: #1890ff;
  border-bottom: 2px solid #1890ff;
}
.product_center .Pb_Box .d_TabTitleBox .e_RelationBtn.active {
  color: #1890ff;
  border-bottom: 2px solid #1890ff;
}
.product_center .Pb_Box .d_TablePublic {
  border-top: 1px solid #d9d9d9;
}
.product_center .Pb_Box .contentDiv {
  padding: 10px 0;
  display: block;
}
.product_center .Pb_Box .contentDiv.hide {
  display: none;
}
.product_center .Pb_Box .contentDiv .reset_style {
  padding: 20px;
  font-size: 14px;
  color: #595959;
  line-height: normal;
}
.product_center .Pb_Box .contentDiv .reset_style h3{
	text-align:center;
	font-size:24px;
	font-weight:600;
}
.product_center .Pb_Box .contentDiv .reset_style ul{
	display:flex;
	    flex-wrap: wrap;
}
.product_center .Pb_Box .contentDiv .reset_style ul li{
	width:25%;
	    padding: 20px 10px;
}
.product_center .Pb_Box .contentDiv .reset_style ul li p:nth-child(2){
	font-size:16px;
	padding:10px;
	height:60px;
	background:#6BC396;
	text-align:center;
	color:#fff;
	    display: flex;
    justify-content: center;
    align-items: center;
}
.product_center .Pb_Box .contentDiv .p_ProParametersBox {
  margin: 20px;
  border: 1px solid #d9d9d9;
  min-height: 205px;
  background: #fff;
  padding: 20px;
}

.p_controlBox {
  margin: 40px 20px 0 20px;
  padding: 20px;
}
.p_controlBox .p_nextpage {
  width: 50%;
  height: auto;
  float: left;
  vertical-align: middle;
}
.p_controlBox .p_nextpage .p_nextName {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  vertical-align: middle;
  text-align: left;
}
.p_controlBox .p_nextpage .p_MinorLink {
  display: inline-block;
  vertical-align: middle;
}
.p_controlBox .p_nextpage.p_nextpageA {
  float: right;
  width: 50%;
  height: auto;
  margin: 0;
  background-color: transparent;
  overflow: hidden;
  vertical-align: middle;
  text-align: right;
}

.contact_page {
  padding: 48px 0 0;
}
.contact_page .grid.w1240 {
  grid-template-columns: 38.9348% 55.0652%;
}
.contact_page .left {
  margin-left: 2%;
}
.contact_page .left .editor {
  padding: 0 20px;
  font-size: 14px;
  color: #999;
  line-height: 2;
}
.contact_page .right {
  margin: 0 2%;
  padding: 0 40px 25px 40px;
}
.contact_page .right .e_box {
  font-size: 14px;
  color: #595959;
  padding-top: 10px;
}
.contact_page .right .e_box span {
  display: inline-block;
  line-height: 20px;
}
.contact_page .right .e_box span:first-child {
  min-width: 98px;
  text-align: right;
}
.contact_page .right .e_box span:nth-child(2) {
  font-size: 20px;
  font-weight: bold;
}
.contact_page .right .form-group {
  margin: 24px 0 15px 0;
  display: flex;
  align-items: flex-start;
}
.contact_page .right .form-group label {
  min-width: 120px;
  text-align: right;
  padding-top: 7px;
  font-size: 16px;
  color: #262626;
}
.contact_page .right .form-group label span {
  color: red;
}
.contact_page .right .form-group .e_Input {
  width: 335px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.contact_page .right .form-group .e_Input.yzm_input {
  width: 165px;
}
.contact_page .right .form-group .e_Input .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #7b7b7b;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.contact_page .right .form-group .e_Input .form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.contact_page .right .form-group .e_Input .form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact_page .right .form-group .e_Input .form-control:-ms-input-placeholder {
  color: #999;
}
.contact_page .right .form-group .e_Input .form-control::-webkit-input-placeholder {
  color: #999;
}
.contact_page .right .form-group .e_Input input.form-control {
  border-radius: 2px;
  padding-left: 7px;
  line-height: inherit;
  height: inherit;
  width: inherit;
  display: inline-block;
  background: none;
  max-width: 470px;
}
.contact_page .right .form-group .e_Input textarea.form-control {
  display: block;
  width: inherit;
  height: inherit;
  resize: none;
  height: 92px;
  padding: 6px;
  background: none;
  max-width: 470px;
}
.contact_page .right .form-group .ep_box {
  max-width: 725px;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  width: auto;
  height: auto;
  margin-top: 7px;
}
.contact_page .right .form-group .ep_box .e_radio {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  margin-right: 10px;
}
.contact_page .right .form-group .ep_box .e_radio .option {
  width: auto;
  height: auto;
  cursor: pointer;
  line-height: 100%;
}
.contact_page .right .button {
  margin: 24px 0 30px;
  margin-left: 118px;
}
.contact_page .right .button button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.news_page1 {
  padding: 36px 0;
}

.news_detailpage {
  padding: 50px 0;
}
.news_detailpage .contain {
  padding: 0 50px;
}
.news_detailpage .contain .title-box {
  padding: 0 15px;
  margin-bottom: 15px;
  font-size: 28px;
  color: #333;
  text-align: center;
}
.news_detailpage .contain .picBox {
  text-align: center;
}
.news_detailpage .contain .editor {
  font-size: 14px;
  color: #595959;
  margin: 15px 0;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.team_page {
  padding: 96px 0;
}

.team_list {
  padding: 0 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 36px;
}
.team_list li {
  margin: 20px 0;
  border: 1px solid #e8e8e8;
  padding: 10px;
}
.team_list li .picture {
  width: 100%;
}
.team_list li .picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.team_list li .content {
  margin: 20px 0;
  padding: 0 20px;
}
.team_list li .content h3 {
  text-align: center;
  font-size: 18px;
  color: #595959;
  font-weight: bold;
  line-height: 32px;
}
.team_list li .content p {
  font-size: 14px;
  color: #595959;
  line-height: 26px;
  text-align: center;
  margin-top: 16px;
}

.honor_editor {
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  line-height: 2.2;
  margin-top: 40px;
}
.honor_editor .imgs{
	display:flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.honor_editor .imgs p{
	width:30%;
	margin: 10px 0;
}

.moveBtn {
  display: none;
}

.banner .text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1000px;
  width: 70%;
  margin: 0 auto;
  transform: translateY(-50%);
}
.banner .text .wz1 {
  position: relative;
  color: var(--main-color);
  margin-bottom: 24px;
  padding: 10px 0 12px;
  font-size: 16px;
  transition: all 2s ease;
}
.banner .text .wz2 {
  color: #fff;
  font-size: 24px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: all 2s ease;
}
.banner .ctt {
  position: relative;
  width: 100%;
  height: auto;
}
.banner .ctt::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 40%;
  display: block;
  border: 10px solid rgba(255, 255, 255, 0.2);
  top: 30%;
  left: 10%;
  transition: all 2s cubic-bezier(0.42, 0, 0.58, 1);
  opacity: 0;
  transform: translate3d(-80px, 0, 0);
  z-index: 1;
}
.banner .banner-swiper .swiper-slide-active .ctt::before {
  transition-delay: 1.3s;
  transform: translate3d(0px, 0, 0);
  opacity: 1;
}
.page {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}
.page a {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span.current {
	background: #5280e0;
	border: 1px solid #5280e0;
	color: #FFFFFF;
	font-weight: bolder;
}

.about-history{
	min-height:500px;
	background-image: url(../images/historybg.jpg);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% 100%;
}
.about-history .main_title h3{
	color:#fff;
	font-size:36px;
}

.histy_swiper {
    position: relative;
    margin-top: 50px;
    padding-bottom: 60px;
    overflow: hidden;
}
.histy_swiper .line {
    position: absolute;
    width: 100vw;
    height: 1px;
    left: 50%;
    top: 82px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 1;
    background-color: #646a73;
}
.histy_swiper .gallery-thumbs {
    padding-bottom: 80px;
}
.histy_swiper .gallery-thumbs .swiper-slide {
    cursor: pointer;
}
.histy_swiper .gallery-thumbs .swiper-slide p {
    font-size: 40px;
    color: #ccc;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.histy_swiper .gallery-thumbs .swiper-slide span {
    display: block;
    margin: 0 auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #646a73;
    margin-top: 35px;
}
.histy_swiper .gallery-top .h-box {
    width: 320px;
    font-size: 120px;
    color: #fd9314;
    font-weight: bold;
}
.histy_swiper .gallery-top .p-box {
    padding-top: 20px;
    font-size: 26px;
    color: #fff;
    width: 570px;
    overflow: hidden;
    line-height: 2;
}
.histy_swiper .gallery-thumbs .swiper-slide-thumb-active span {
    background: #fd9314;
}
.project{
	margin:50px 0 20px;
	width:100%;
}
.project h3{
	width:100%;
	text-align:center;
	font-size:30px;
	margin: 20px;
	color:#666;
}
.project ul{
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
}

.project ul li{
	width:30%;
	padding:10px;
	margin:10px 0 20px;
	border: 1px solid #fff;
    box-shadow: 0px 0px 8px #f3f3f3;
	
}
.project ul li:hover{
	border-color:#26145e;
}
.project ul li .title{
	font-size:16px;
	color: #26145e;
    text-overflow: ellipsis;
    white-space: nowrap;
	overflow:hidden;
	margin: 10px ;
}

.project ul li p{
	font-size: 13px;
    color: #666;
    line-height: 2;
	overflow: hidden;
    text-overflow: ellipsis;
	word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin:0 10px;
}
 
 
.ewm{
    width: 100px;
    height: 100px;
    position: fixed;
    right: 10px;
    bottom: 20%;
	z-index: 99;
} 
.ewm span {
	display:inline-block;
	width:16px;
	height:16px;
	line-height:16px;
	text-align:center;
	background:#000;
	color:#fff;
	border-radius:50%;
	font-size: 16px;
	position:absolute;
	top:-8px;
	right:-8px;
	cursor: pointer;
}
.ewm img{
	 width: 100%;
    height: 100%;
}
 



/*# sourceMappingURL=css.css.map */