@charset "UTF-8";
@keyframes comSwiperPoints {
  0% {
    background-position: center -20px;
  }
  24% {
    background-position: center -20px;
  }
  25% {
    background-position: center -50px;
  }
  49% {
    background-position: center -50px;
  }
  50% {
    background-position: center -80px;
  }
  74% {
    background-position: center -80px;
  }
  75% {
    background-position: center -110px;
  }
  100% {
    background-position: center -110px;
  }
}
@keyframes comSwiperColorPoints {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-300%);
  }
}
@keyframes rotate_added {
  0% {
    background-color: #012FA7;
    transform: rotate(-180deg);
  }
  100% {
    background-color: #012FA7;
    transform: rotate(1deg);
  }
}
@keyframes rotate_added2 {
  0% {
    background-color: #012FA7;
    transform: rotate(0);
  }
  100% {
    background-color: #012FA7;
    transform: rotate(180deg);
  }
}
.btn {
  cursor: pointer;
  transition: all ease 0.2s;
  border-radius: 50px;
  border: 1px solid;
}

.btn-small {
  padding: 3px 29px;
}

.btn-normal {
  padding: 0.09rem 0.29rem;
}

.btn-theme {
  background-color: #012FA7;
  color: #fff;
  border-color: #012FA7;
}
.btn-theme:hover {
  background-color: #1664ff;
  border-color: #1664ff;
}

.btn-info {
  background-color: #fff;
  color: #797979;
  border-color: #797979;
}
.btn-info:hover {
  background-color: #012FA7;
  border-color: #012FA7;
  color: #fff;
}

.text-btn-theme {
  color: rgba(0, 0, 0, 0.72);
}
.text-btn-theme:hover {
  color: #012FA7;
}

.btn-text {
  border: none;
}

.com_main_left {
  float: left;
  width: 904px;
}

.com_main_right {
  float: right;
  width: 280px;
}

@media screen and (max-width: 1280px) {
  .com_main_left {
    width: calc(100vw - 64px - 200px - 38px);
  }
  .com_main_right {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .com_main_left {
    width: 100%;
  }
  .com_main_right {
    width: 100%;
  }
}
main {
  background-color: #fff;
}

.banner-section {
  background-color: #000;
}
.banner-section #banner-content {
  padding: 0.12rem 0 4.48rem;
  overflow: hidden;
  position: relative;
}
.banner-section .img-box-scroll {
  display: flex;
}
.banner-section [data-node=rowR] {
  position: absolute;
  right: 0;
  bottom: 0.12rem;
}
.banner-section .banner-line {
  flex-shrink: 0;
  margin: 0.12rem 0;
  padding: 0 0.12rem;
  display: flex;
  gap: 0.24rem;
  width: -moz-max-content;
  width: max-content;
}
.banner-section .banner-line .item {
  width: 3.4rem;
  height: 4.2rem;
  flex-shrink: 0;
  background-color: antiquewhite;
  background-size: contain;
  background-position: top center;
  position: relative;
  border-radius: 0.06rem;
  overflow: hidden;
  cursor: pointer;
}
.banner-section .banner-line .item::before {
  content: attr(data-title);
  font-weight: 700;
  font-size: 0.2rem;
  line-height: 0.32rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.64);
  opacity: 0;
  color: #fff;
  padding-top: 1.7rem;
  z-index: 1;
  text-align: center;
  transition: opacity ease 0.2s;
}
.banner-section .banner-line .item::after {
  position: absolute;
  z-index: 2;
  bottom: 1.7rem;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.03rem 0.3rem;
  border-radius: 1rem;
  font-size: 0.14rem;
  line-height: 0.22rem;
  background-color: #012FA7;
  content: "查看详情";
  color: #fff;
  margin: 0 auto;
  opacity: 0;
}
.banner-section .banner-line .item:hover::after, .banner-section .banner-line .item:hover:before {
  opacity: 1;
}

.flow-section .section-box {
  padding: 0.64rem 0;
  text-align: center;
}
.flow-section .section-box .section-title {
  font-size: 0.48rem;
  line-height: 0.6rem;
  margin-bottom: 0.48rem;
}

.list-section .section-box {
  padding-top: 0;
}
.list-section .section-title {
  text-align: center;
}
.list-section .list-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
  margin-top: 0.48rem;
}
.list-section .list-main .item {
  max-width: 100%;
}
.list-section .list-main .item .item-media {
  position: relative;
  overflow: hidden;
  height: 4rem;
  border-radius: 0.12rem;
}
.list-section .list-main .item .item-media .img-mob-box {
  position: absolute;
  top: 1.6rem;
  right: 0.12rem;
  width: 1.6rem;
  height: 3.4rem;
  z-index: 1;
  border: 0.05rem solid #141414;
  border-radius: 0.1rem;
  transition: all ease-out 0.5s;
}
.list-section .list-main .item .item-media .img-mob-box .img {
  border-radius: 0.06rem;
}
.list-section .list-main .item .item-media .img-pc-box {
  transition: all ease-out 1s;
  transform-origin: top center;
}
.list-section .list-main .item .item-media:hover .img-pc-box {
  transform: scale(1.02);
}
.list-section .list-main .item .item-media:hover .img-mob-box {
  transform: translateY(-2.5%);
}
.list-section .list-main .item .item-title {
  margin-top: 0.12rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-weight: 700;
  word-break: break-all;
}
.list-section .list-main .item .btn {
  font-size: 0.18rem;
  line-height: 0.28rem;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}
.list-section .list-main .item .btn:hover {
  color: #012FA7;
}

@media screen and (width <= 980px) {
  .banner-section #banner-content {
    padding: 0.24rem 0 6.36rem;
  }
  .banner-section .banner-line {
    margin: 0.24rem 0;
    padding: 0 0.12rem;
    gap: 0.24rem;
  }
  .banner-section .banner-line .item {
    width: 4.66rem;
    height: 6rem;
    border-radius: 0.1rem;
  }
  .banner-section .banner-line .item::before {
    font-size: 0.48rem;
    line-height: 0.72rem;
    padding-top: 2.28rem;
  }
  .banner-section .banner-line .item::after {
    bottom: 2rem;
    padding: 0.12rem 0.6rem;
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .flow-section .section-box {
    padding: 1.28rem 0;
  }
  .flow-section .section-box .section-title {
    font-size: 0.6rem;
    line-height: 0.82rem;
    margin-bottom: 0.82rem;
  }
  .flow-section .section-box .flow-main {
    width: 4.2rem;
    margin: 0 auto;
  }
  .list-section .list-main {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.36rem;
    margin-top: 0.48rem;
  }
  .list-section .list-main .item .item-title {
    font-size: 0.36rem;
    line-height: 0.56rem;
  }
  .list-section .list-main .item .btn {
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
}/*# sourceMappingURL=website_sh.css.map */