@import "./reset.css";
@import "/config/root.css";

.container {
  max-width: var(--containerMaxWidth, 512px);
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto
}

/* 分类导航 S */
.tabNav ul {
  background: linear-gradient(180deg, #cbf3ff 0, #88c6ea);
  border-top: 1px solid #6eb0d6;
}

.tabNav ul li {
  display: inline-block;
  padding: 10px;
  color: #333333;
  cursor: pointer;
  font-weight: bold;
}

.tabNav {
  background: linear-gradient(180deg, #cbf3ff 0, #88c6ea);
  border-top: 1px solid #6eb0d6;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  width: 100%;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  /*-khtml-user-select: none;*/
  /*-o-user-select: none;*/
  user-select: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.tabNav .left {
  position: relative;
  width: 50px;
}

.tabNav .left .nav {
  position: absolute;
  z-index: 999;
  background: linear-gradient(180deg, #cbf3ff 0, #88c6ea);
  top: 45px;
  left: -15px;
  width: 200px;
  border-right: 1px solid #6eb0d6;
  display: none;
  transition: 0.3s;
}

.tabNav .left .nav li {
  display: block;
  padding: 10px;
  color: #333333;
  cursor: pointer;
  font-weight: bold;
}

.tabNav .nav .lis:hover {
  background-color: #ffffff;
  color: #4a97c2;
}


.tabNav .centers {
  /*max-width: 300px;*/
  width: 100%;
}

.tabNav .centers h2 {
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 200px;
  font-size: 1.4rem;
  text-align: center;
}


.tabNav .right {
  position: relative;
  width: 50px;
  text-align: right;
}

.tabNav .right .inp {
  position: absolute;
  width: 200px;
  right: -15px;
  padding: 10px;
  top: 45px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(180deg, #cbf3ff 0, #88c6ea);
  display: none;
}

.tabNav .right .inp input {
  width: 100%;
  padding: 5px 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.tabNav .right .inp input:focus {
  border-color: #4a7bb7; /* 焦点颜色，可自定义为你网站主题色 */
  box-shadow: 0 0 5px rgba(74, 123, 183, 0.5);
}

.tabNav .left .iconfont, .tabNav .right .iconfont {
  font-size: 1.8rem;
  cursor: pointer;
}

/* 分类导航 E */


/* 底部导航 S */
footer {
  z-index: 9999999;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--footerBg, #FFFFFF);
  padding: 10px 25px
}

footer .foot_list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

footer .foot_list > a {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center
}

footer .foot_list > a .foot_img {
  width: 30px;
  height: 30px
}

footer .foot_list > a .foot_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

footer .foot_list > a > p {
  font-size: 12px;
  margin-top: 5px
}

footer .foot_list > a > p.act {
  color: var(--footerColor, #333333);
}

footer .iconfont {
  font-size: 30px;
  color: var(--footerColor, #333333);
}

/* 底部导航 E */


/* 加载中 S */
#loading {
  display: block;
  width: 100%;
  height: 30px;
  background: url(/assets/images/loading.svg) no-repeat center;
}

/* 加载中 E */
