* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

ul, li {
  list-style: none;
}

input {
  outline: none;
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

.font-bold {
  font-weight: bold;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.inline-block {
  display: inline-block;
}

.background {
  position: fixed;
  width: 100%;
}

.background img {
  width: 100%;
}

.container {
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0 1.75rem;
  padding-top: 0.2rem;
}

.btn {
  background: url("../images/btn-wrap.png") center no-repeat;
  background-size: 100%;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 0.18rem;
  padding: 0 0.4rem;
}
.btn img {
  height: 1em;
  margin-right: 0.5em;
}
.btn.blue {
  background: url("../images/btn-wrap-blue.png") center no-repeat;
  background-size: 100%;
}
.btn.gray {
  background: url("../images/btn-wrap-gray.png") center no-repeat;
  background-size: 100%;
}

.btn + .btn {
  margin-left: 0.2rem;
}

.logo {
  height: 0.8rem;
  margin-top: 0.2rem;
  margin-right: 0.12rem;
  margin-left: 0.2rem;
}

.user-avatar {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.08rem solid #f1d842;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar img {
  height: 100%;
  transform: scale(1.05);
}

.user-level {
  position: absolute;
  height: 0.64rem;
  width: 0.64rem;
  font-size: 0.24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  bottom: 0;
  right: -0.2rem;
  background: url("../images/user-level.png") center no-repeat;
  background-size: 100%;
  font-weight: bold;
}

.user-score {
  height: 0.56rem;
  background-color: #2c3899;
  color: #f1d842;
  border-radius: 1rem;
  font-size: 0.28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.48rem;
  margin-top: 0.36rem;
}

.user-score span {
  display: inline-block;
  background-color: #5461cb;
  color: white;
  border-radius: 1rem;
  padding: 0 0.24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.24rem;
  margin-right: 0.24rem;
}

.user-score + .user-score {
  margin-left: 0.5rem;
}

.user-menu nav {
  width: 3.5rem;
  height: 7.5rem;
  background: url("../images/card-user-menu.png") center no-repeat;
  background-size: 100%;
  padding-top: 0.7rem;
  font-size: 0.24rem;
  overflow: hidden;
}

main {
  flex: 1;
  height: 7.36rem;
  margin-left: 0.32rem;
  background: url("../images/card-user-content.png") center no-repeat;
  background-size: 100% 100%;
  margin-top: 0.06rem;
  padding: 0.7rem 0.5rem;
  padding-bottom: 0.35rem;
}

footer {
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  font-size: 0.16rem;
  color: #8aa6e5;
  margin: 0.4rem 0;
}

.user-menu nav ul li {
  background: url("../images/menu-item.png") left no-repeat;
  background-size: 120%;
  height: 1.1rem;
  position: relative;
  right: -0.32rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 0.72rem;
  padding-bottom: 0.08rem;
  margin-bottom: 0.32rem;
  letter-spacing: 0.02rem;
}

.user-menu nav ul li.active {
  background: url("../images/menu-item-active.png") left no-repeat;
  background-size: 120%;
}

#id_product {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

#id_product > ul {
  font-size: 0.18rem;
  color: black;
  display: grid;
  gap: 0.2rem;
  grid-template-columns: repeat(4, 1fr);
}
#id_product > ul li {
  background: url(../images/card-item.png) center no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding: 0.25rem 0.15rem;
  display: flex;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  height: 1.65rem;
}
#id_product > ul li img {
  height: 0.95rem;
  width: 0.95rem;
  border: 0.04rem solid white;
  border-radius: 0.08rem;
}
#id_product > ul li .product-description {
  margin-left: 0.12rem;
  flex: 1;
}
#id_product > ul li .product-description span {
  font-size: 0.16rem;
  font-weight: bold;
  margin-bottom: 0.08rem;
  display: inline-block;
}
#id_product > ul li .product-description p {
  font-size: 0.14rem;
  height: 0.56rem;
  display: -webkit-box;
  line-height: 1.3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: justify;
  margin-bottom: 0.08rem;
}
#id_product > ul li .product-description > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  line-height: 1.5;
}
#id_product > ul li .product-description > div a {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#id_product > ul li .product-description > div .product-cost {
  background: url(../images/btn-item-cost.png) center no-repeat;
  background-size: 100%;
  padding-left: 0.12rem;
}
#id_product > ul li .product-description > div .product-buy {
  background: url(../images/btn-item-buy.png) center no-repeat;
  background-size: 100%;
}

#id_coin,
#id_point {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
#id_coin ul.data-list li,
#id_point ul.data-list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.data-list {
  font-size: 0.18rem;
  color: black;
  display: grid;
  gap: 0.2rem;
  grid-template-columns: repeat(4, 1fr);
}
ul.data-list li {
  background: url(../images/card-item.png) center no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding: 0.25rem 0.15rem;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  height: 1.65rem;
}

.pop-wrap {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  overflow-y: auto;
  display: none;
  align-items: center;
  justify-content: center;
}
.pop-wrap.show-flex {
  display: flex;
}
.pop-wrap .content {
  background: url(../images/card-message.png) center no-repeat;
  background-size: 100% 100%;
  min-width: 5rem;
  min-height: 3rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem;
}

input {
  width: 100%;
  border-radius: 0.06rem;
  padding: 0 0.2rem;
  height: 0.55rem;
  line-height: 0.55rem;
  margin-bottom: 0.2rem;
  font-size: 0.24rem;
}
input::-moz-placeholder {
  color: #c8c8c8;
}
input::placeholder {
  color: #c8c8c8;
}

header {
  height: 0.7rem;
  color: white;
}
header nav {
  font-size: 0.24rem;
}
header nav ul {
  display: flex;
  padding-left: 0.2rem;
}
header nav ul li {
  margin-right: 0.5rem;
}

#id_settings {
  font-size: 0.24rem;
}/*# sourceMappingURL=personal.css.map */