/* head */
/* head */
.head {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: var(--head-height);
  padding: 0 0.3rem;
}
.head .xl_bg {
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0;
  background-color: var(--main-color);
  backdrop-filter: blur(40px);
  opacity: 0.8;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0px;
  background-color: #000;
  opacity: 0.8;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo {
  height: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.head .logo .img {
  position: relative;
  height: 50%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo img {
  display: block;
  height: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.head .logo img.logo1 {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}
.head .nav {
  height: 100%;
}
.head .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.head .nav li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 0 0.2rem;
}
.head .nav li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 42px;
  padding: 0 0.05rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li > a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  height: 1px;
  width: 0px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li dl {
  position: absolute;
  top: var(--head-height);
  left: 50%;
  padding: 5px;
  visibility: hidden;
  opacity: 0;
  padding-bottom: 20px;
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li dd {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0s;
}
.head .nav li dd a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 2.5;
  padding: 0;
  color: #fff;
  /* min-width: 100px; */
  white-space: nowrap;
  text-align: center;
  opacity: 0.6;
}
.head .nav li dd a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
  opacity: 0.8;
  transition: all 0.3s;
}
.head .nav li:hover > a {
  opacity: 1;
}
.head .nav li:hover > a:after {
  width: 100%;
  left: 0;
  right: auto;
}
.head .nav li:hover dl {
  /* top: var(--head-height); */
  visibility: visible;
  opacity: 1;
}
.head .nav li:hover dd {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.3s;
}
.head .nav li dd a:hover {
  opacity: 1;
}
.head .nav li dd a:hover::after {
  width: 100%;
}
.head .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  /* padding: 0 0.5rem; */
}
.head .btn .search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.head .btn .search i {
  font-size: 28px;
  margin-right: 5px;
}
.head .btn .menu_btn {
  display: none;
}

/* 下拉样式 */
.head.on1:after {
  height: 100%;
}
.head.on1 .logo {
  padding-top: 0;
}
.head.on1 .logo .img {
  height: 40%;
}
.head.on2:after {
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.head.on2 .logo img.logo1 {
  opacity: 1;
}
.head.on2 .logo img.logo2 {
  opacity: 0;
}
.head.on2 .nav li a {
  color: #333;
}
.head.on2 .nav li a:after {
  background-color: #333;
}
.head.on2 .btn .search {
  color: #333;
}
.head.on2 .btn .search i {
  color: var(--main-color);
}

/* serach */
.head_search {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 45px;
  width: 768px;
  max-width: 90%;
  /* height: 140px; */
}
.head_search form {
  position: relative;
}
.head_search input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ddd;
  outline: 0;
  padding: 0 70px 0 20px;
  font-size: 14px;
  color: #666;
}
.head_search button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  border: 0px;
  font-size: 22px;
  cursor: pointer;
  background-color: #ccc;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.head_search button:hover {
  color: #fff;
  background-color: var(--main-color);
}
.head_search .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.head_search .close:after,
.head_search .close:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  line-height: 20px;
  background-color: #999;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.head_search .close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search_bg {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.mob_page_nav {
  display: none;
}
.menu {
  display: none;
}

/* index */
.index_bg {
  display: block;
  /* background-color: #fafafa; */
  margin-top: 0px;
}

.inbanner {
  position: relative;
}
/* .inbanner::before{
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--head-height);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.inbanner::after{
  content: "";
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--head-height);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .3) 100%);
} */

.inbanner .swiper-slide a {
  position: relative;
  display: block;
  background-color: #fff;
  height: 100vh;
}
.inbanner .swiper-slide img.img1{
  display: block;
}
.inbanner .swiper-slide img.img2{
  display: none;
}
.inbanner .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  /* object-fit: cover; */
  -o-object-fit: none;
  object-fit: none;
  opacity: 1;
}

.inbanner .swiper-slide {
  position: relative;
}

.inbanner .banner_btn {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  left: 0px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: centerIndustrial field;
  align-items: center;
  padding: 0 3% 10px;
}

.inbanner .banner_btn .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inbanner .banner_btn .btn .banner_prev,
.inbanner .banner_btn .btn .banner_next {
  font-size: 14px;
  /* font-weight: bold; */
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  cursor: pointer;
}

.inbanner .banner_btn .btn .loading {
  position: relative;
  height: 2px;
  width: 100px;
  margin: 0 15px;
  background-color: rgba(255, 255, 255, 0.3);
}

.inbanner .banner_btn .btn .loading .bt {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  background-color: #fff;
}

.inbanner .banner_btn .swiper-pagination {
  position: relative;
  bottom: 0;
  width: auto;
  height: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.inbanner .banner_btn .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: 0;
  margin-right: 10px;
  opacity: 0.5;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.inbanner .banner_btn .swiper-pagination .swiper-pagination-bullet-active {
  height: 16px;
  opacity: 1;
}

.intl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.intl h3 {
  font-size: 56px;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.05rem;

  background: -webkit-linear-gradient(45deg, var(--main-color2) 0%, var(--main-color3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--main-color);
  margin-bottom: 0.1rem;
}
.intl h5 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.intl a {
  display: block;
  font-size: 15px;
  color: #333;
  border: 1px solid #ccc;
  padding: 10px 30px;
  transition: all 0.3s;
}
.intl a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.inabout {
  padding: 1rem 0 1.5rem;
  background-color: #fafafa;
  background: url(../images/inabout_bg.jpg) no-repeat right bottom #fafafa;
  background-size: auto 90%;
}
.inabout .box1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.inabout .box1 .left {
  display: flex;
  width: 50%;
}
.inabout .box1 .num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-right: 150px;
}
.inabout .box1 .num::after {
  content: "";
  position: absolute;
  top: 0;
  right: -75px;
  width: 2px;
  height: 100%;
  background-color: #333;
}
.inabout .box1 .num span {
  display: block;
  font-size: 65px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 10px;
}
.inabout .box1 .num p {
  font-size: 25px;
  line-height: 1;
  color: var(--main-color);
}
.inabout .box1 .text {
  padding: 5px 0;
}
.inabout .box1 .text .tl {
  font-size: 28px;
  line-height: 40px;
  height: 40px;
  color: #333;
  vertical-align: bottom;
  margin-bottom: 20px;
}
.inabout .box1 .text .tl span {
  display: inline-block;
  font-size: 16px;
  color: #888;
  margin-left: 5px;
}
.inabout .box1 .text p {
  font-size: 15px;
  line-height: 20px;
  color: #666;
}
.inabout .box1 a.more {
  display: block;
  font-size: 15px;
  color: #333;
  border: 1px solid #888;
  padding: 10px 30px;
  transition: all 0.3s;
}
.inabout .box1 a.more:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}
.inabout .box2 {
  width: 50%;
}
.inabout .box2 h3 {
  font-size: 25px;
  color: #333;
  margin-bottom: 10px;
}
.inabout .box2 h4 {
  font-size: 42px;
  color: #333;
}
.inabout .box2 .hx {
  position: relative;
  left: -25%;
  display: block;
  width: 125%;
  height: 1px;
  background-color: #ccc;
  margin: 35px 0;
}
.inabout .box2 p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 80px;
}
.inabout .box2 ul {
  display: flex;
}
.inabout .box2 ul li {
  display: flex;
  margin-right: 1rem;
  align-items: center;
}
.inabout .box2 ul li i {
  display: block;
  font-size: 56px;
  line-height: 1;
  background: -webkit-linear-gradient(45deg, var(--main-color2) 0%, var(--main-color3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--main-color2);
  margin-right: 10px;
}
.inabout .box2 ul li span {
  display: block;
  font-size: 24px;
  color: var(--main-color);
}
.inabout .box2 ul li span font {
  display: inline-block;
  font-size: 15px;
}
.inabout .box2 ul li h5 {
  font-size: 15px;
  color: #333;
}

.inys{
  position: relative;
  padding: .8rem 0 .2rem;
}
.inys::after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #fafafa;
}
.inys .intl{
  justify-content: center;
  text-align: center;
  margin-bottom: .8rem;
}
.inys .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inys .content ul li {
  width: 23%;
  box-shadow: 0 0 8px 2px rgba(0,0,0,.2);
  background-color: #eee;
  padding: 0.8rem 0.3rem;
  text-align: center;
  transition: all 0.3s;
}
.inys .content ul li .ico {
  margin-bottom: 0.5rem;
}
.inys .content ul li .ico i {
  display: block;
  font-size: 56px;
  color: #333;
}
.inys .content ul li h3 {
  font-size: 0.24rem;
  line-height: 1.8;
  color: #333;
}
.inys .content ul li h5 {
  font-size: 0.12rem;
  line-height: 1;
  color: #888;
  text-transform: uppercase;
  transform: scale(0.9);
  /* margin-bottom: .1rem; */
}
.inys .content ul li span {
  display: block;
  width: 10px;
  height: 2px;
  background-color: #666;
  margin: 0.15rem auto;
}
.inys .content ul li p {
  font-size: 0.15rem;
  line-height: 1.6;
  color: #666;
}
.inys .content ul li.on {
  background-color: var(--main-color);
  /* transform: translateY(-0.3rem); */
  margin-top: -0.3rem;
}
.inys .content ul li.on i,
.inys .content ul li.on h3,
.inys .content ul li.on h5,
.inys .content ul li.on p {
  color: #fff;
}
.inys .content ul li.on h5 {
  opacity: 0.6;
}
.inys .content ul li.on span {
  background-color: #fff;
}

.inpro {
  padding: 1rem 0;
}
.inpro .content {
  position: relative;
  padding-bottom: 50px;
  /* padding: 0 2.5%; */
}
.inpro .content li {
  position: relative;
  padding: 10px 0;
}
.inpro .content li a {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  border-radius: 10px;
  transition: all 0.6s;
}
.inpro .content li a::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-color: #f5f5f5;
  transform: translate(-50%, -50%);
  transition: all 0.6s;
}
.inpro .content li .img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border: 1px solid #f5f5f5;
}
.inpro .content li .img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inpro .content li .text {
  position: relative;
  padding: 0.3rem 15px;
}
.inpro .content li .text h3 {
  font-size: 0.2rem;
  /* font-weight: bold; */
  color: #111;
  line-height: 20px;
  /* height: 40px; */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.inpro .content li .more {
  position: absolute;
  right: 30px;
  top: -20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.inpro .content li .more h5 {
  display: block;
  overflow: hidden;
  font-size: 0.16rem;
  line-height: 32px;
  height: 34px;
  color: #666;
  margin-left: 20px;
  background-color: #fff;
  padding: 0 20px;
  margin-right: 5px;
  border-radius: 20px;
  border: 1px solid var(--main-color2);
  opacity: 0;
  transition: all 0.3s;
}
.inpro .content li .more .ico {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color2);
}
.inpro .content li .more .ico i {
  display: block;
  font-size: 20px;
  color: #fff;
  transform: rotate(90deg);
}
.inpro .content li a:hover .more h5 {
  overflow: visible;
  opacity: 1;
}
.inpro .content .swiper-pagination {
  position: absolute;
  top: auto;
  bottom: 15px;
  left: 25px;
  width: calc(100% - 50px);
}
.inpro .content .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #666;
}

.inht{
	height: 260px;
	background: url(../images/inht_bg.jpg) no-repeat center;
    background-attachment: fixed;
    padding-top: 60px;
}
.inht .w80{
  display: flex;
  justify-content: space-between;
	/* padding: 0 40px; */
}
.inht .ico{
	margin-bottom: 5px;
}
.inht .ico img{
	display: block;
	height: 36px;
  margin-bottom: .3rem;
}
.inht .ico h1{
	display: block;
	font-size: 32px;
  font-weight: bold;
	line-height: 1;
	color: #fff;
  margin: 0;
}
.inht .ico h2{
	display: block;
	font-size: 14px;
	line-height: 1.8;
	color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: .8;
}
.inht .tel{
  display: flex;
  align-items: center;
}
.inht .tel i{
  font-size: 28px;
  color: #fff;
  margin-right: 10px;
}
.inht .tel h3{
	font-size: 24px;
	color: #eee;
	font-weight: bold;
	line-height: 1.5;
}

.incase {
  padding: 1rem 0;
}
.incase .intl {
  justify-content: center;
  text-align: center;
  margin-bottom: .5rem;
}
.incase .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  overflow: hidden;
}
.incase .content li {
  float: left;
  width: 24%;
  border: 1px solid #fff;
  border-right: 0px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.incase .content li:first-child {
  border-left: 0px;
}
.incase .content li a {
  display: block;
  position: relative;
}
.incase .content li .bg1 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-image: -webkit-linear-gradient(bottom, rgba(0,69, 142, 1) 0%, rgba(0,69, 142, 0) 50%, transparent 100%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.incase .content li .text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6rem;
  padding: 0 0.5rem;
  text-align: left;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.incase .content li .text h3 {
  font-size: 25px;
  line-height:36px;
  color: #fff;
  margin-bottom: 0.4rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.incase .content li .text h5 {
  font-size: 14px;
  color: #eee;
  text-transform: uppercase;
}
.incase .content li .text p {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.incase .content li .img {
  height: 500px;
  background-color: #00458e;
}
.incase .content li .img img {
  display: block;
  height: 100%;
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
}

.incase .content li.cur {
  width: 40%;
}
.incase .content li.oth {
  width: 18%;
}
.incase .content li.cur .text {
  top: 30%;
}
.incase .content li.cur .bg1  h3{
  font-size: 36px;
  margin-bottom: 0.2rem;
}
.incase .content li.cur .bg1  p{
  opacity: 1;
  visibility: visible;
}

.innews {
  padding: 0.8rem 0 1rem;
  background: url(../images/innews_bg.png) no-repeat center bottom #f5f5f5;
  -o-background-size: 100% auto;
     background-size: 100% auto;
}
.innews .intl {
  margin-bottom: .5rem;
}
.innews .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.innews .content ul li {
  -webkit-flex-basis: 33.33%;
      -ms-flex-preferred-size: 33.33%;
          flex-basis: 33.33%;
}
.innews .content ul li.left {
  margin-right: 0.45rem;
}
.innews .content ul li.left a {
  position: relative;
  display: block;
  padding-bottom: 260px;
  background-color: #fff;
}
.innews .content ul li.left img {
  display: block;
  height: 280px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innews .content ul li.left .text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 0.4rem;
  height: 260px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background: url(../images/innews_ico.png) no-repeat right bottom -100% #fff;
}
.innews .content ul li.left .text span {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 0.3rem;
}
.innews .content ul li.left .text span font {
  float: right;
  display: inline-block;
}
.innews .content ul li.left .text h3 {
  font-size: 22px;
  line-height: 32px;
  height: 64px;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.4rem;
  text-align: justify;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content ul li.left .text p {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.innews .content ul li.left .text h4 {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  font-size: 18px;
  color: #666;
}
.innews .content ul li.left a:hover .text {
  height: 100%;
  background: url(../images/innews_ico.png) no-repeat right 5px bottom 0.4rem
    #00458e;
  background-size: 50% auto !important;
  padding-top: 0.8rem;
}
.innews .content ul li.left a:hover .text span {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text h3 {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text h4 {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text p {
  height: 96px;
  opacity: 1;
  visibility: visible;
}
.innews .content dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 540px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.innews .content dd a {
  display: block;
}
.innews .content dd h3 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.innews .content dd h3:after {
  content: "";
  position: absolute;
  width: 0;
  left: auto;
  right: 0;
  bottom: 0px;
  height: 2px;
  background-color: #00458e;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innews .content dd p {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-bottom: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content dd span {
  display: block;
  font-size: 16px;
  color: #999;
}
.innews .content dd a:hover h3 {
  color: #00458e;
}

.innews .content dd a:hover h3:after {
  width: 100%;
  left: 0;
  right: auto;
}


/* foot */

.foot {
  /* padding: 0 50px; */
}
.foot .content {
  position: relative;
}
.foot .content .img {
  position: relative;
  width: 100%;
  height: 3.6rem;
  background-color: var(--main-color);
  /* border-radius: 10px; */
  overflow: hidden;
}
.foot .content .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.foot .content .img img {
  object-position: bottom;
  opacity: 0.6;
}
.foot .content .text {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.foot .content .text h3 {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 0.15rem;
  text-shadow: 2px 2px 6px rgb(0 0 0 / 50%);
}
.foot .content .text h5 {
  font-size: 15px;
  color: #fff;
  opacity: 0.8;
  text-shadow: 2px 2px 6px rgb(0 0 0 / 50%);
}

.foot .content .text .hx {
  position: relative;
  width: calc(90% - 12px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0.3rem auto;

  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0.25) 100%, rgba(255, 255, 255));
  /* 文字颜色填充设置为透明 */
  -webkit-text-fill-color: transparent;
  /* 背景裁剪，即让文字使用背景色 */
  /* -webkit-background-clip: text; */
  /* 背景图放大一下，看着柔和一些 */
  -webkit-background-size: 200% 100%;
  /* 应用动画flowCss 12秒速度 无限循环 线性匀速动画*/
  -webkit-animation: flowCss 5s infinite linear;
}

@-webkit-keyframes flowCss {
  0% {
    /* 移动背景位置 */
    background-position: 0 0;
  }

  100% {
    background-position: -400% 0;
  }
}

.foot .content .text .hx::before,
.foot .content .text .hx:after {
  content: "";
  position: absolute;
  top: 50%;
  opacity: 0.8;
  border: 6px solid transparent;
  transform: translateY(-50%);
}
.foot .content .text .hx::before {
  left: -30px;
  border-left: 12px solid #fff;
}
.foot .content .text .hx::after {
  right: -30px;
  border-right: 12px solid #fff;
}
.foot .content .text .btn {
  display: flex;
  justify-content: center;
}
.foot .content .text .btn a {
  display: block;
  font-size: 15px;
  color: #fff;
  line-height: 42px;
  border: 1px solid #fff;
  padding: 0 30px;
  opacity: 0.9;
  transition: all 0.3s;
}
.foot .content .text .btn a:first-child {
  margin-right: 20px;
}
.foot .content .text .btn a:hover {
  opacity: 0.9;
  color: var(--main-color);
  border-color: #fff;
  background-color: #fff;
  opacity: 1;
}
.foot .copyright {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.4rem;
}
.foot .copyright .logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.foot .copyright .logo img {
  height: 80%;
  margin-right: 0.2rem;
}
.foot .copyright .logo p {
  font-size: 14px;
  line-height: 20px;
  color: #555;
}
.foot .copyright .logo p span {
  font-size: 15px;
  display: inline-block;
  color: #333;
  margin-right: 5px;
}
.foot .copyright .text {
  text-align: right;
}
.foot .copyright .text p {
  font-size: 14px;
  line-height: 20px;
  color: #555;
}
.foot .copyright .text a {
  font-size: 14px;
  line-height: 20px;
  color: #555;
}

/*右侧悬浮*/
.floot_right {
  position: fixed;
  z-index: 998;
  bottom: 20%;
  right: 10px;
}
.floot_right ul {
  /* width: 50px; */
}
.floot_right ul li {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 3px;
  background-color: var(--main-color);
  margin-bottom: 5px;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.floot_right ul li:last-child {
  margin-bottom: 0px;
}
.floot_right ul li.gotop {
  background-color: #333;
  overflow: hidden;
  height: 0px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
/*.floot_right ul li:hover{
  background-color: #f34f24 !important;
}*/
.floot_right ul li .con i {
  display: block;
  font-size: 40px;
  line-height: 70px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.floot_right ul li .con h5 {
  display: none;
  font-size: 12px;
  color: #fff;
  line-height: 23px;
  text-align: center;
}
.floot_right ul li .fl_tc {
  position: absolute;
  top: 50%;
  right: 110px;
  background-color: var(--main-color);
  padding: 10px;
  border-radius: 3px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.floot_right ul li .fl_tc h4 {
  white-space: nowrap;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}
.floot_right ul li .fl_tc img {
  display: block;
  width: 105px;
  height: 105px;
  max-width: none;
}
.floot_right ul li .fl_tc a {
  display: block;
  white-space: nowrap;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}
.floot_right ul li:hover .fl_tc {
  opacity: 1;
  right: 80px;
  visibility: visible;
}
.floot_right ul li .fl_tc:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  border: 5px solid transparent;
  border-left: 5px solid var(--main-color);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.floot_right ul li .fl_tc:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  height: 100%;
  width: 10px;
}
