@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);
  }
}
  .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: #1482FF;
    border-color: #1482FF;
  }
  
  .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;
    margin-top: 0.66rem;
  }
  
  .banner-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("/assets/img/news_banner.jpg");
    color: #fff;
    background-color: #000;
  }
  .banner-section .section-box {
    padding: 0.64rem 0;
    text-align: center;
  }
  .banner-section .section-box .title {
    font-size: 0.56rem;
    line-height: 0.68rem;
    font-weight: 900;
    margin-bottom: 0.24rem;
  }
  .banner-section .section-box .info {
    font-size: 0.2rem;
    line-height: 0.3rem;
    font-weight: 500;
  }
  
  .crumb-section.outer {
    padding-bottom: 0;
  }
  
  .list-section .section-box {
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
  }
  .list-section .section-box .section-main {
    display: flex;
  }
.list-section .nav-box {
  display: flex;
  align-items: center;
}
.list-section .nav-box .nav-item {
  margin-right: 0.24rem;
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #797979;
}
.list-section .nav-box .nav-item:hover {
  color: #012FA7;
}
.list-section .nav-box .nav-item.active {
  font-size: 0.24rem;
  line-height: 0.36rem;
  color: #000;
  font-weight: 700;
}
.list-section .nav-box .nav-item.active:hover {
  color: inherit;
}
  .list-section .rec-box {
    width: 25%;
    margin-right: 0.24rem;
    flex-shrink: 0;
  }
  .list-section .rec-box .nav {
    margin-bottom: 0.24rem;
    display: flex;
    align-items: flex-end;
  }
  .list-section .rec-box .nav li {
    font-weight: 500;
    font-size: 0.18rem;
    line-height: 0.28rem;
    color: #797979;
    margin-right: 0.24rem;
    cursor: pointer;
  }
  .list-section .rec-box .nav li.active {
    font-weight: 700;
    color: #000;
    font-size: 0.24rem;
    line-height: 0.36rem;
  }
  .list-section .rec-box .rec-main {
    padding-right: 20%;
margin-bottom: 0.3rem;
  }
  .list-section .rec-box .rec-main .rec-list-item {
    display: none;
  }
  .list-section .rec-box .rec-main .rec-list-item li {
    margin-bottom: 0.12rem;
    font-weight: 500;
    color: #797979;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .list-section .rec-box .rec-main .rec-list-item li::before {
    content: "";
    width: 0;
    height: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
    background-color: #000;
    transition: all ease 0.2s;
    border-radius: 4px;
  }
  .list-section .rec-box .rec-main .rec-list-item li:hover, .list-section .rec-box .rec-main .rec-list-item li.active {
    font-weight: 900;
    color: #000;
  }
  .list-section .rec-box .rec-main .rec-list-item li:hover::before, .list-section .rec-box .rec-main .rec-list-item li.active::before {
    width: 0.12rem;
    margin-right: 0.04rem;
  }
  .list-section .rec-box .rec-main .rec-list-item a {
    color: inherit;
  }
  .list-section.search-section .news-box {
    min-width: 100%;
  }
  .list-section .news-box .flex {
    align-items: center;
    justify-content: space-between;
    margin-top: 0.06rem;
    margin-bottom: -0.04rem;
  }
.list-section .news-box form, .list-section .news-box .form {
    display: flex;
    font-size: 0.46rem;
    padding: 0.03rem 0.15rem;
    border-radius: 0.3rem;
    border: 1px solid rgb(121, 121, 121);
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .list-section .news-box input#search-keyword {
    width: 1.2rem;
    border: none;
    outline: none;
    margin-right: 0.08rem;
    color: #797979;
    font-size: 0.16rem;
    padding: 0;
    line-height: 0.24rem;
  }
  .list-section .news-box button.search-submit {
    width: 0.18rem;
    padding: 0;
    height: 0.18rem;
    cursor: pointer;
    background: url(/assets/img/icon-search.png) no-repeat center/cover;
  }
  .list-section .content-box {
    width: calc(80% - 0.48rem);
  }
  .list-section .content-box .top-box {
    height: 4.28rem;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background-color: black;
    padding: 0.64rem;
    position: relative;
  }
  .list-section .content-box .top-box::before {
    content: "";
    background: linear-gradient(0, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .list-section .content-box .top-box .inner {
    position: absolute;
    z-index: 1;
    left: 0.64rem;
    right: 0.64rem;
  }
  .list-section .content-box .top-box .tags {
    display: flex;
    align-items: center;
  }
  .list-section .content-box .top-box .tag {
    padding: 0.04rem 0.18rem;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    font-size: 0.16rem;
    line-height: 0.24rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 0.24rem;
  }
  .list-section .content-box .top-box .title {
    margin: 0.24rem 0 0.12rem;
    font-weight: 700;
    font-size: 0.32rem;
    line-height: 0.44rem;
  }
  .list-section .content-box .top-box .time {
    display: flex;
    align-items: center;
    font-size: 0.2rem;
    line-height: 0.3rem;
  }
  .list-section .content-box .top-box .view {
    margin-left: 0.48rem;
    padding-left: 0.2rem;
    background: url(/assets/img/icon-view2.png) no-repeat left center/0.18rem auto;
  }
  .list-section .content-box .content {
    padding: 0.48rem 0.36rem 0.24rem;
    word-break: break-all;
    font-size: 0.16rem;
    line-height: 0.24rem;
  }
  .list-section .content-box .content #addlink a {
    color: #012FA7;
  }
  .list-section .content-box .content img {
    max-width: 100%;
    /* max-height: 100vh; */
    margin: 0 auto;
    display: block;
  }
  .list-section .content-box .content p + p {
    margin: 0.24rem 0;
  }
  .list-section .content-box .content h3, .list-section .content-box .content h2 {
    margin: 0.36rem 0 0.12rem;
  }
  .list-section .content-box .content video {
    margin: auto;
    max-width: 100%;
    max-height: 76vh;
    position: relative;
    border-radius: 46px;
  }
  .list-section .content-box .content [data-w-e-type=video] {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .list-section .content-box .content [data-w-e-type=video]::before {
    content: "";
    position: absolute;
    background: url(/assets/img/cbb9e54bc88e61fa847e234238595c2.png) no-repeat center/100% 100%;
    left: -23px;
    right: -24px;
    bottom: -10px;
    top: -16px;
  }
  .list-section .content-box .link-box {
    margin-top: 0.48rem;
  }
  .list-section .content-box .link-box .com-news-align {
    background-color: #F1F1F1;
    padding: 0.36rem;
  }
  .list-section .content-box + .rec-box {
    margin-right: 0;
    margin-left: 0.48rem;
    width: 20%;
    flex-shrink: 0;
  }
  .list-section .content-box + .rec-box .rec-main {
    padding-right: 0;
  }
  .list-section .content-box .add-price {
    padding: 0.09rem 0.29rem;
    font-size: 0.16rem;
    line-height: 0.24rem;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    display: block;
    margin: 0 auto 0.24rem;
  }
  .list-section.details .section-box {
    padding-top: 0.36rem;
    padding-bottom: 0.48rem;
  }
  .list-section.details.cc .content-box {
    width: 100%;
  }
  .list-section.details.cc h1.title {
    margin: 0.24rem 0 0.12rem;
    font-weight: 700;
    font-size: 0.32rem;
    line-height: 0.44rem;
  }
  .list-section.details.cc .content {
    padding-left: 0;
    padding-right: 0;
    min-height: 80vh;
  }
  
  .pagination-box {
    margin-top: 0.64rem;
  }
  
  @media screen and (max-width: 980px) {
    .banner-section {
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      background-image: url("/assets/img/news_banner.jpg");
    }
    .banner-section .section-box {
      padding: 1.28rem 0;
    }
    .banner-section .section-box .title {
      font-size: 0.72rem;
      line-height: 0.96rem;
      margin-bottom: 0.48rem;
    }
    .banner-section .section-box .info {
      font-size: 0.32rem;
      line-height: 0.48rem;
    }
    .list-section .rec-box {
      display: none;
    }
    .list-section .news-list-box {
      margin-top: 0.48rem;
    }
    .list-section .news-list-box .com-news-align {
      margin-top: 0.36rem;
    }
    .list-section .news-list-box .com-news-align .img-addon {
      margin-bottom: 0.16rem;
    }
    .list-section .news-list-box .com-news-align .info {
      margin-top: 0.08rem;
    }
    .list-section .content-box {
      width: 100%;
    }
    .list-section .content-box .top-box {
      padding: 0.32rem;
    }
    .list-section .content-box .top-box .inner {
      left: 0.32rem;
      right: 0.32rem;
    }
    .list-section .content-box .content {
      padding: 0.24rem 0 0;
      font-size: 0.28rem;
      line-height: 0.4rem;
    }
    .list-section .content-box .content [data-w-e-type=video]::before {
      left: -0.24rem;
      right: -0.24rem;
      bottom: -0.04rem;
      top: -0.16rem;
    }
    .list-section .content-box .content img {
      width: 100% !important;
      height: auto;
    }
    .list-section .content-box .link-box .com-news-align {
      padding: 0.24rem;
      margin-top: 0.36rem;
    }
    .list-section .content-box .link-box .com-news-align .img-addon {
      display: none;
    }
    .list-section .content-box .link-box .com-news-align .flex {
      display: block;
      line-height: 1;
      font-size: 0.36rem;
    }
    .list-section .content-box .link-box .com-news-align .flex .title {
      display: inline;
    }
    .list-section .content-box .add-price {
      font-size: 0.3rem;
      padding: 0.12rem 0.64rem;
      line-height: 1.25;
      margin: 0 auto 0.48rem;
    }
    .list-section .news-box form, .list-section .news-box .form {
      padding: 0.06rem 0.3rem;
      border-radius: 0.6rem;
    }
    .list-section .news-box input#search-keyword {
      width: 2.4rem;
      font-size: 0.28rem;
      line-height: 0.4rem;
    }
    .list-section .news-box button.search-submit {
      width: 0.24rem;
      height: 0.24rem;
    }
    .list-section .news-box > .flex {
      flex-direction: column;
      align-items: flex-start;
      margin: 0;
    }
    .list-section .news-box .nav-box {
      margin-bottom: 0.16rem;
    }
    .list-section .news-box .nav-box .nav-item {
      margin-right: 0;
      font-size: 0.28rem;
      line-height: 0.44rem;
      white-space: nowrap;
    }
    .list-section .news-box .nav-box .nav-item.active {
      font-size: 0.32rem;
      line-height: 0.48rem;
    }
    .list-section .news-box .nav-box .nav-item + .nav-item {
      margin-left: 0.28rem;
    }
    .pagination-box {
      margin-top: 0.36rem;
    }
  }
  @media screen and (max-width: 776px) {
    main {
      margin-top: 1.12rem;
    }
  }
  .empty {
    height: 4rem;
    background: url(/assets/img/search-empty.png) no-repeat center/contain;
    padding-top: 3rem;
    text-align: center;
    font-size: 0.16rem;
    line-height: 0.24rem;
    color: rgb(160, 174, 192);
  }
  .empty a,
  .empty .link {
    color: rgb(1, 47, 167);
  }
  @media screen and (max-width: 776px) {
    .empty {
      height: 5rem;
      padding-top: 4rem;
      font-size: 0.24rem;
    }
  }
  
.tags {
  display: flex;
}

.tags .tag {
  padding: 0.02rem 0.12rem;
  background-color: rgba(1, 47, 167, 0.04);
  color: #012FA7;
  font-size: 0.16rem;
  line-height: 0.24rem;
  cursor: pointer;
}

.tags .tag + .tag {
  margin-left: 0.12rem;
}

@media screen and (max-width: 980px) {
  .tags .tag {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}




#connt .box {
  padding: 0.48rem 0.36rem;
  font-size: 0.32rem;
  line-height: 0.44rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  background: #f8f8f8;
  margin-bottom: 0.6rem;
}
#connt .logo {
  padding: 14px 0;
}
#connt .logo .logo-info, #connt .logo .card-name {
  font-weight: 900;
}
#connt .logo .img-addon {
  width: 192px;
  height: 48px;
  margin-bottom: 28px;
}
#connt .logo .card-info {
  margin-top: 56px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 28px;
}
#connt .logo .card-info span {
  font-weight: 900;
}
#connt .wechat-code {
  width: 266px;
  height: 360px;
}

@media screen and (max-width: 980px) {
  #connt .box {
    display: flex;
    justify-content: center;
    padding: 64px 24px;
    font-size: 20px;
    line-height: 30px;
    color: #797979;
  }
  #connt .logo {
    padding: 0;
  }
  #connt .logo .logo-inner {
    display: flex;
    justify-content: space-between;
  }
  #connt .logo .img-addon {
    width: 144px;
    height: 36px;
    margin-bottom: 12px;
  }
  #connt .logo .logo-info {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
    font-weight: 400;
  }
  #connt .logo .logo-info div {
    font-weight: 900;
    font-size: 18px;
    line-height: 28px;
    color: #141414;
  }
  #connt .logo .wechat-code {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
    padding: 4px;
    background-color: #012FA7;
    border-radius: 12px;
    margin-left: 10px;
  }
  #connt .logo .wechat-code .img-addon {
    width: 92px;
    height: 92px;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    position: relative;
  }
  #connt .logo .wechat-code .img-addon .img {
    width: auto;
    -o-object-fit: initial;
       object-fit: initial;
    position: absolute;
    top: -37px;
    height: 170%;
    left: -11px;
  }
  #connt .logo .card-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 32px;
    line-height: 44px;
    font-weight: 900;
    width: 100%;
  }
  #connt .logo .card-info {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  #connt .logo .card-info span {
    display: block;
    font-weight: 900;
    color: #141414;
  }
  #connt .logo .card-name {
    color: #141414;
  }
  #connt .layui-layer-setwin {
    top: 24px;
    right: 24px;
  }
}