*{
	margin: 0;
	padding: 0;
}

body{
	overflow-y: auto;
	overflow-x: hidden;
	background: #26292f;
	font-family: "ALKATIP Tor Tom", sans-serif;
}
.putunbat{
	max-width: 640px;
	min-width: 300px;
	margin: 0 auto;	
}
.fenlei{
        width: 98%;
        height: 160px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
        direction: rtl;
        font-family: "ALKATIP Tor Tom", sans-serif;
    }
    .fenlei_text{
        width: 100%;
        height: 40px;
        display: flex;
        gap: 10px; 
        background: transparent;
    }
    .fenlei_title{
        cursor: pointer;
        width: 70px;
        height: 30px;
        background: #aaaaaa !important; 
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        color: white;
        transition: all 0.3s;
    }
    .fenlei_title.activeacte {
        background: #ff5263 !important; /* 粉色 */
    }
    .fenlei_title:hover {
        background: #999999 !important; /* 深一点的灰色 */
    }
    .fenlei_title.activeacte:hover {
        background: #ff3a4d !important; /* 深一点的粉色 */
    }
.section-title {
    width: 92%;
    height: 40px;
    margin: 0 auto;
    direction: rtl;
    font-size: 1.0rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    border-bottom: 1px solid #353434;
    margin-top: 10px;
    font-family: "ALKATIP Tor Tom";
  }

  .section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(-54deg, #ff4690, transparent);
  }
.popular{
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	align-items: center;
	box-sizing: border-box;
	font-family: "ALKATIP Tor Tom";
	direction: rtl;
}
.popular_text{
	width: 40%;
	height: 30px;
	box-sizing: border-box;
	color: white;
}
.popular_right{
	width: 20%;
	height: 25px;
	border: 1px solid #3b3c45;
	border-radius: 50px;
	text-align: center;
	line-height: 30px;
	color: #848484;
	font-size: 0.8rem;
}
.show{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap; 
	direction: rtl;
	padding: 0 15px; 
	gap: 20px;
	box-sizing: border-box;
	}
.shou_rasim{
	width: calc(33.333% - 13.333px);
	min-height: 120px;
	position: relative; 
	z-index: 1;
	display: inline-block;
	display: block;
		}
.shou_rasim_title {
    position: relative !important;
    height: 140px; /* 添加固定高度 */
    overflow: hidden; /* 防止内容溢出 */
        }
.shou_rasim_title img{
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
	}
.shou_rasim_title p{
	position: absolute; /* 绝对定位，相对于.shou_rasim */
	top: 8px; /* 距离图片顶部的间距 */
	right: 8px; /* 距离图片右侧的间距 */
	margin: 0; /* 清除p标签默认的上下外边距，避免位置偏移 */
	padding: 4px 8px; /* 可选：p标签内边距，让文字更美观 */
	background-color: rgba(0, 0, 0, 0.5); /* 可选：半透明背景，突出文字 */
	color: #fff; /* 文字白色 */
	font-size: 14px;
	z-index: 2;
	border-radius: 5px; /* 可选：p标签圆角 */
}
.shou_rasim_text{
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-family: "ALKATIP Tor Tom";
	font-size: 0.9rem;
	overflow: hidden;
/* 	font-weight: bold; */
	margin-top: 5px;
}
.shou_rasim_text p:nth-child(2){
	width: 50%;
	height: 20px;
	background: #3b3c45;
	border-radius: 30px;
	text-align: center;
	padding-top: 5px;
	color: #ffdf7c;
	font-size: 0.8rem;
		}
.arlik{
	width: 100%;
	height: 80px;
}
/*.jiazai{*/
/*    width: 100%;*/
/*    height: 80px;*/
/*    background: red;*/
/*    border-radius: 20px;*/
/*    text-align: center;*/
/*    line-height: 40px;*/
/*    color: width;*/
/*}*/
.loader {
  width: 80px;
  height: 50px;
  position: relative;
  margin: 0 auto;
  display: none;
}

.loader-text {
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  color: #C8B6FF;
  animation: text_713 3.5s ease both infinite;
  font-size: .8rem;
  letter-spacing: 1px;
}

.load {
  background-color: #9A79FF;
  border-radius: 50px;
  display: block;
  height: 16px;
  width: 16px;
  bottom: 0;
  position: absolute;
  transform: translateX(64px);
  animation: loading_713 3.5s ease both infinite;
}

.load::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #D1C2FF;
  border-radius: inherit;
  animation: loading2_713 3.5s ease both infinite;
}

@keyframes text_713 {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }

  40% {
    letter-spacing: 2px;
    transform: translateX(26px);
  }

  80% {
    letter-spacing: 1px;
    transform: translateX(32px);
  }

  90% {
    letter-spacing: 2px;
    transform: translateX(0px);
  }

  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}

@keyframes loading_713 {
  0% {
    width: 16px;
    transform: translateX(0px);
  }

  40% {
    width: 100%;
    transform: translateX(0px);
  }

  80% {
    width: 16px;
    transform: translateX(64px);
  }

  90% {
    width: 100%;
    transform: translateX(0px);
  }

  100% {
    width: 16px;
    transform: translateX(0px);
  }
}

@keyframes loading2_713 {
  0% {
    transform: translateX(0px);
    width: 16px;
  }

  40% {
    transform: translateX(0%);
    width: 80%;
  }

  80% {
    width: 100%;
    transform: translateX(0px);
  }

  90% {
    width: 80%;
    transform: translateX(15px);
  }

  100% {
    transform: translateX(0px);
    width: 16px;
  }
}
 






