@charset "utf-8";
.container {
    /*background-color: #f8efe0;*/
    /*padding-bottom: 1px;*/
    background-size: 100% 100%;
}

input {
    font-size: .33rem;
}

.userpj {
overflow: hidden;
    position: relative;
    padding: 0.12rem 0.6rem .5rem;
	margin-top: 14px;
}

.userpj ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute; /* 设置绝对定位，以便实现滚动效果 */
  animation: scroll-up 3s linear infinite; /* 使用动画实现滚动效果，10s表示滚动一次的时间 */
}

.userpj ul li {
    font-size:.29rem;
    margin-bottom:.1rem;
    padding-bottom:.2rem;
}
.userpj strong {
    color:#d85540;
    font-weight:400;
}
@keyframes scroll-up {
  0% { top: 0; } /* 初始位置 */
  100% { top: -100%; } /* 滚动到顶部的位置，假设每条内容的高度为100% */
}

.total {
    font-size: .3rem;
    color: #666;
    margin-top: 0rem;
    margin-bottom: .3rem;
}
.total i {
    color: #c90000;
}
