@charset "UTF-8";
@media screen and (max-width: 800px) {
  .channel {
    padding: 35px 20px;
    background-color: #f6f6f6;
    box-sizing: border-box;
  }
  .channel .pattern h2 {
    color: #0d2240;
    font-size: 22px;
    font-weight: 400;
  }
  .channel .pattern .c-tab {
    width: 100%;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 2px 13px 0 hsla(0, 5%, 60.8%, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  .channel .pattern .c-tab .tab-title {
    position: relative;
    display: flex;
    color: rgb(13, 34, 64);
    font-size: 14px;
    border-bottom: 2px solid rgb(230, 230, 230);
  }
  .channel .pattern .c-tab .tab-title .tab-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    cursor: pointer;
  }
  .channel .pattern .c-tab .tab-title .line {
    border-bottom: 2px solid #1a53ff;
  }
  .channel .pattern .c-tab .tab-title .tab-line {
    --border-width: 254px;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: var(--border-width);
    height: 2px;
    background-color: #1a53ff;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .channel .pattern .c-tab .tab-item .tab-list {
    display: flex;
    height: 100%;
    transition: transform 0.1s ease-in-out;
  }
  .channel .pattern .c-tab .tab-item .tab-list li {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
    cursor: pointer;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left .visa {
    width: 80px !important;
    height: 30px !important;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left .master {
    width: 80px !important;
    height: 40px !important;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left .amer {
    width: 100px !important;
    height: 62px !important;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left .jcb {
    width: 80px !important;
    height: 40px !important;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left .dc {
    width: 100px !important;
    height: 30px !important;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 15px);
    height: 60px;
    margin-right: 15px;
    margin-bottom: 15px;
    color: #0d2240;
    font-size: 13px;
    background-color: #f8f9fb;
    border-radius: 8px;
    border: 1px solid #f4f5f6;
    box-shadow: 0 3px 10px 0 rgba(1, 101, 174, 0.2);
    box-sizing: border-box;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left > div > img {
    width: 25px;
    height: 16px;
    margin: 0 14px;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .left .country-color {
    background-color: #0165ae;
    color: #fff;
  }
  .channel .pattern .c-tab .tab-item .tab-list li .line {
    position: relative;
    width: 100%;
    height: 1px;
    background: rgb(219, 219, 219);
  }
  .channel .pattern .c-tab .tab-item .tab-list li .line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -100%;
    transform: translateX(-50%);
    width: 0px;
    height: 0px;
    border: 15px solid transparent;
    border-top-color: #fff;
    z-index: 2;
  }
  .channel .pattern .c-tab .tab-item .tab-list li .line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #dbdbdb;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .channel .pattern .c-tab .tab-item .tab-list li > .right > img {
    width: 127px;
    margin-left: 15px;
    margin-top: 20px;
  }
  /* 本地支付方式 start */
  .locality {
    background-color: rgb(57, 55, 55);
  }
  .locality > ul {
    display: flex;
    justify-content: space-around;
    padding: 30px 0;
  }
  .locality > ul > li {
    padding-left: 16px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 26px;
  }
  .locality > ul > li > span {
    position: relative;
  }
  .locality > ul > li > span::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: rgb(12, 113, 255);
  }
  .locality > ul > li:nth-child(2) > span::before {
    background-color: #fe9a42;
  }
  .locality > ul > li:nth-child(3) > span::before {
    background-color: #00c352;
  }
  .locality > ul > li > p {
    color: rgb(178, 174, 174);
    font-size: 12px;
    font-weight: 400;
  }
  /* 本地支付方式 end */
}