 [v-cloak] {
   display: none;
 }

 .btn {
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
   font-size: 14px;
   border-radius: 4px;
   cursor: pointer;
   align-items: center;
 }
 
 .talk {
     background: #0051d7;
     color: white;
 }

 .swiper {
   .swiper-pagination-bullet-active {
     background: #fff !important;
     opacity: 1 !important;
   }

   .swiper-pagination-bullet {
     background: #fff;
     opacity: 0.5;

   }
 }

 .paginate {
    cursor: pointer;
    list-style-type: none;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    font-size: 14px;
    border-radius: 40px;
    color: #969696;
 }

  .page-prev, .page-next{
    width: 40px;
    color: #5c5b5b;
    font-size: 18px;
  }

  .page-list{
    padding: 0 36px;
    display: flex;
    gap: 27px;
  }

  .page-cur { 
    color: #0051D7;
  }

  .gopage{
    padding: 0 20px;
    display: flex;
    gap: 20px;
  }

  .gopage input{ 
    text-align: center;
    outline: none;
  }
  
  /* 去除聚焦时的轮廓和边框 */
  .gopage input:focus {
    outline: none;    /* 去除浏览器默认的轮廓线（通常是蓝色） */
    border: none;     /* 如果想去掉边框 */
    /* 或者设置自定义边框 */
    /* border: 1px solid #your-color; */
  }

  /* Chrome, Safari, Edge 隐藏加减按钮 */
  .gopage input[type="number"]::-webkit-outer-spin-button,
  .gopage input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .gopage button{
    color: #0051D7;
  }

  .disabled {
    color: #dddddd;
  }