body.opened {
  overflow: hidden;
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.702);
  font-weight: lighter;
  z-index: 100;
  transition: 0.3s;
}
.header.fixed {
  transform: translateY(-1.5rem);
}
.header-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-body .logo img {
  display: block;
  max-height: 0.65rem;
}
.header-body .header-right {
  padding-top: 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-body .top-search {
  margin-bottom: 0.1rem;
  display: flex;
  align-items: flex-start;
}
.header-body .top-search .search-box {
  position: relative;
}
.header-body .top-search .search-box .text {
  width: 3.2rem;
  border: 1px solid transparent;
  background-color: rgba(249, 250, 251, 0.2);
  transition: 0.3s;
  height: 0.3rem;
  line-height: 0.3rem;
  border-radius: 0.15rem;
  padding: 0 0.2rem;
  color: #fff;
  font-weight: lighter;
}
.header-body .top-search .search-box .text::placeholder {
  color: #fff;
}
.header-body .top-search .search-box .text:focus {
  border-color: #e62129;
}
.header-body .top-search .search-box .btn {
  width: 1em;
  height: 1em;
  position: absolute;
  right: 0.16rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/icon_search.svg) center / contain no-repeat;
}
.header-body .top-search .search_log {
  float: right;
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
}
.header-body .top-search .search_log .item {
  position: relative;
  padding-right: 0.2rem;
}
.header-body .top-search .search_log .item:last-of-type {
  border-right: 0;
  max-width: 1rem;
  padding-right: 0;
}
.header-body .top-search .search_log .item:hover .sub {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header-body .top-search .search_log .label {
  color: #ffffff;
  line-height: 1;
}
.header-body .top-search .search_log .icon {
  width: 0.3rem;
  height: 0.3rem;
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0.03rem;
}
.header-body .top-search .search_log .icon.icon_lan {
  background-image: url(../images/icon_lan.svg);
}
.header-body .top-search .search_log .icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.header-body .top-search .search_log .sub {
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 0.1rem;
  transform: translateY(-5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 22;
}
.header-body .top-search .search_log .sub.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header-body .top-search .search_log .sub .sub-inner {
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  padding: 0.1rem;
  border-radius: 0.04rem;
  position: relative;
}
.header-body .top-search .search_log .sub .sub-inner::before {
  content: '';
  width: 0 ;
  height: 0;
  border: 0.05rem solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  right: 0.1rem;
  top: -0.1rem;
}
.header-body .top-search .search_log .sub .search-box {
  width: 2.5rem;
  padding-right: 0.4rem;
  position: relative;
}
.header-body .top-search .search_log .sub .search-box .text {
  height: 0.4rem;
  line-height: 0.4rem;
  width: 100%;
  border-right: 1px solid #eee;
}
.header-body .top-search .search_log .sub .search-box .btn {
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/icon_search.svg) center center no-repeat;
  background-size: 14px;
}
.header-body .top-search .search_log .sub .search-box .text {
  padding-left: 10px;
}
.header-body .top-search .search_log .sub .lan-box {
  line-height: 2;
  text-align: center;
}
.header-body #open-menu {
  display: none;
}
@media (max-width: 1024px) {
  .header-body {
    height: 0.8rem;
  }
  .header-body .header-right {
    padding-top: 0;
    flex-direction: row;
    align-items: center;
  }
  .header-body .logo img {
    max-height: 0.5rem;
  }
  .header-body .top-search {
    margin-bottom: 0;
  }
  .header-body .top-search .search_log .icon {
    width: 0.5rem;
    height: 0.5rem;
    background-size: 0.3rem;
  }
  .header-body .top-search .search-box .text {
    height: 0.5rem;
    line-height: 0.5rem;
    border-radius: 0.25rem;
  }
  .header-body #open-menu {
    display: block;
    width: 0.6rem;
    height: 0.4rem;
    float: right;
    position: relative;
    margin-left: 0.2rem;
  }
  .header-body #open-menu::before,
  .header-body #open-menu::after {
    content: '';
  }
  .header-body #open-menu i,
  .header-body #open-menu::before,
  .header-body #open-menu::after {
    width: 100%;
    height: 0.05rem;
    background-color: #cb3640;
    position: absolute;
    transition: 0.3s;
    right: 0;
    margin: auto;
    border-radius: 0.05rem;
  }
  .header-body #open-menu i {
    top: 0;
    bottom: 0;
    width: 65%;
  }
  .header-body #open-menu::before {
    top: 0;
    right: 0;
  }
  .header-body #open-menu::after {
    bottom: 0;
    right: 0;
  }
  .header-body #open-menu.active::before {
    bottom: 0;
    transform: rotateZ(45deg);
  }
  .header-body #open-menu.active::after {
    top: 0;
    transform: rotateZ(-45deg);
  }
  .header-body #open-menu.active i {
    opacity: 0;
  }
}
@media (min-width: 1025px) {
  .header-nav ul {
    display: flex;
  }
  .header-nav ul li {
    padding-left: 0.3rem;
  }
  .header-nav ul li:first-of-type {
    padding-left: 0;
  }
  .header-nav ul li:hover em a::before,
  .header-nav ul li.active em a::before {
    width: 100%;
  }
  .header-nav ul li:hover .sub,
  .header-nav ul li.active .sub {
    opacity: 1;
    visibility: visible;
  }
  .header-nav ul em {
    display: block;
  }
  .header-nav ul em a {
    display: block;
    line-height: 0.45rem;
    font-size: 1.125em;
    color: #ffffff;
    font-weight: lighter;
    min-width: 0.8rem;
    padding: 0 0.1rem;
    text-align: center;
    position: relative;
  }
  .header-nav ul em a::before {
    content: '';
    width: 0;
    height: 0.04rem;
    background-color: #e62129;
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: 0.3s;
    transform: translateX(-50%);
  }
  .header-nav ul .sub {
    position: absolute;
    width: 100%;
    left: 0 ;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.302);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .header-nav ul .sub dl {
    display: flex;
  }
  .header-nav ul .sub dl dd {
    flex: 1;
    max-width: 1.2rem;
  }
  .header-nav ul .sub dl dd:hover,
  .header-nav ul .sub dl dd.active {
    background-color: #cb3640;
  }
  .header-nav ul .sub dl a {
    display: block;
    line-height: 0.5rem;
    color: #ffffff;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .header-nav.active {
    width: 100%;
    height: calc(100% - 0.8rem);
    position: fixed;
    left: 0;
    top: 0.8rem;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header-nav.active ul {
    transform: translateX(0);
  }
  .header-nav ul {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20;
    top: 0.8rem;
    width: 4rem;
    right: 0;
    height: calc(100% - 0.8rem);
    overflow-y: auto;
    background-color: #fff;
    padding: 0.3rem 0.1rem 0.3rem;
    transform: translateX(100%);
    transition: 0.3s;
  }
  .header-nav a {
    color: #333;
    display: block;
  }
  .header-nav li {
    padding: 0 0.1rem;
    line-height: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header-nav em {
    position: relative;
    display: block;
  }
  .header-nav .sub {
    display: none;
    padding: 0 0.1rem;
    background-color: rgba(0, 0, 0, 0.1);
    line-height: 3;
  }
  .header-nav .sub .container .pic {
    display: none;
  }
  .header-nav .has-sub em i {
    width: 0.25rem;
    height: 0.25rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header-nav .has-sub em i::before,
  .header-nav .has-sub em i::after {
    content: '';
    background-color: #333;
    border-radius: 0.02rem;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
  }
  .header-nav .has-sub em i::before {
    width: 100%;
    height: 0.03rem;
  }
  .header-nav .has-sub em i::after {
    width: 0.03rem;
    height: 100%;
  }
  .header-nav .has-sub em.active i::after {
    height: 0;
  }
  .header-nav .btn .item {
    padding: 0 0.08rem;
  }
}
.bottom {
  background-color: #000;
}
.bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: lighter;
}
.bottom .nav {
  display: flex;
  margin-left: -0.18rem;
}
.bottom .nav li em {
  display: block;
}
.bottom .nav li em a {
  display: block;
  padding: 0 0.18rem;
  font-size: 1.125em;
  color: #ffffff;
  line-height: 0.6rem;
  font-weight: lighter;
  transition: 0.3s;
}
.bottom .nav li em a:hover {
  background-color: rgba(51, 51, 51, 0.2);
}
.bottom .company-info {
  color: #bbbbbb;
  line-height: 1.875;
}
.bottom .copyright {
  color: #464646;
  line-height: 1.875;
  font-weight: normal;
  padding-bottom: 0.1rem;
}
.bottom .copyright a {
  color: #464646;
  transition: 0.3s;
}
.bottom .copyright a:hover {
  color: #fff;
}
.bottom .shares {
  display: flex;
}
.bottom .shares .item {
  position: relative;
  margin-left: 0.2rem;
}
.bottom .shares .item:hover .sub {
  opacity: 1;
  margin: 0;
  visibility: visible;
}
.bottom .shares .item a {
  width: 0.3rem;
  height: 0.3rem;
  display: block;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.bottom .shares .item .icon_qq {
  background-image: url(../images/icon_qq.png);
}
.bottom .shares .item .icon_qq:hover {
  background-image: url(../images/icon_qq_active.png);
}
.bottom .shares .item .icon_weibo {
  background-image: url(../images/icon_weibo.png);
}
.bottom .shares .item .icon_weibo:hover {
  background-image: url(../images/icon_weibo_active.png);
}
.bottom .shares .item .icon_xcx {
  background-image: url(../images/icon_xcx.png);
}
.bottom .shares .item .icon_xcx:hover {
  background-image: url(../images/icon_xcx_active.png);
}
.bottom .shares .item .icon_wechat {
  background-image: url(../images/icon_wechat.png);
}
.bottom .shares .item .icon_wechat:hover {
  background-image: url(../images/icon_wechat_active.png);
}
.bottom .shares .item .sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 0.2rem);
  width: 1.34rem;
  background-color: #fff;
  padding: 0.1rem;
  text-align: center;
  opacity: 0;
  margin-top: -1.05rem;
  visibility: hidden;
  transition: 0.3s;
}
.bottom .shares .item .sub .img {
  margin-bottom: 0.1rem;
}
.bottom .shares .item .sub img {
  width: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .bottom .container {
    display: block;
    padding-bottom: 0.3rem;
  }
  .bottom .nav {
    display: block;
    margin-bottom: 0.3rem;
  }
  .bottom .nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .bottom .nav li em a {
    line-height: 1rem;
    position: relative;
  }
  .bottom .nav li em a::after {
    content: '';
    width: 0.2rem;
    height: 0.2rem;
    position: absolute;
    right: 0.05rem;
    top: 0;
    bottom: 0;
    margin: auto;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
  }
  .bottom .shares {
    justify-content: center;
  }
  .bottom .shares .item:first-of-type {
    margin-left: 0;
  }
  .bottom .shares .item .sub {
    font-size: 0.2rem;
  }
  .bottom .shares .item a {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.ban_pc {
  display: block;
  width: 100%;
}
.ban_phone {
  display: none;
}
@media (max-width: 1024px) {
  .ban_phone {
    display: block;
    width: 100%;
  }
  .ban_pc {
    display: none;
  }
}
.banner {
  position: relative;
}
.banner .txt {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.banner h2 {
  font-size: 0.48rem;
  position: relative;
  padding-left: 0.2rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.banner h2::before {
  content: '';
  width: 0.12rem;
  height: 0.4rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
}
.banner p {
  font-size: 0.28rem;
}
.banner .down {
  width: 0.5rem;
  height: 0.5rem;
  background: url(../images/icon_down.png) center / contain no-repeat;
  cursor: pointer;
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  right: 0;
  margin: auto;
  animation-name: shake1;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-play-state: running;
}
@media (max-width: 1024px) {
  .banner .txt {
    padding-top: 0.8rem;
  }
}
@keyframes shake1 {
  0% {
    bottom: 0.5rem;
    opacity: 0.6;
  }
  100% {
    bottom: 0.4rem;
    opacity: 0.8;
  }
}
.pro-nav .inner {
  box-shadow: 0 0 10px 10px #eee;
  background-color: #fff;
}
.pro-nav .list {
  display: flex;
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}
.pro-nav .item {
  width: 10%;
  padding: 0.4rem 0;
}
.pro-nav .item.active .icon,
.pro-nav .item:hover .icon {
  background-color: #e62129;
}
.pro-nav .item.active .txt,
.pro-nav .item:hover .txt {
  color: #e62129;
}
.pro-nav a {
  display: block;
  padding: 0 0.06rem;
  text-align: center;
}
.pro-nav .icon {
  width: 0.7rem;
  padding-top: 0.7rem;
  border-radius: 50%;
  background-color: #c7cbd2;
  position: relative;
  transition: 0.3s;
  margin: 0 auto 0.2rem;
}
.pro-nav .icon img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  max-width: 70%;
  max-height: 70%;
}
.pro-nav .txt {
  color: #333333;
  line-height: 1;
}
.pro-nav.fixed {
  height: 1.88rem;
}
.pro-nav.fixed .inner {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 20;
}
@media (max-width: 1024px) {
  .pro-nav .list {
    white-space: nowrap;
    overflow-y: auto;
  }
  .pro-nav .item {
    width: auto;
    padding: 0.4rem 0.15rem;
  }
}
.column_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #c7cbd2;
  margin-bottom: 0.4rem;
}
.column_title h2 {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.column_title .cn {
  font-size: 0.3rem;
  color: #333333;
}
.column_title .separator {
  font-size: 0.3rem;
  color: rgba(165, 171, 182, 0.6);
  font-weight: normal;
  margin: 0 0.1rem;
}
.column_title .en {
  font-size: 18px;
  font-weight: bold;
  color: rgba(165, 171, 182, 0.6);
}
.column_title .more {
  font-size: 1.125em;
  color: #333333;
  line-height: 1;
  transition: 0.3s;
  font-weight: 300;
  display: inline-flex;
  align-items: baseline;
}
.column_title .more:hover {
  color: #e62129;
}
.column_title .more:hover svg path {
  fill: #e62129;
}
.column_title .more svg {
  width: 0.15rem;
  height: 0.15rem;
  margin-left: 0.05rem;
}
.column_title .more svg path {
  fill: #333;
}
.pro_cate_info {
  padding-top: 0.6rem;
}
.pro_cate_info .info {
  display: flex;
  margin-bottom: 0.6rem;
}
.pro_cate_info .info .pics {
  width: 4.86rem;
  flex-shrink: 0;
  background-color: #fff;
}
.pro_cate_info .info .pics:hover .swiper-pagination-bullet-active {
  opacity: 0.8;
}
.pro_cate_info .info .pics .img {
  padding-top: 121.97125257%;
  position: relative;
}
.pro_cate_info .info .pics .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pro_cate_info .info .pics .swiper-button-next,
.pro_cate_info .info .pics .swiper-button-prev {
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.302);
  width: 0.54rem;
  height: 0.54rem;
}
.pro_cate_info .info .pics .swiper-button-next::after,
.pro_cate_info .info .pics .swiper-button-prev::after {
  font-size: 2em;
  color: #fff;
}
.pro_cate_info .info .pics .swiper-pagination {
  bottom: 0.24rem !important;
  display: flex;
  justify-content: center;
}
.pro_cate_info .info .pics .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  background-color: #000000;
  opacity: 0.3;
  margin: 0 0.08rem;
}
.pro_cate_info .info .pics .swiper-pagination-bullet-active {
  background-color: #fff;
}
.pro_cate_info .info .txt {
  padding: 0.2rem 0.46rem;
  color: #333333;
  font-size: 0.18rem;
  line-height: 1.669;
}
.pro_cate_info .tab_info {
  background-color: #fff;
  padding-bottom: 0.15rem;
}
.pro_cate_info .tab_info .tab {
  display: flex;
  background-color: #c7cbd2;
}
.pro_cate_info .tab_info .tab .item {
  width: 16.66666667%;
  text-align: center;
  cursor: pointer;
  line-height: 0.6rem;
  font-size: 1.125em;
  color: #fff;
  transition: 0.3s;
}
.pro_cate_info .tab_info .tab .item:hover,
.pro_cate_info .tab_info .tab .item.active {
  color: #e62129;
  background-color: #fff;
}
.pro_cate_info .cptd {
  padding-top: 0.5rem;
}
.pro_cate_info .cptd .item {
  padding: 0 0.2rem;
  display: flex;
  margin-bottom: 0.3rem;
  align-items: flex-start;
}
.pro_cate_info .cptd .item .pic {
  width: 2rem;
  padding-top: 2rem;
  border: 1px solid #ececec;
  position: relative;
  flex-shrink: 0;
  margin-right: 0.4rem;
}
.pro_cate_info .cptd .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pro_cate_info .cptd .item .txt {
  padding-top: 0.2rem;
}
.pro_cate_info .cptd .item .txt h2 {
  font-size: 1.125em;
  font-weight: normal;
  margin-bottom: 0.15rem;
}
.pro_cate_info .cptd .item .txt .des {
  font-weight: 300;
  line-height: 1.669;
  font-size: 1.125em;
}
.pro_cate_info .cpcs {
  padding: 0.4rem 0 0;
}
.pro_cate_info .gxdz {
  padding: 0.8rem 0 0.7rem;
  display: flex;
}
.pro_cate_info .gxdz .left {
  width: 7.5rem;
  flex-shrink: 0;
  padding-right: 0.1rem;
  display: flex;
  flex-direction: column;
}
.pro_cate_info .gxdz .gxdz_header {
  display: flex;
  justify-content: center;
  margin-bottom: 0.3rem;
}
.pro_cate_info .gxdz .gxdz_header .item {
  flex: 1;
  max-width: 2rem;
  text-align: center;
  padding: 0 0.2rem;
  font-size: 1.125em;
  color: #666666;
  line-height: 0.48rem;
  border-radius: 0.25rem;
  border: 1px solid #666666;
  margin: 0 0.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.pro_cate_info .gxdz .gxdz_header .item:hover,
.pro_cate_info .gxdz .gxdz_header .item.active {
  background-color: #e62129;
  border-color: #e62129;
  color: #fff;
}
.pro_cate_info .gxdz .tabs_header {
  display: flex;
  justify-content: center;
  background-color: #f9fafb;
}
.pro_cate_info .gxdz .tabs_header .item {
  flex: 1;
  max-width: 20%;
  text-align: center;
  line-height: 0.5rem;
  transition: 0.3s;
  cursor: pointer;
}
.pro_cate_info .gxdz .tabs_header .item:hover,
.pro_cate_info .gxdz .tabs_header .item.active {
  background-color: #e62129;
  color: #fff;
}
.pro_cate_info .gxdz .tab-pane_second {
  padding-top: 0.5rem;
  height: 100%;
  position: relative;
}
.pro_cate_info .gxdz .tab-pane_second .swiper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 0.5rem);
  padding: 0 0.55rem;
}
.pro_cate_info .gxdz .tab-pane_first,
.pro_cate_info .gxdz .tab_content_first {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pro_cate_info .gxdz .swiper-container {
  height: 100%;
  overflow: hidden;
}
.pro_cate_info .gxdz .swiper {
  height: 100%;
}
.pro_cate_info .gxdz .swiper-slide {
  height: calc((100% - 30px) / 4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.pro_cate_info .gxdz .swiper-slide .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.pro_cate_info .gxdz .swiper-slide .txt {
  position: absolute;
  width: 100%;
  height: 101%;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125em;
  color: #666666;
  padding: 0 0.15rem 0 60%;
  background: url(../images/small_bg.png) center / cover no-repeat;
}
.pro_cate_info .gxdz .tab-pane_first {
  width: 100%;
}
.pro_cate_info .gxdz .tab_content_second {
  flex: 1;
  padding-left: 0.2rem;
}
.pro_cate_info .gxdz .swiper-button-next:after,
.pro_cate_info .gxdz .swiper-button-prev:after {
  color: #333;
}
.pro_cate_info .gxdz .right {
  flex: 1;
}
.pro_cate_info .gxdz .right .pic {
  padding-top: 151.11111111%;
  position: relative;
  background-color: #fff;
}
.pro_cate_info .gxdz .right .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pro_cate_info .cppl {
  padding: 0.7rem 0.2rem;
}
.pro_cate_info .cppl .content {
  margin-bottom: 0.1rem;
}
.pro_cate_info .cppl .content .label {
  font-size: 1.125em;
  color: #666666;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.pro_cate_info .cppl .content textarea {
  width: 100%;
  border-color: #f9fafb;
  background-color: #f9fafb;
  font-family: inherit;
  font-size: inherit;
  padding: 0.2rem;
  line-height: 2;
  transition: 0.3s;
}
.pro_cate_info .cppl .content textarea:focus {
  border-color: #c7cbd2;
}
.pro_cate_info .cppl .ver {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
.pro_cate_info .cppl .ver .label {
  font-size: 1.125em;
  color: #666666;
  margin-right: 0.15rem;
}
.pro_cate_info .cppl .ver .text {
  height: 0.58rem;
  line-height: 0.58rem;
  border: 1px solid #f9fafb;
  background-color: #f9fafb;
  transition: 0.3s;
  width: 1.7rem;
  padding: 0 0.2rem;
  font-family: inherit;
  font-size: inherit;
  margin-right: 0.2rem;
}
.pro_cate_info .cppl .ver .img {
  width: 1.7rem;
  height: 0.6rem;
}
.pro_cate_info .cppl .ver .img img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f9fafb;
  object-fit: contain;
  cursor: pointer;
}
.pro_cate_info .cppl .btns {
  display: flex;
  justify-content: center;
}
.pro_cate_info .cppl .btns input {
  width: 2rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #666666;
  margin: 0 0.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 1.125em;
  color: #666666;
  cursor: pointer;
  transition: 0.3s;
}
.pro_cate_info .cppl .btns input:hover {
  background-color: #666666;
  color: #fff;
}
@media (max-width: 1024px) {
  .pro_cate_info .info {
    display: block;
  }
  .pro_cate_info .info .pics {
    width: 100%;
  }
  .pro_cate_info .info .txt {
    font-size: 1.125em;
    padding: 0.2rem 0;
  }
  .pro_cate_info .tab_info .tab .item {
    width: 25%;
  }
  .pro_cate_info .cptd .item .txt {
    padding-top: 0;
  }
  .pro_cate_info .gxdz {
    flex-direction: column-reverse;
  }
  .pro_cate_info .gxdz .left {
    width: 100%;
  }
  .pro_cate_info .gxdz .right {
    margin-bottom: 0.3rem;
  }
  .pro_cate_info .gxdz .tab_content_second {
    padding-left: 0;
  }
  .pro_cate_info .gxdz .tab-pane_second .swiper {
    position: relative;
    height: 5rem;
  }
  .pro_cate_info .gxdz .swiper-button-next:after,
  .pro_cate_info .gxdz .swiper-button-prev:after {
    font-size: 1.5em;
  }
}
.relatedpro {
  padding: 0.8rem 0 0.6rem;
  background-color: #f1f3f4;
}
.pro_list {
  margin-left: -0.1rem;
  margin-right: -0.1rem;
  display: flex;
  flex-wrap: wrap;
}
.pro_list .item {
  width: 25%;
  padding: 0 0.1rem;
}
@media (max-width: 1024px) {
  .pro_list .item {
    width: 50%;
  }
}
.pro_list .pic {
  position: relative;
  padding-top: 122.10526316%;
  overflow: hidden;
}
.pro_list .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.pro_list .pic img:hover {
  transform: scale(1.1);
}
.pro_list .item {
  margin-bottom: 0.2rem;
}
.pro_list a {
  display: block;
  position: relative;
}
.pro_list .txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.502);
  color: #fff;
  padding: 0.09rem 0.2rem;
}
.pro_list h2 {
  font-size: 1.125em;
  line-height: 1.667;
  font-weight: 300;
}
.pro_list .des {
  font-weight: 300;
  line-height: 1.875;
}
.htmlContent p,
.htmlContent h1,
.htmlContent h2,
.htmlContent h3,
.htmlContent h4 {
  margin: 1em 0;
}
.htmlContent img {
  height: auto !important;
}
.Pages {
  text-align: center;
  font-size: 0;
  padding-top: 0.34rem;
}
.Pages .p_cur,
.Pages .p_count,
.Pages .p_total,
.Pages .a_first,
.Pages .a_end,
.Pages .p_jump {
  display: none;
}
.Pages .num {
  display: inline-block;
}
.Pages a {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  text-align: center;
  line-height: 0.4rem;
  font-size: 0.16rem;
  background-color: #e0e3e6;
  margin: 0 0.1rem;
  color: #888888;
  vertical-align: top;
  border: 1px solid transparent;
  transition: 0.3s;
}
.Pages a:hover {
  color: #fff;
  background-color: #e62129;
}
.Pages .a_cur {
  background-color: #e62129;
  color: #fff;
}
.Pages .a_prev,
.Pages .a_next {
  font-size: 0;
  position: relative;
}
.Pages .a_prev::before,
.Pages .a_next::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  z-index: 3;
  width: 0.08rem;
  height: 0.08rem;
  border-left: 0.02rem solid #888888;
  border-bottom: 0.02rem solid #888888;
  transform: rotate(45deg);
}
.Pages .a_prev:hover::before,
.Pages .a_next:hover::before {
  border-color: #fff;
}
.Pages .a_next::before {
  transform: rotate(225deg);
}
@media (max-width: 1024px) {
  .Pages a {
    font-size: 0.24rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
  }
}
.customization .part01 {
  padding: 0.8rem 0 0.4rem;
}
.customization .part01 .flex_box {
  margin-bottom: 0.4rem;
}
.customization .part01 .flex_box .txt {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  flex: 1;
  padding: 0.3rem 0.2rem;
}
.customization .part01 .flex_box .txt .htmlContent {
  flex: 1;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 0.2rem;
}
.customization .part01 .flex_box .txt .txt_footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.customization .part01 .flex_box .txt .txt_footer .qrcode {
  width: 1.2rem;
  text-align: center;
}
.customization .part01 .flex_box .txt .txt_footer .qrcode span {
  font-size: 0.14rem;
  font-weight: 300;
}
.customization .part01 .flex_box .pic {
  width: 4.5rem;
  flex-shrink: 0;
  margin-right: 0.22rem;
}
.customization .part01 .flex_box .pic img {
  display: block;
}
.customization .part01 .swiper {
  padding: 0.2rem 0.6rem;
  background-color: #fff;
}
.customization .part01 .swiper .pic {
  position: relative;
  padding-top: 150%;
  overflow: hidden;
}
.customization .part01 .swiper .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.customization .part01 .swiper .pic img:hover {
  transform: scale(1.1);
}
.customization .part01 .swiper .swiper-container {
  overflow: hidden;
}
.customization .part01 .swiper a {
  display: block;
  position: relative;
}
.customization .part01 .swiper .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.35rem 0.2rem;
  background-color: rgba(0, 0, 0, 0.502);
  color: #fff;
  line-height: 1;
  font-weight: 300;
}
.customization .part01 .swiper .swiper-button-next,
.customization .part01 .swiper .swiper-button-prev {
  color: #333;
}
.customization .part01 .swiper .swiper-button-next::after,
.customization .part01 .swiper .swiper-button-prev::after {
  font-size: 2em;
}
.customization .part01 .swiper .swiper-slide {
  position: relative;
}
.customization .part01 .swiper .swiper-slide::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 2px solid transparent;
  transition: 0.3s;
  z-index: 5;
}
.customization .part01 .swiper .swiper-slide-thumb-active::before {
  border-color: #cb3640;
}
.customization .part01 .swiper-main {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .customization .part01 .flex_box .pic {
    width: 100%;
  }
  .customization .part01 .flex_box .pic img {
    width: 100%;
  }
  .customization .part01 .flex_box .txt .txt_footer .qrcode {
    width: 2rem;
    margin-right: 0.1rem;
  }
}
.customization .part02 {
  padding: 0.8rem 0 0.95rem;
  background-color: #fff;
}
.customization .part02 .tab {
  display: flex;
  margin-bottom: 0.4rem;
}
.customization .part02 .tab .item {
  flex: 1;
  text-align: center;
}
.customization .part02 .tab .item a {
  display: block;
  background-color: #f9fafb;
  font-size: 1.125em;
  line-height: 0.8rem;
  color: #666666;
  transition: 0.3s;
}
.customization .part02 .tab .item:hover a,
.customization .part02 .tab .item.active a {
  background-color: #e62129;
  color: #fff;
}
.customization .part02 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.customization .part02 .list .item {
  width: calc((100% - 0.2rem) / 2);
  margin-bottom: 0.2rem;
}
.customization .part02 .list a {
  display: flex;
  background-color: #f9fafb;
}
.customization .part02 .list .pic {
  width: 2.85rem;
  flex-shrink: 0;
}
.customization .part02 .list .pic .img {
  padding-top: 122.10526316%;
  position: relative;
}
.customization .part02 .list .pic .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.customization .part02 .list .txt {
  padding: 0.2rem;
  flex: 1;
}
.customization .part02 .list .txt h2 {
  font-weight: normal;
  line-height: 1.5;
  height: 3em;
  border-bottom: 1px solid #e0e2e6;
  display: flex;
  font-size: 1em;
  align-items: baseline;
  flex-wrap: wrap;
}
.customization .part02 .list .txt h2 .title {
  font-size: 1.125em;
}
.customization .part02 .list .txt h2 .tag {
  font-weight: 300;
  font-weight: 1em;
}
.customization .part02 .list .txt ul {
  padding: 0.12rem 0;
}
.customization .part02 .list .txt li {
  display: flex;
  line-height: 1.875;
  padding-left: 0.1rem;
  color: #333333;
  font-weight: 300;
}
.customization .part02 .list .txt li i {
  width: 0.14rem;
  height: 1.875em;
  background: url(../images/icon_checked.png) center / contain no-repeat;
  margin-right: 0.1rem;
}
.customization .part02 .Pages {
  padding-top: 0.6rem;
}
@media (max-width: 1024px) {
  .customization .part02 .list .item {
    width: 100%;
  }
  .customization .part02 .list .txt li i {
    width: 0.2rem;
  }
}
.breadcrumb {
  background-color: #fff;
  box-shadow: 0 0 10px 10px #eee;
}
.breadcrumb .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breadcrumb .location {
  max-width: 50%;
  display: flex;
  align-items: baseline;
  line-height: 0.76rem;
}
.breadcrumb .location * {
  margin: 0 0.025rem;
  font-weight: 400;
}
.breadcrumb .location *:first-child {
  margin-left: 0;
}
.breadcrumb .location *:last-child {
  flex: 1;
  color: #e62129;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.breadcrumb .location b {
  font-family: '宋体';
}
.breadcrumb .search {
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
}
.breadcrumb .search .select {
  width: 1.8rem;
  position: relative;
  margin-right: 0.1rem;
}
.breadcrumb .search .select label {
  padding: 0 0.3rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f9fafb;
  line-height: 0.5rem;
  border-radius: 0.25rem;
}
.breadcrumb .search .select label::after {
  content: '';
  width: 0.14rem;
  height: 0.08rem;
  position: absolute;
  right: 0.2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/icon-down.svg) center / contain no-repeat;
  transition: 0.3s;
}
.breadcrumb .search .select label.active::after {
  transform: rotate(180deg);
}
.breadcrumb .search .select select {
  height: 0.5rem;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}
.breadcrumb .input-box {
  width: 3.2rem;
  position: relative;
}
.breadcrumb .input-box .text {
  width: 100%;
  border: 1px solid #f9fafb;
  padding: 0 0.3rem;
  font-size: 1em;
  height: 0.5rem;
  background-color: #f9fafb;
  border-radius: 0.25rem;
  font-family: inherit;
  transition: 0.3s;
}
.breadcrumb .input-box .text:focus {
  border-color: #e62129;
}
.breadcrumb .input-box .btn {
  width: 0.22rem;
  height: 0.22rem;
  position: absolute;
  right: 0.2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/icon_search_black.svg) center / contain no-repeat;
}
@media (max-width: 1024px) {
  .breadcrumb .container {
    display: block;
  }
  .breadcrumb .search .select {
    width: 2.2rem;
  }
  .breadcrumb .search .input-box {
    flex: 1;
  }
}
.news {
  padding: 0.8rem 0;
}
.news-list {
  padding-top: 0.4rem;
}
.news-list .item {
  margin-bottom: 0.6rem;
}
.news-list .item a {
  display: flex;
  align-items: center;
}
.news-list .item a:hover .pic img {
  transform: scale(1.1);
}
.news-list .item a:hover .txt h2 {
  color: #e62129;
}
.news-list .pic {
  width: 2.76rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.news-list .pic .img {
  padding-top: 67.75362319%;
  position: relative;
  overflow: hidden;
}
.news-list .pic .img img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.news-list .time {
  color: #333333;
  margin-right: 0.35rem;
  flex-shrink: 0;
}
.news-list .time .day {
  font-size: 1.5em;
  font-weight: bold;
}
.news-list .txt {
  display: flex;
  align-items: center;
}
.news-list .txt .info {
  flex: 1;
}
.news-list .txt h2 {
  font-size: 1.125em;
  font-weight: normal;
  margin-bottom: 0.1rem;
}
.news-list .txt .des {
  display: flex;
}
.news-list .txt .des .dot2 {
  color: #333333;
  line-height: 1.875;
  margin-right: 0.4rem;
  font-weight: 300;
  height: 3.75em;
}
@media (max-width: 1024px) {
  .news-list .txt {
    display: block;
  }
  .news-list .pic {
    margin-right: 0.2rem;
  }
  .news-list .time {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.1rem;
  }
  .news-list .time .day {
    margin-right: 0.1rem;
  }
}
.hits {
  display: flex;
  line-height: 1.875em;
  color: #333;
}
.hits i {
  margin-right: 0.05rem;
  width: 0.15rem;
  height: 1.875em;
  background: url(../images/icon_eye.png) center / contain no-repeat;
}
.industry-list .item {
  margin-bottom: 0.2rem;
}
.industry-list .item a {
  display: flex;
  padding: 0.4rem 0.2rem;
  background-color: #fff;
  align-items: center;
  transition: 0.3s;
}
.industry-list .item a:hover {
  background-color: #f1f2f3;
}
.industry-list .item .time {
  margin-right: 0.24rem;
  flex-shrink: 0;
}
.industry-list .item .time .year {
  color: #c9cdd3;
  line-height: 1;
  border: 1px solid #c9cdd3;
  padding: 0.05rem 0.1rem 0.22rem;
  text-align: center;
  display: inline-block;
}
.industry-list .item .time .day {
  font-size: 1.125em;
  color: #ffffff;
  line-height: 1;
  background-color: #c9cdd3;
  text-align: center;
  padding: 0.13rem 0.06rem;
  margin-top: -0.22rem;
  margin-left: 0.1rem;
}
.industry-list .item .txt {
  padding: 0 0.28rem;
  border-left: 1px solid #c7cbd2;
  flex: 1;
}
.industry-list .item .txt h2 {
  font-size: 1.375em;
  line-height: 1;
  margin-bottom: 0.18rem;
  color: #333333;
}
.industry-list .item .txt .des {
  color: #333333;
  line-height: 1.875;
  font-weight: 300;
}
.industry-list .item .hits {
  margin-top: 0.05rem;
}
.news-info {
  padding: 0.8rem 0;
}
.news-info .title h1 {
  font-size: 0.3rem;
  color: #333333;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #c7cbd2;
}
.news-info .title .time-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.12rem;
}
.news-info .title .time-wrap .time {
  color: #333333;
  line-height: 1;
  flex: 1;
}
.news-info .title .time-wrap #shares {
  margin-right: 0.15rem;
}
.news-info .htmlContent {
  padding-top: 0.4rem;
  padding-bottom: 0.9rem;
  line-height: 1.667;
}
.news-info .btns {
  display: flex;
  justify-content: space-between;
}
.news-info .btns a {
  display: flex;
  max-width: 40%;
  align-items: center;
  padding: 0 0.31rem;
  line-height: 0.49rem;
  border-radius: 0.25rem;
  border: 1px solid #666;
  color: #666666;
  transition: 0.3s;
}
.news-info .btns a .dot {
  margin: 0 0.24rem;
}
.news-info .btns a:hover {
  background-color: #e62129;
  color: #fff;
  border-color: #e62129;
}
.project {
  padding: 0.8rem 0 0;
}
.project .tab {
  display: flex;
  margin-bottom: 0.6rem;
}
.project .tab .item {
  flex: 1;
  max-width: 2rem;
}
.project .tab .item a {
  display: block;
  text-align: center;
  line-height: 0.6rem;
}
.project .tab .item:hover a,
.project .tab .item.active a {
  color: #fff;
  background-color: #e62129;
}
.project .Pages {
  margin-bottom: 0.7rem;
}
.project_list {
  margin-bottom: 0.7rem;
  margin-left: -0.15rem;
  margin-right: -0.15rem;
  display: flex;
  flex-wrap: wrap;
}
.project_list .item {
  width: 33.33%;
  padding: 0 0.15rem;
}
@media (max-width: 1024px) {
  .project_list .item {
    width: 50%;
  }
}
.project_list .item {
  margin-bottom: 0.3rem;
}
.project_list .pic {
  position: relative;
  padding-top: 84.21052632%;
  overflow: hidden;
}
.project_list .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.project_list .pic img:hover {
  transform: scale(1.1);
}
.project_list a {
  position: relative;
}
.project_list .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.165rem 0.2rem;
  font-weight: 300;
}
.project_list h2 {
  font-size: 1.125em;
  color: #ffffff;
  font-weight: 300;
}
.project_list .des {
  color: #ffffff;
  line-height: 1.875;
}
.bot_links {
  display: flex;
  flex-wrap: wrap;
}
.bot_links .item {
  width: 50%;
  position: relative;
}
.bot_links .pic {
  position: relative;
  padding-top: 29.16666667%;
  overflow: hidden;
}
.bot_links .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.bot_links .pic img:hover {
  transform: scale(1.1);
}
.bot_links .pic::after {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
}
.bot_links .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.bot_links .txt h2 {
  font-size: 1.375em;
  color: #ffffff;
  font-weight: normal;
  margin-bottom: 0.35rem;
}
.bot_links .txt .more a {
  display: inline-block;
  min-width: 2rem;
  padding: 0 0.2rem;
  text-align: center;
  height: 0.5rem;
  line-height: 0.48rem;
  border-radius: 0.25rem;
  border: 1px solid #f9fafb;
  background-color: rgba(255, 255, 255, 0.102);
  color: #fff;
  transition: 0.3s;
}
.bot_links .txt .more a:hover {
  background-color: #e62129;
  border-color: #e62129;
}
@media (max-width: 1024px) {
  .bot_links .item {
    width: 100%;
  }
}
.project-info {
  padding-top: 0.7rem;
}
.project-info .title {
  text-align: center;
  margin-bottom: 0.6rem;
}
.project-info .title h1 {
  font-size: 0.3rem;
  color: #333333;
  margin-bottom: 0.3rem;
}
.project-info .title .des {
  display: flex;
  justify-content: center;
}
.project-info .title .des .item {
  display: flex;
  align-items: center;
  margin: 0 0.25rem;
  font-size: 1.125em;
  color: #333333;
  font-weight: 300;
}
.project-info .title .des .item i {
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 0.13rem;
}
.project-info .title .des .item .icon_site {
  background-image: url(../images/icon-site.png);
}
.project-info .title .des .item .icon_time {
  background-image: url(../images/icon-time.png);
}
.project-info .htmlContent {
  padding-bottom: 1.2rem;
}
.project-info .count-box {
  background-color: #fff;
  margin-bottom: 0.6rem;
}
.project-info .count-box .container {
  display: flex;
}
.project-info .count-box .container .item {
  flex: 1;
  text-align: center;
  font-size: 1.125em;
  color: #333333;
  font-weight: 300;
  padding: 0.6rem 0;
  position: relative;
}
.project-info .count-box .container .item::after {
  content: '';
  width: 1px ;
  height: 0.6rem;
  background-color: #d1d1d1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.project-info .count-box .container .item:last-of-type::after {
  display: none;
}
.project-info .count-box .container .count_div {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.project-info .count-box .container .count_div .count {
  font-size: 2em;
  color: #e62129;
  font-weight: bold;
  margin-right: 0.1rem;
}
.other-case {
  margin-bottom: 0.6rem;
}
.other-case .title {
  font-size: 0.3rem;
  color: #333333;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-align: left;
  font-weight: bold;
}
.other-case .swiper {
  margin-left: -0.9rem;
  margin-right: -0.9rem;
  padding: 0 0.9rem;
}
.other-case .swiper-container {
  overflow: hidden;
}
.other-case a {
  position: relative;
  display: block;
}
.other-case .pic {
  position: relative;
  padding-top: 84.21052632%;
  overflow: hidden;
}
.other-case .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.other-case .pic img:hover {
  transform: scale(1.1);
}
.other-case .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.165rem 0.2rem;
  font-weight: 300;
}
.other-case h2 {
  font-size: 1.125em;
  color: #ffffff;
  font-weight: 300;
}
.other-case .des {
  color: #ffffff;
  line-height: 1.875;
}
.other-case .swiper-button-prev,
.other-case .swiper-button-next {
  width: 0.6rem;
  height: 0.6rem;
  background-color: #e0e1e1;
  border-radius: 0.06rem;
  transition: 0.3s;
}
.other-case .swiper-button-prev::after,
.other-case .swiper-button-next::after {
  font-size: 2em;
  color: #666;
}
.other-case .swiper-button-prev:hover,
.other-case .swiper-button-next:hover {
  background-color: #cb3640;
}
.other-case .swiper-button-prev:hover::after,
.other-case .swiper-button-next:hover::after {
  color: #fff;
}
@media (max-width: 1024px) {
  .other-case .swiper {
    margin-left: -0.3rem;
    margin-right: -0.3rem;
    padding: 0 0.9rem;
  }
}
.about_part01 {
  padding: 0.8rem 0 0.6rem;
}
.about_title {
  padding-left: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
  background: linear-gradient(to right, #cdd1d1 0%, rgba(205, 209, 209, 0.8) 40%, rgba(205, 209, 209, 0) 60%);
}
.about_title h2 {
  font-size: 1.375em;
  color: #666666;
  line-height: 0.6rem;
}
.about_part02 {
  padding-bottom: 1rem;
  padding-top: 0.5rem;
  background-color: #fff;
}
.about_part02 .flex_box {
  align-items: center;
}
.about_part02 .flex_box .pic {
  width: 3.7rem;
  flex-shrink: 0;
}
.about_part02 .flex_box .pic img {
  width: 100%;
}
.about_part02 .flex_box .txt {
  flex: 1;
}
@media (max-width: 1024px) {
  .about_part02 .flex_box .pic {
    padding: 0.3rem 0 0;
    width: 100%;
  }
}
.about_part03 {
  padding-bottom: 0.6rem;
  padding-top: 0.5rem;
}
.about_part03 .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
}
.about_part03 .list .item {
  padding: 0 0.37rem;
  font-size: 1.75em;
  line-height: 1.364;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.about_part03 .list .plus {
  font-size: 16px;
  padding: 0 !important;
}
.about_part03 .list .plus:last-of-type {
  display: none;
}
.about_part03 .list .plus i {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}
.about_part03 .list .plus i::before,
.about_part03 .list .plus i::after {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  background-color: #b6b6b6;
}
.about_part03 .list .plus i::before {
  transform: rotate(90deg);
}
@media (max-width: 1024px) {
  .about_part03 .list .item {
    padding: 0 0.1rem;
  }
}
.about_part04 {
  background-color: #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.about_part04 .list {
  padding-top: 0.3rem;
  margin-left: -0.135rem;
  margin-right: -0.135rem;
  display: flex;
  flex-wrap: wrap;
}
.about_part04 .list .item {
  width: 25%;
  padding: 0 0.135rem;
}
@media (max-width: 1024px) {
  .about_part04 .list .item {
    width: 50%;
  }
}
.about_part04 .list .pic {
  position: relative;
  padding-top: 71.42857143%;
  overflow: hidden;
}
.about_part04 .list .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.about_part04 .list .pic img:hover {
  transform: scale(1.1);
}
.about_part04 .list .item {
  margin-bottom: 0.25rem;
}
.about_part04 .list .pic {
  border: 1px solid #f1f3f4;
  margin-bottom: 0.3rem;
}
.about_part04 .list img {
  transform: scale(1) !important;
}
.about_part04 .list .txt {
  text-align: center;
}
.about_part04 .list .txt .dot {
  line-height: 1;
  font-size: 1.125em;
}
.about_part05 {
  padding-top: 0.5rem;
}
.about_part05 .htmlContent {
  padding-top: 0.8rem;
  padding-bottom: 0.2rem;
}
.about_part05 .about_title .des .num {
  font-size: 0.32rem;
  color: #333;
}
.about_part05 .about_title .des .unit {
  color: #999;
}
.honor {
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
}
.honor .column_title {
  margin-bottom: 1.2rem;
}
.honor .list {
  margin-bottom: 1.25rem;
  margin-left: -0.14rem;
  margin-right: -0.14rem;
  display: flex;
  flex-wrap: wrap;
}
.honor .list .item {
  width: 33.33%;
  padding: 0 0.14rem;
}
@media (max-width: 1024px) {
  .honor .list .item {
    width: 50%;
  }
}
.honor .list .item {
  margin-bottom: 0.3rem;
}
.honor .list a {
  display: block;
  border: 1px solid #c9cdd3;
}
.honor .list .pic {
  position: relative;
  padding-top: 138.94736842%;
  overflow: hidden;
}
.honor .list .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.honor .list .pic img:hover {
  transform: scale(1.1);
}
.develop_01 {
  padding: 0.8rem 0;
}
.develop_02 {
  background-color: #fff;
  padding: 0.8rem 0;
}
.develop_02 .title {
  text-align: center;
  font-size: 0.38rem;
  color: #999999;
  line-height: 1;
  font-weight: bold;
  padding-bottom: 0.3rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.develop_02 .title::before {
  content: '';
  width: 1.03rem;
  height: 0.04rem;
  background-color: #e62129;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.develop_02 .list {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 0.5rem;
}
.develop_02 .list::before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #c9cdd3;
}
.develop_02 .list .item {
  margin-bottom: 0.6rem;
  position: relative;
}
.develop_02 .list .item::before {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-color: #fff;
  border: 4px solid #e62129;
  position: absolute;
  top: 0.45rem;
  right: 50%;
  transform: translateX(50%) rotate(45deg);
}
.develop_02 .list .item:nth-of-type(odd) {
  padding-right: calc(50% + 0.65rem);
  text-align: right;
  padding-left: 0.5rem;
}
.develop_02 .list .item:nth-of-type(even) {
  padding-left: calc(50% + 0.65rem);
  padding-right: 0.5rem;
}
.develop_02 .list .item:last-of-type {
  margin-bottom: 0;
}
.develop_02 .list .time {
  font-size: 0.26rem;
  color: #e62129;
  line-height: 1.154;
  font-weight: bold;
  font-family: "AlibabaPuHuiTiH";
  margin-bottom: 0.07rem;
}
.develop_02 .list h2 {
  font-size: 0.32rem;
  color: #333333;
  margin-bottom: 0.5rem;
}
.develop_02 .list .cotent {
  font-size: 1.125em;
  color: #333333;
  line-height: 1.667;
}
@media (max-width: 1024px) {
  .develop_02 .list::before {
    left: 0;
  }
  .develop_02 .list .item::before {
    left: 0;
    transform: translateX(-50%) rotate(45deg);
  }
  .develop_02 .list .item:nth-of-type(odd) {
    text-align: left;
    padding-right: 0;
  }
  .develop_02 .list .item:nth-of-type(even) {
    padding-left: 0.5rem;
    padding-right: 0;
  }
}
.develop_03 {
  padding: 0.8rem 0 0.6rem;
}
.develop_03 .title {
  text-align: center;
  font-size: 0.38rem;
  color: #999999;
  line-height: 1;
  font-weight: bold;
  padding-bottom: 0.3rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.develop_03 .list {
  margin-left: -0.15rem;
  margin-right: -0.15rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}
.develop_03 .list .item {
  width: 33.33%;
  padding: 0 0.15rem;
}
@media (max-width: 1024px) {
  .develop_03 .list .item {
    width: 50%;
  }
}
.develop_03 .list .item {
  display: flex;
  margin-bottom: 0.3rem;
}
.develop_03 .list .item .inner {
  width: 100%;
  background-color: #fff;
  padding: 0.3rem 0.2rem;
}
.develop_03 .list .item .inner > h2 {
  font-size: 0.26rem;
  color: #333333;
  line-height: 0.6rem;
  padding: 0 0.2rem;
  background: linear-gradient(to right, #cdd1d1 0%, rgba(205, 209, 209, 0.8) 20%, rgba(205, 209, 209, 0) 50%);
  margin-bottom: 0.3rem;
}
.develop_03 .des {
  font-size: 1.125em;
  line-height: 1.667;
}
@media (max-width: 1024px) {
  .develop_03 .list .item {
    width: 100%;
  }
}
.join {
  padding-top: 0.8rem;
  padding-bottom: 0.6rem;
}
.join .item {
  background-color: #f1f2f3;
  margin-bottom: 0.2rem;
}
.join .item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.2rem;
  transition: 0.3s;
}
.join .item .title.active {
  background-color: #e62129;
}
.join .item .title.active h2 {
  color: #fff;
}
.join .item .title.active .des {
  color: #fff;
}
.join .item .title h2 {
  font-size: 1.25em;
  font-weight: normal;
}
.join .item .title .des {
  display: flex;
  color: #666;
  font-weight: 300;
}
.join .item .title .des .subitem {
  padding: 0 0.2rem;
  font-size: 1.25em;
}
.join .item .title .des .subitem:first-of-type {
  width: 2rem;
  text-align: right;
  position: relative;
}
.join .item .title .des .subitem:last-of-type {
  width: 1.6rem;
  text-align: left;
  padding-right: 0;
}
.join .item .title .des .separator {
  padding: 0;
  font-weight: normal;
}
.join .item .sub {
  display: none;
}
.join .item .sub .inner {
  padding: 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
.join .item .sub .inner > div {
  width: 50%;
  padding-right: 0.15rem;
}
.join .item .sub .inner > div:last-of-type {
  width: 100%;
}
.join .item .content {
  margin-top: 0.2rem;
}
.join .item .content p,
.join .item .content h1,
.join .item .content h2,
.join .item .content h3 {
  margin: 1em 0;
}
.proposal {
  padding: 0.8rem 0;
}
.proposal .flex_box {
  margin-bottom: 0.5rem;
}
.proposal .pic {
  padding-top: 6rem;
  position: relative;
  width: 5rem;
  flex-shrink: 0;
  margin-right: 0.2rem;
}
.proposal .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}
.proposal .txt {
  flex: 1;
}
.proposal .select {
  width: 100%;
  margin-right: 0;
}
.proposal .select label {
  background-color: #f1f2f3;
}
.proposal .input {
  position: relative;
}
.proposal .input .red {
  color: red;
  position: absolute;
  left: 0.3rem;
  top: 0;
  line-height: 0.5rem;
}
.proposal .input .text {
  padding: 0 0.4rem;
  height: 0.5rem;
  line-height: 0.5rem;
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid #f1f2f3;
  background-color: #f1f2f3;
  font-size: 1em;
  font-family: inherit;
  transition: 0.3s;
}
.proposal .input .text:focus {
  border-color: #e62129;
}
.proposal .textarea {
  width: 100%;
  resize: vertical;
  padding: 0.05rem 0.4rem;
  border: 1px solid #f1f2f3;
  background-color: #f1f2f3;
  font-size: inherit;
  font-family: inherit;
  line-height: 2;
}
.proposal .form-item {
  margin-bottom: 0.2rem;
}
.proposal .form-item:last-child {
  margin-bottom: 0;
}
.proposal .form-item2 {
  display: flex;
  margin-bottom: 0.2rem;
}
.proposal .form-item2 .box {
  margin-right: 0.1rem;
}
.proposal .form-item2 .box2 {
  flex: 1;
}
.proposal .submit {
  text-align: center;
  padding-top: 0.5rem;
}
.proposal .submit input {
  width: 2.03rem;
  text-align: center;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #666666;
  font-size: 1.125em;
  border: 1px solid #666666;
  cursor: pointer;
  transition: 0.3s;
}
.proposal .submit input:hover {
  background-color: #e62129;
  color: #fff;
  border-color: #e62129;
}
@media (max-width: 1024px) {
  .proposal .pic {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .proposal .input .text {
    height: 0.7rem;
    line-height: 0.7rem;
    border-radius: 0.35rem;
  }
  .proposal .input .red {
    line-height: 0.7rem;
  }
}
.select {
  width: 1.8rem;
  position: relative;
  margin-right: 0.1rem;
}
.select label {
  padding: 0 0.4rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f9fafb;
  line-height: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s;
  border: 1px solid #f9fafb;
  display: flex;
  align-items: baseline;
  color: #666;
}
.select label .label.select {
  color: #333;
}
.select label .red {
  color: red;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
}
.select label::after {
  content: '';
  width: 0.14rem;
  height: 0.08rem;
  position: absolute;
  right: 0.2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/icon-down.svg) center / contain no-repeat;
  transition: 0.3s;
}
.select label.active::after {
  transform: rotate(180deg);
}
.select select {
  height: 0.5rem;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .select select {
    height: 0.7rem;
  }
  .select label {
    height: 0.7rem;
    line-height: 0.7rem;
    border-radius: 0.35rem;
  }
}
@media (min-width: 1025px) {
  .fp-tableCell,
  .fp-section,
  .fullpage-wrapper {
    height: 100% !important;
    display: block !important;
  }
}
@media (max-width: 1024px) {
  .fp-section.fp-table,
  .fp-slide.fp-table,
  .fp-tableCell {
    height: auto !important;
  }
}
.fp-auto {
  height: auto !important;
}
.fp-auto .fp-tableCell {
  height: auto !important;
}
.ind_ban {
  height: 100%;
}
.ind_ban .swiper-slide {
  position: relative;
}
.ind_ban .swiper {
  height: 100%;
}
.ind_ban .pic {
  height: 100%;
  position: relative;
}
.ind_ban .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.ind_ban .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.ind_ban .txt h2 {
  font-size: 0.48rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0.1rem;
  transform: translateY(-30px);
  opacity: 0;
  transition: 1s;
}
.ind_ban .txt .des {
  font-size: 0.2rem;
  line-height: 1.5;
  font-weight: 300;
  transform: translateY(-30px);
  opacity: 0;
  transition: 1s;
}
.ind_ban .txt .more {
  min-height: 0.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: 1s;
}
.ind_ban .txt .more a {
  display: inline-block;
  min-width: 2rem;
  padding: 0 0.2rem;
  text-align: center;
  color: #fff;
  line-height: 0.5rem;
  border-radius: 0.25rem;
  font-weight: 400;
  background-color: #e62129;
  margin-top: 0.8rem;
}
.ind_ban .swiper-slide-active .txt .more,
.ind_ban .swiper-slide-active .txt h2,
.ind_ban .swiper-slide-active .txt .des {
  transform: translateY(0);
  opacity: 1;
}
.ind_ban .swiper-button-next {
  right: 0.4rem;
}
.ind_ban .swiper-button-prev {
  left: 0.4rem;
}
.ind_ban .swiper-button-next,
.ind_ban .swiper-button-prev {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.06rem;
  transition: 0.3s;
}
.ind_ban .swiper-button-next::after,
.ind_ban .swiper-button-prev::after {
  font-size: 3em;
  color: #fff;
}
.ind_ban .swiper-button-next:hover,
.ind_ban .swiper-button-prev:hover {
  background-color: #cb3640;
}
.ind_ban .swiper-button-next:hover::after,
.ind_ban .swiper-button-prev:hover::after {
  color: #fff;
}
.ind_ban .swiper-pagination {
  bottom: 0.6rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  width: 85% !important;
}
.ind_ban .swiper-pagination .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  background-color: rgba(0, 0, 0, 0.302);
  opacity: 1;
}
.ind_ban .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.302);
}
@media (max-width: 1024px) {
  .ind_ban .pic img {
    display: block;
    height: auto;
    position: relative;
  }
  .ind_ban .swiper-button-next {
    right: 0.1rem;
  }
  .ind_ban .swiper-button-prev {
    left: 0.1rem;
  }
  .ind_ban .txt {
    padding: 0 0.3rem;
  }
  .ind_ban .txt h2 {
    font-size: 0.36rem;
    line-height: 1.2;
  }
  .ind_ban .txt .des {
    margin-bottom: 0.3rem;
  }
}
.ind100 {
  height: 100%;
  padding-top: 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1024px) {
  .ind100 {
    height: auto;
    padding-top: 0.3rem;
  }
}
.ind_title {
  margin-bottom: 0;
  padding: 0.2rem;
  border-bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 50%);
}
.ind_more {
  font-size: 1.125em;
  text-align: right;
  margin-bottom: 0.15rem;
}
.ind_more a {
  display: inline-block;
  color: #333333;
  line-height: 1;
  padding-right: 1em;
  background-size: 0.7em;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(../images/icon_more.png);
}
.ind_more a:hover {
  color: #e62129;
  background-image: url(../images/icon_more_active.png);
}
.ind_pro {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ind_pro .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 100%;
  padding: 0.3rem 0;
}
.ind_pro .list {
  flex: 1;
  display: flex;
  max-height: 5.95rem;
}
.ind_pro .list .left {
  width: 40.5%;
  margin-right: 0.1rem;
  display: flex;
}
.ind_pro .list .left .item {
  width: 100%;
}
.ind_pro .list .right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ind_pro .list .right .item {
  width: calc((100% - 0.1rem) / 2);
  height: calc((100% - 0.1rem) / 2);
  margin-bottom: 0.1rem;
}
.ind_pro .list .item {
  display: flex;
  background-color: #eee;
  overflow: hidden;
}
.ind_pro .list .item a {
  display: block;
  width: 100%;
  position: relative;
}
.ind_pro .list .item a .pic {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ind_pro .list .item a .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.ind_pro .list .item a .pic img:hover {
  transform: scale(1.1);
}
.ind_pro .list .item a .txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.502);
  color: #fff;
  padding: 0.09rem 0.2rem;
}
.ind_pro .list .item a h2 {
  font-size: 1.125em;
  line-height: 1.667;
  font-weight: 300;
}
.ind_pro .list .item a .des {
  font-weight: 300;
  line-height: 1.875;
}
.ind_pro.active .list .item a {
  transform: translate(0);
}
@media (max-width: 1024px) {
  .ind_pro .list {
    display: block;
    max-height: none;
  }
  .ind_pro .list .left {
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .ind_pro .list .left .pic {
    padding-top: 122.22222222%;
  }
  .ind_pro .list .right .pic {
    padding-top: 82.85714286%;
  }
}
.ind_about {
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ind_about .ind_title {
  margin-bottom: 0.35rem;
}
.ind_about .htmlContent {
  width: 6.2rem;
  margin-bottom: 0.3rem;
}
.ind_about .more a {
  display: inline-block;
  min-width: 2rem;
  padding: 0 0.2rem;
  text-align: center;
  color: #666666;
  line-height: 0.5rem;
  border-radius: 0.25rem;
  font-weight: 400;
  border: 1px solid #666666;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.2);
}
.ind_about .more a:hover {
  background-color: #e62129;
  color: #fff;
  border-color: #e62129;
}
@media (max-width: 1024px) {
  .ind_about {
    padding-top: 0.6rem;
  }
  .ind_about .htmlContent {
    width: 100%;
  }
}
.ind_video {
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ind_video .ind_title {
  background: linear-gradient(to right, rgba(210, 213, 217, 0.8) 0%, rgba(210, 213, 217, 0) 50%);
  margin-bottom: 0.4rem;
}
.ind_video .list {
  display: flex;
}
.ind_video .list .left {
  width: 52.08333333%;
  margin-right: 0.1rem;
  flex-shrink: 0;
}
.ind_video .list .first {
  margin-bottom: 0.1rem;
}
.ind_video .list .first .pic {
  padding-top: 67.2%;
  position: relative;
  overflow: hidden;
}
.ind_video .list .first .pic::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url(../images/icon-play.png) center / 0.85rem no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
}
.ind_video .list .first .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.ind_video .list .first .pic:hover::after {
  opacity: 1;
}
.ind_video .list .first .pic:hover img {
  transform: scale(1.1);
}
.ind_video .list .pics {
  display: flex;
  margin-left: -0.05rem;
  margin-right: -0.05rem;
  flex-wrap: wrap;
}
.ind_video .list .pics .item {
  padding: 0 0.05rem;
  width: 33.33%;
}
.ind_video .list .pics .item .pic {
  padding-top: 76.92307692%;
  position: relative;
  overflow: hidden;
}
.ind_video .list .pics .item .pic::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url(../images/icon-play.png) center / 0.45rem no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
}
.ind_video .list .pics .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.ind_video .list .pics .item .pic:hover::after {
  opacity: 1;
}
.ind_video .list .pics .item .pic:hover img {
  transform: scale(1.1);
}
.ind_video .list .right {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.ind_video .list .txts {
  padding: 0.2rem 0;
}
.ind_video .list .txts a {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0.2rem 0.3rem;
  transition: 0.3s;
}
.ind_video .list .txts a:hover {
  background-color: #e8e9e9;
}
.ind_video .list .txts h2 {
  font-size: 1.125em;
  color: #333333;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.ind_video .list .txts .des {
  color: #333333;
  line-height: 1;
  font-weight: 300;
}
.ind_video .list .txts .time_wrap {
  text-align: right;
  color: rgba(0, 0, 0, 0.502);
  line-height: 1;
}
.ind_video .list .txts .time_wrap .hits {
  justify-content: flex-end;
}
.ind_video .list .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind_video .list .btn a {
  display: inline-block;
  min-width: 2rem;
  padding: 0 0.2rem;
  text-align: center;
  color: #666666;
  line-height: 0.5rem;
  border-radius: 0.25rem;
  font-weight: 400;
  border: 1px solid #666666;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.2);
}
.ind_video .list .btn a:hover {
  background-color: #e62129;
  color: #fff;
  border-color: #e62129;
}
@media (max-width: 1024px) {
  .ind_video {
    padding-top: 0.6rem;
    padding-bottom: 0.3rem;
  }
  .ind_video .list {
    display: block;
  }
  .ind_video .list .left {
    width: 100%;
  }
  .ind_video .list .pic::after {
    opacity: 1 !important;
  }
  .ind_video .list .txts {
    padding-bottom: 0.3rem;
  }
  .ind_video .list .btn {
    padding-bottom: 0.3rem;
  }
}
.ind_news .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.3rem 0;
}
.ind_news .ind_more {
  filter: brightness(200%) grayscale(1);
}
.ind_news .flex_box {
  flex: 1;
  max-height: 5.9rem;
}
.ind_news .left {
  width: 50%;
  margin-right: 0.1rem;
  display: flex;
}
.ind_news .left .item {
  width: 100%;
  height: 100%;
}
.ind_news .left a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.ind_news .left a .pic {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.ind_news .left a .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.ind_news .left a .txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.502);
  color: #fff;
  padding: 0.09rem 0.2rem;
}
.ind_news .left a h2 {
  font-size: 1.125em;
  line-height: 1.667;
  font-weight: 300;
}
.ind_news .left a .des {
  font-weight: 300;
  line-height: 1.875;
}
.ind_news .right {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.ind_news .right .item {
  height: calc(100% / 6);
}
.ind_news .right .item a {
  display: flex;
  align-items: center;
  padding: 0 0.2rem 0 0.28rem;
  height: 100%;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.2);
}
.ind_news .right .item a:hover {
  background-color: rgba(255, 255, 255, 0.102);
}
.ind_news .right .item .time {
  color: #fff;
  margin-right: 0.25rem;
  flex-shrink: 0;
}
.ind_news .right .item .time .day {
  font-size: 1.4em;
  font-weight: bold;
}
.ind_news .right .item .txt {
  margin-right: 0.5rem;
  flex: 1;
}
.ind_news .right .item h2 {
  font-size: 1.125em;
  color: #ffffff;
  font-weight: 300;
}
.ind_news .right .item .hits {
  color: #fff;
}
@media (max-width: 1024px) {
  .ind_news .flex_box {
    max-height: none;
  }
  .ind_news .left {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .ind_news .left a .pic {
    padding-top: 102.01680672%;
  }
  .ind_news .right .item a {
    padding: 0.2rem 0.2rem 0.2rem 0.28rem;
  }
}
.video {
  padding: 0.8rem 0;
}
.video .video_list {
  margin-left: -0.15rem;
  margin-right: -0.15rem;
  display: flex;
  flex-wrap: wrap;
}
.video .video_list .item {
  width: 33.33%;
  padding: 0 0.15rem;
}
@media (max-width: 1024px) {
  .video .video_list .item {
    width: 50%;
  }
}
.video .video_list .item {
  margin-bottom: 0.3rem;
}
.video .video_list .pic {
  position: relative;
  padding-top: 73.68421053%;
  overflow: hidden;
}
.video .video_list .pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: 0.3s;
}
.video .video_list .pic img:hover {
  transform: scale(1.1);
}
.video .video_list .pic::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url(../images/icon-play.png) center / 0.65rem no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
}
.video .video_list a {
  position: relative;
}
.video .video_list a:hover .pic::after {
  opacity: 1;
}
.video .video_list a:hover .pic img {
  transform: scale(1.1);
}
.video .video_list .txt {
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.165rem 0.2rem;
  font-weight: 300;
}
.video .video_list h2 {
  font-size: 1.125em;
  color: #ffffff;
  font-weight: 300;
}
.video .video_list .des {
  color: #ffffff;
  line-height: 1.875;
}
@media (max-width: 1024px) {
  .video .video_list .pic::after {
    opacity: 1;
  }
}
.video_box {
  padding: 0.3rem 0;
}
.video_box .video {
  padding-top: 55%;
  position: relative;
}
.video_box .video iframe,
.video_box .video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.noData {
  text-align: center;
  margin-bottom: 0.8rem;
}
.search-list {
  padding: 3.125% 0;
}
.search-list .item {
  line-height: 60px;
  border-bottom: 1px solid #eee;
  padding-right: 80px;
  position: relative;
}
.search-list .item .time {
  position: absolute;
  font-size: 14px;
  font-family: 'Roboto';
  color: #8c8c8c;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.friendly-links {
  padding: 0.3rem 0;
  background-color: #000;
}
.friendly-links .item {
  display: flex;
  margin-bottom: 0.1rem;
}
.friendly-links .item .label {
  flex-shrink: 0;
  width: 1.28rem;
  text-align: center;
  min-height: 0.42rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1rem;
  color: #fff;
  background-color: #e62129;
  border-radius: 0.25rem;
  line-height: 1.3;
}
.friendly-links .item .links {
  display: flex;
  flex-wrap: wrap;
}
.friendly-links .item .links li {
  line-height: 0.42rem;
}
.friendly-links .item .links li:last-of-type a {
  border-right: 0;
}
.friendly-links .item .links a {
  padding: 0 0.2rem;
  border-right: 1px solid #666;
  color: #fff;
}
.friendly-links .item .links a:hover {
  color: #e62129;
}
