/*vue設定*/
[v-cloak] {
  display: none;
}
/*----查詢彈出窗樣是設定-----*/
.remake {
  cursor: pointer;
}
#pages {
  text-align: center;
}
/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: .8rem;
  height: .8rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  color: #c7a46d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white;
}

.page-link:hover {
  background: #c7a46d;
  color: white;
  border-color: #c7a46d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.page-item.active .page-link {
  background: #c7a46d;
  color: white;
  border-color: #c7a46d;
  font-weight: 600;
}

.page-item.disabled .page-link {
  color: #bdc3c7;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

.page-item.disabled .page-link:hover {
  background: white;
  color: #bdc3c7;
  transform: none;
  box-shadow: none;
  border-color: #e0e0e0;
}

.style-rounded .page-link {
  border-radius: 50%;
}

.light{
	box-shadow: 0 0 10px 5px #fcf99b;
	border-radius: 100px;
	animation: light 0.5s linear infinite;
  animation-direction:alternate;
  width: 131px;
  bottom: 13px;
  left: 6px;
  height: 131px;
}
@keyframes light {
	0% {
		box-shadow: 0 0 5px 3px #fcf99b;
	}
	100% {
		box-shadow: 0 0 10px 5px #fcf99b;
	}
	
  }
  .layui-layer-shade {
    background-color: transparent !important;
  }


  .floating-button {
    position: fixed;
    right: 0;
    /* 距离右边的距离 */
    bottom: 20px;
    /* 距离底部的距离 */
    background-color: rgb(255, 210, 72, .5);
    /* 按钮背景色 */
    color: #f8ecec;
    /* 字体颜色 */
    padding: 15px 20px;
    /* 内边距 */
    border-radius: 5px;
    /* 圆角 */
    text-decoration: none;
    /* 去掉下划线 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* 阴影 */
    transition: background-color 0.3s;
    /* 背景色过渡 */
  }
  
  .floating-button:hover {
    background-color: #ffd248;
    /* 悬停时改变背景颜色 */
  }