样式 笔记

时间:2024-11-07 08:21:41

  .dot-shadow_5 {

    /* 添加圆形阴影 */

    /* 解释:0 0 是阴影的x,y偏移量;10px 是阴影的模糊半径;rgba(0,0,0,0.5) 是阴影的颜色和透明度 */

    box-shadow: 0 0 5px rgba(0, 0, 0, 1);

  }

  .dot-shadow_10 {

    box-shadow: 0 0 10px rgba(0, 0, 0, 1);

  }

.swiper-left {

    width: 30px;

    height: 120px;

    flex-shrink: 0;/* 防止它们缩小 */

    color: #01dcff;

    cursor: pointer;

    font-size: 20px;

    padding-left: 1px;

    line-height: 120px;

    user-select: none;

    margin-right: 6px;

  }

  .swiper-right {

    width: 30px;

    height: 120px;

    flex-shrink: 0;/* 防止它们缩小 */

    color: #01dcff;

    cursor: pointer;

    font-size: 20px;

    padding-left: 10px;

    line-height: 120px;

    user-select: none;

    margin-left: 6px;

  }