.banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 2.0833333333vw; }
  .banner img {
    width: 100%;
    height: 26.0416666667vw;
    display: block;
    object-fit: cover; }
  .banner .t {
    position: absolute;
    left: 3.6458333333vw;
    bottom: 2.34375vw;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize; }

.container {
  padding: 3.125vw 5.7291666667vw;
  padding-bottom: 0; }
  .container .list .item {
    border-radius: 10px;
    background: #FAFAFA;
    padding: 1.5625vw;
    position: relative;
    display: flex;
    overflow: hidden; }
    .container .list .item:not(:last-child) {
      margin-bottom: 2.34375vw; }
    .container .list .item .pic {
      width: 33.5416666667vw;
      height: 20.3125vw;
      border-radius: 10px;
      background: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; }
      .container .list .item .pic img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: all 600ms; }
    .container .list .item .info {
      width: 38.9583333333vw;
      margin-left: 4.1666666667vw; }
      .container .list .item .info .tag {
        color: #333;
        line-height: 1.2;
        border-radius: 100px;
        background: #EEE;
        display: inline-block;
        padding: 0.46875vw 0.8333333333vw;
        transition: all 600ms; }
      .container .list .item .info .p1 {
        color: #333;
        font-weight: 500;
        margin: 0.7291666667vw 0 0.8333333333vw 0;
        line-height: 1;
        transition: all 600ms; }
      .container .list .item .info .des {
        color: #666; }
      .container .list .item .info .pt {
        margin: 1.8229166667vw 0 1.0416666667vw 0;
        color: #333;
        font-weight: 500; }
      .container .list .item .info .aList {
        display: flex;
        gap: 1.5625vw; }
        .container .list .item .info .aList .aItem {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 0.3125vw; }
          .container .list .item .info .aList .aItem .icon {
            width: 4.5833333333vw;
            height: 2.9166666667vw;
            border-radius: 10px;
            border: 1px solid #FF9600;
            display: flex;
            align-items: center;
            justify-content: center; }
            .container .list .item .info .aList .aItem .icon img {
              max-width: 100%;
              max-height: 100%;
              object-fit: contain; }
          .container .list .item .info .aList .aItem p {
            color: #666;
            width: 5.7291666667vw;
            text-transform: capitalize; }
    .container .list .item a {
      position: absolute;
      right: 0;
      top: 0;
      background: url(../images/yy.png) no-repeat;
      background-size: 100% 100%;
      width: 8.5416666667vw;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateX(100%);
      transition: all 600ms; }
      .container .list .item a img {
        display: block; }
      .container .list .item a .jt {
        width: 0.78125vw; }
      .container .list .item a p {
        margin: 0.2604166667vw 0 1.3020833333vw 0;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 500; }
      .container .list .item a .hand {
        width: 2.0833333333vw; }
    .container .list .item:hover .pic img {
      transform: scale(1.05); }
    .container .list .item:hover .info .tag {
      background: #27265F;
      color: #fff; }
    .container .list .item:hover .info .p1 {
      color: #27265F; }
    .container .list .item:hover a {
      opacity: 1;
      transform: translateX(0); }
  .container .pager {
    display: flex;
    justify-content: center;
    gap: 1.5625vw;
    align-items: center;
    margin: 2.6041666667vw 0 3.90625vw 0; }
    .container .pager .prev svg, .container .pager .next svg {
      display: block;
      width: 1.25vw; }
      .container .pager .prev svg path, .container .pager .next svg path {
        transition: all 600ms; }
    .container .pager .prev:hover svg path, .container .pager .next:hover svg path {
      fill: #27265F; }
    .container .pager .nums {
      display: flex;
      gap: 1.0416666667vw; }
      .container .pager .nums a {
        width: 2.0833333333vw;
        height: 2.0833333333vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #333;
        line-height: 1;
        transition: all 600ms; }
        .container .pager .nums a.on {
          background: #27265F;
          color: white; }

@media screen and (max-width: 768px) {
  .banner {
    margin: 0 5%; }
    .banner img {
      height: 200px; }
    .banner .t {
      left: 20px;
      bottom: 20px;
      font-size: 24px; }

  .container {
    padding: 40px 5%;
    padding-bottom: 0; }
    .container .list .item {
      padding: 15px;
      flex-direction: column;
      overflow: visible; }
      .container .list .item:not(:last-child) {
        margin-bottom: 20px; }
      .container .list .item .pic {
        width: 100%;
        height: auto; }
        .container .list .item .pic img {
          max-width: 100%;
          max-height: 100%; }
      .container .list .item .info {
        width: 100%;
        margin-left: 0;
        margin-top: 20px; }
        .container .list .item .info .tag {
          padding: 8px 12px;
          font-size: 14px; }
        .container .list .item .info .p1 {
          margin: 12px 0 14px;
          font-size: 18px; }
        .container .list .item .info .des {
          font-size: 14px; }
        .container .list .item .info .pt {
          margin: 25px 0 16px;
          font-size: 16px; }
        .container .list .item .info .aList {
          flex-wrap: wrap;
          gap: 15px;
          justify-content: center; }
          .container .list .item .info .aList .aItem {
            gap: 5px; }
            .container .list .item .info .aList .aItem .icon {
              width: 120px;
              height: 60px; }
            .container .list .item .info .aList .aItem p {
              width: 120px;
              font-size: 14px; }
      .container .list .item a {
        position: static;
        width: 100%;
        height: 80px;
        margin-top: 20px;
        opacity: 1;
        transform: translateX(0);
        border-radius: 10px;
        background: none; }
        .container .list .item a .jt {
          width: 12px;
          display: none; }
        .container .list .item a p {
          margin: 5px 0 15px;
          font-size: 14px;
          color: #27265F; }
        .container .list .item a .hand {
          width: 30px; }
    .container .pager {
      gap: 20px;
      margin: 40px 0 50px; }
      .container .pager .prev svg, .container .pager .next svg {
        width: 14px; }
      .container .pager .nums {
        gap: 15px; }
        .container .pager .nums a {
          width: 30px;
          height: 30px;
          font-size: 14px; } }

/*# sourceMappingURL=spec.css.map */
