/* head */
.index_bg .head {
  background-color: rgba(0, 0, 0, 0.3);
}
.head {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: var(--head-height);
  transition: all 0.3s;
}
.head::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.head > .w90 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.head .logo {
  position: relative;
  z-index: 2;
  height: 40%;
}
.head .logo a {
  display: block;
  height: 100%;
}
.head .logo img {
  display: block;
  height: 100%;
}
.head .logo img.logo1 {
  opacity: 0;
}
.head .logo img.logo2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 1;
}

.head .right {
  display: flex;
  align-items: center;
  height: 100%;
}
.head .nav {
  height: 100%;
}
.head .nav ul {
  display: flex;
  height: 100%;
  margin-right: 0.3rem;
}
.head .nav li {
  /* margin-right: .5rem; */
}
.head .nav li > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 18px;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.3s;
}
.head .nav li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  opacity: 0;
  transition: all 0.3s;
}

.head .nav .xl {
  display: flex;
  position: absolute;
  visibility: hidden;
  top: calc(var(--head-height) + 20px);
  opacity: 0;
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--head-height2));
  /* height: calc(100vh - var(--head-height)); */
  background-color: #fafafa;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  /* transition: all .3s; */
  transition: all 0.1s;
}
.head .nav .xl .w90 {
  display: flex;
  max-height: 100%;
}
.head .nav .xl .w90 > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.head .nav .xl .text {
  width: 30%;
  padding: 1rem 1rem 1rem 0;
  border-right: 1px solid #ddd;
}
.head .nav .xl .text h3 {
  font-size: 36px;
  color: #333;
  margin-bottom: 0.2rem;
}
.head .nav .xl .text p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}
.head .nav .xl .list {
  width: 40%;
  padding: 0.6rem 0.8rem;
}
.head .nav .xl .list dl {
  width: 100%;
  overflow-y: auto;
}
/*滚动条样式*/
.head .nav .xl .list dl::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.head .nav .xl .list dl::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.head .nav .xl .list dl::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  background: #aaa;
}
.head .nav .xl .list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  line-height: 30px;
  padding: 0.1rem 0.2rem;
  transition: all 0.3s;
}
.head .nav .xl .list a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.head .nav .xl .img {
  position: relative;
  width: 30%;
  padding-bottom: 20%;
}
.head .nav .xl .img img {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 80%;
  object-fit: cover;
  transform: translateY(-50%);
}

.head .nav li:hover > a {
  background-color: #fafafa;
}
.head .nav li:hover > a::after {
  opacity: 1;
}
.head .nav li:hover .xl {
  visibility: inherit;
  top: var(--head-height2);
  opacity: 1;
  transition: all 0.3s;
}

.head .btn {
  display: flex;
  height: 100%;
  align-items: center;
}
.head .btn .language{
  margin-right: 30px;
}
.head .btn .language a{
  display: block;
  font-size: 20px;
  color: #fff;
  transition: all 0.5s;
}
.head .btn .language i{
  font-size: 20px;
  color: #fff;
  margin-right: 1px;
  transition: all 0.5s;
}
.head .btn .menu_btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  /* padding: 0 10px; */
}
.head .btn .menu_btn p {
  width: 50px;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
}
.head .btn .menu_btn p:nth-child(2) {
  margin-top: 0.1rem;
}
.head .btn .menu_btn:hover p {
  width: 40px;
  /* background-color: var(--main-color); */
}
.head .btn .menu_btn:hover p:nth-child(2) {
  margin-left: 10px;
}

.head.on1 {
  height: var(--head-height2);
  background-color: rgba(255, 255, 255, 1);
}
.head.on1::after {
  opacity: 1;
}
.head.on1 .logo img.logo1 {
  opacity: 1;
}
.head.on1 .logo img.logo2 {
  opacity: 0;
}
.head.on1 .nav li a {
  color: #333;
}
.head.on1 .btn .language a{
  color: #333;
}
.head.on1 .btn .language i{
  color: #333;
}
.head.on1 .btn .language a:hover{
  color: var(--main-color);
}
.head.on1 .btn .language a:hover i{
  color: var(--main-color);
}
.head.on1 .btn .menu_btn p {
  background-color: #333;
}

.menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/menu_bg.jpg) no-repeat center;
  background-color: #fff;
  transition: all 0.3s;
}
.menu.on {
  visibility: initial;
  opacity: 1;
  transition: all 0;
}
.menu .top {
  height: var(--head-height2);
  background-color: var(--main-color);
  transition: all 0.3s;
}
.menu .top .w90 {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu .top .logo {
  height: 40%;
}
.menu .top .logo a {
  display: block;
  height: 100%;
}
.menu .top .logo img {
  display: block;
  height: 100%;
}
.menu .top .search {
  position: relative;
  width: calc(100% - 460px);
  height: 70%;
}
.menu .top .search form {
  height: 100%;
}
.menu .top .search input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #555;
  outline: none;
  padding: 0 80px 0 10px;
}
.menu .top .search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  font-size: 24px;
  background-color: transparent;
  border: 0;
}
.menu .top .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100%;
  cursor: pointer;
}
.menu .top .close i {
  font-size: 20px;
  color: #fff;
}
.menu .content {
  position: relative;
  display: flex;
  height: calc(100% - var(--head-height));
  justify-content: space-between;
}
.menu .content .search {
  display: none;
}
.menu .content .left {
  width: 3rem;
  height: 100%;
  border-right: 1px solid #ddd;
  padding: 1rem 0 0 0;
}
.menu .content .left li {
  margin-bottom: 0.2rem;
}
.menu .content .left li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 2.5;
  color: #333;
  width: 120px;
  transition: all 0.3s;
}
.menu .content .left li.cur a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.3s;
}
.menu .content .left li a i {
  display: block;
  font-size: 18px;
  color: #666;
  transition: all 0.3s;
}
.menu .content .left li a:hover {
  color: var(--main-color);
  /* margin-right: 1.6rem; */
}
.menu .content .left li.cur.on a::after {
  width: 95%;
}
.menu .content .left li.on a i {
  color: var(--main-color);
}
.menu .content .right {
  position: relative;
  padding: 1rem 1rem 0 0;
  width: calc(100% - 4rem);
}
.menu .content .right ul {
  position: relative;
}
.menu .content .right li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  display: flex;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.menu .content .right li.on {
  visibility: initial;
  opacity: 1;
}
.menu .content .right .list {
  width: 45%;
}
.menu .content .right .list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  line-height: 60px;
  padding: 0 0.2rem;
  transition: all 0.3s;
}
.menu .content .right .list a:hover {
  color: #fff;
  background-color: var(--main-color);
}
.menu .content .right .img {
  position: relative;
  width: 50%;
  padding-bottom: 30%;
}
.menu .content .right .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* index */
.index_bg {
  /* 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 {
  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 {
  position: relative;
  margin-bottom: 0.5rem;
}
.intl h3 {
  font-size: 56px;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.05rem;
}
.intl h3 font {
  display: inline-block;
  font-size: 56px;
  font-weight: bold;
  color: var(--main-color);
}
.intl h5 {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color);
}
.intl a {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-weight: bold;
  padding-right: 40px;
  color: #333;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.intl a::after {
  content: "···";
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 25px;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  background-color: #333;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.intl a:hover {
  color: var(--main-color);
}
.intl a:hover::after {
  background-color: var(--main-color);
}

.inabout {
  position: relative;
  background: url(../images/inabout_bg1.png) no-repeat right center;
  -o-background-size: 80% auto;
  background-size: 80% auto;
}
.inabout .fk {
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0px;
  width: 35%;
  height: 50%;
  background-color: var(--main-color2);
}
.inabout .w80 {
  position: relative;
  padding-left: 50%;
}
.inabout .img {
  position: absolute;
  top: 0;
  left: -12.5%;
  width: 67.5%;
  padding-bottom: 40%;
  background-color: var(--main-color);
}
.inabout .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
}
.inabout .text {
  padding: 0.5rem 0 0.3rem;
  text-align: right;
}
.inabout .text p {
  font-size: 14px;
  line-height: 2;
  color: #666;
  text-align: justify;
  margin-bottom: 0.5rem;
}
.inabout .text ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.inabout .text ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 25%;
}
.inabout .text ul li:first-child {
  margin-left: 0;
}
.inabout .text ul li .ico {
  width: 0.8rem;
  padding: 0.1rem;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text ul li i {
  display: block;
  font-size: 0.48rem;
  color: var(--main-color);
  transform: rotateY(0deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text ul li h1 {
  font-size: 12px;
  color: #666;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text ul li:hover .ico {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.inabout .text ul li:hover i {
  color: #fff;
  transform: rotateY(360deg);
}
.inabout .text ul li:hover h1 {
  color: var(--main-color);
}
.inabout .text a.more {
  display: block;
  float: right;
  width: 1.8rem;
  font-size: 16px;
  color: #fff;
  line-height: 0.5rem;
  background-color: var(--main-color2);
  border-radius: 50px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text a.more:hover {
  background-color: var(--main-color);
}

.inys {
  position: relative;
  background-color: #aaa;
  background: url(../images/inys_bg.jpg) no-repeat center;
  background-size: cover;
}
.inys::after{
  content:"";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(1.2px);
   backdrop-filter: blur(1.2px);
   background: rgba(255, 255, 255, 0.4);
   /* border: 1px solid rgba(255, 255, 255, 0.24); */
}
.inys .w80{
  position: relative;
  z-index: 2;
}
.inys ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inys li {
  position: relative;
  width: 18%;
  /* padding-bottom: 25%; */
  text-align: center;
}
.inys li .box {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 150%;
}
.inys li .img {
  position: absolute;
  z-index: 1;
  top: 20%;
  left: 0;
  width: 100%;
  height: 60%;
  padding-bottom: 15%;
  /* border-radius: 100% 100% 0 0; */
  border-top-left-radius: 50% 59%;
  border-top-right-radius: 50% 59%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.inys li .img i {
  /* position: relative; */
  font-size: 64px;
  color: #fff;
}
.inys li .img img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inys li .con {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  height: 75%;
  width: 100%;
  padding-bottom: 50%;
  transition: all 0.3s;
}
.inys li .text {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  /* height: 80%; */
  padding: 0.25rem 20px 0;
}
.inys li .text i {
  display: block;
  font-size: 64px;
  line-height: 64px;
  height: 64px;
  color: var(--main-color);
  margin-bottom: 0.25rem;
  transition: all 0.3s;
}
.inys li .text h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 0.1rem;
  border-bottom: 1px dashed transparent;
  transition: all 0.3s;
}
.inys li .text p {
  font-size: 14px;
  line-height: 1.2;
  color: #666;
}
.inys li .fk {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}
.inys li .by {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 50%;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.inys li.on .img {
  top: 0;
  opacity: 1;
}
.inys li.on .con {
  height: 60%;
}
/* .inys li.on .text{background-color: rgba(255, 255, 255, 0.8)除羁留
  top: -35%;
} */
.inys li.on .text i {
  transform: scale(0);
  overflow: hidden;
  margin-bottom: 0;
  height: 0;
}
.inys li.on .text h3 {
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  color: var(--main-color);
  border-bottom: 1px dashed #999;
}
.inys li.on .fk,
.inys li.on .by {
  background-color: rgba(255, 255, 255, 1);
}

.inpro .content .swiper {
  padding: 10px 0 50px;
}
.inpro .content .swiper-pagination {
  position: absolute;
  top: auto;
  bottom: 15px;
  left: 10%;
  width: calc(80% - 100px);
}
.inpro .content .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #666;
}
.inpro .btn {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inpro .btn > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #999;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.3s;
}
.inpro .btn .inpro_prev {
  transform: rotate(180deg);
}
.inpro .btn i {
  color: #999;
  transition: all 0.3s;
}
.inpro .btn > div:hover {
  border-color: #333;
}
.inpro .btn > div:hover i {
  color: #333;
}

.inpro .content li {
  /* height: 100%; */
  border: 1px solid #ccc;
  border-right: 0px;
}
.inpro .content li .img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.inpro .content li .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inpro .content li .text {
  position: relative;
  z-index: 2;
  margin: 0 5%;
  padding: 0.2rem 0;
  border-top: 1px solid #ccc;
}
.inpro .content li .text h3 {
  font-size: 16px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0.1rem;
  transition: all 0.3s;
}
.inpro .content li .text h5 {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid #ccc;
  padding: 8px 10px;
  transition: all 0.3s;
}
.inpro .content li a:hover .text h3 {
  color: var(--main-color);
}
.inpro .content li a:hover .text h5 {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.incase {
  position: relative;
}
.incase .intl {
  position: absolute;
  z-index: 9;
  top: 1rem;
  left: 10%;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}
.incase .imglist .zz {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.incase .imglist .zz img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}
.incase .imglist .img {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
}
.incase .imglist .img img {
  opacity: 0.8;
}
.incase .imglist .text {
  position: absolute;
  z-index: 6;
  top: 3rem;
  left: 10%;
  width: 30%;
}
.incase .imglist .text h3 {
  font-size: 32px;
  color: var(--main-color2);
  margin-bottom: 0.2rem;
  white-space: nowrap;
}
.incase .imglist .text h5 {
  font-size: 20px;
  color: #999;
  margin-bottom: 0.2rem;
}
.incase .imglist .text p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
.incase .incase_nav {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 80%;
}
.incase .incase_nav .swiper {
  padding: 10px 0;
}
.incase .incase_nav li {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.incase .incase_nav li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  transition: all 0.3s;
}
.incase .incase_nav li .img {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
}
.incase .incase_nav li .text {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.incase .incase_nav li .text h3 {
  font-size: 18px;
  color: #fff;
}
.incase .incase_nav li.on::after {
  background-color: var(--main-color);
  opacity: 0.7;
}

.innews .content {
}
.innews .content li .img {
  position: relative;
  width: 100%;
  padding-bottom: 80%;
  background-color: #000;
  transition: all 0.3s;
}
.innews .content li .img img {
  opacity: 0.8;
  transition: all 0.3s;
}
.innews .content li .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.25rem 0.2rem;
}
.innews .content li .text .date {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0.1rem;
}
.innews .content li .text h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0.2rem;
}
.innews .content li .text p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s;
}
.innews .content li .text span {
  position: absolute;
  bottom: -0.2rem;
  left: 0.2rem;
  display: block;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.15s;
}

.innews .content li a:hover .img {
  background-color: var(--main-color);
}
.innews .content li a:hover .img img {
  opacity: 0.3;
}
.innews .content li a:hover .text p {
  transform: translateY(0);
  opacity: 0.8;
}
.innews .content li a:hover .text span {
  bottom: 0.2rem;
  opacity: 1;
}

.innews .content .w80 {
  position: relative;
  height: 40px;
}
.innews .content .w80 .swiper-pagination {
  top: auto;
  bottom: 0;
}
.innews .content .w80 .swiper-pagination-progressbar-fill {
  background-color: #666;
}

.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: 90%;
  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: 12px;
  line-height: 20px;
  color: #555;
}
.foot .copyright .logo p span {
  font-size: 13px;
  display: inline-block;
  color: #333;
  margin-right: 5px;
}
.foot .copyright .text {
  text-align: right;
}
.foot .copyright .text p {
  font-size: 12px;
  line-height: 20px;
  color: #555;
}
.foot .copyright .text a {
  font-size: 12px;
  line-height: 20px;
  color: #555;
}
