* {
  margin: 0;
  padding: 0;
}
body {
  background: url("./img/bg.jpg");
}
.container {
  position: relative;
  width: 7.5rem;
  height: auto;
  margin: 0 auto;
}
.container .content {
  width: 7.5rem;
  margin: 0 auto;
  overflow-x: hidden;
  z-index: 99;
  height: auto;
}
.container .content .top_bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 7.5rem;
  height: 1.35rem;
  display: grid;
  grid-template-columns: auto auto;
  z-index: 15;
}
.container .content .top_bar .logo {
  position: absolute;
  width: 3.5rem;
  left: 0.2rem;
  top: 0.2rem;
}
.container .content .top_bar .logo img {
  width: 3.5rem;
}
.container .content .top_bar .btn_01 {
  position: absolute;
  width: 1.8rem;
  right: 0.3rem;
  top: 0.3rem;
}
.container .content .top_bar .btn_01 img {
  width: 1.8rem;
}
.container .content .top_pic {
  position: relative;
  width: 6.9rem;
  height: 4.96rem;
  margin: 0 auto;
}
.container .content .top_pic img {
  width: 100%;
  object-fit: contain;
}
.container .content .kf {
  position: fixed;
  display: block;
  top: 30%;
  right: 0.4rem;
  width: 1.2rem;
  height: 1.6rem;
  z-index: 99;
}
.container .content .kf img {
  width: 100%;
}
.container .content .service {
  margin: 0.5rem auto;
  width: 5.72rem;
  height: 1.05rem;
  line-height: 1.05rem;
  text-align: center;
  background: url("./img/service.png") no-repeat;
  background-size: contain;
  position: relative;
  color: #f93479;
  font-size: 0.33rem;
  text-indent: 0.35rem;
}
.container .content .service img {
  position: absolute;
  top: 0.23rem;
  left: 0.4rem;
  width: 0.49rem;
}
.container .content .table {
  background: #ffa6ac;
  margin: 0.2rem auto;
  margin-top: 0;
  padding-top: 0.3rem;
  padding-bottom: 0.15rem;
  width: 7rem;
  border-radius: 0 0 0.15rem 0.15rem;
}
.container .content .table .ele {
  width: 6.5rem;
  margin: 0 auto;
  margin-bottom: 0.3rem;
  display: grid;
  grid-template-columns: 1.2rem 3.3rem auto;
  font-size: 0.28rem;
  font-weight: 600;
  color: #fff;
  background: url("./img/bar_bg.png") no-repeat;
  background-size: 100% 100%;
  height: 0.8rem;
  line-height: 0.8rem;
  border-radius: 0.8rem;
}
.container .content .table .ele span:nth-child(1) {
  font-weight: normal;
  text-align: center;
  color: #fff;
  font-size: 0.24rem;
  background: #fb5c82;
  height: 0.55rem;
  line-height: 0.55rem;
  border-radius: 0.55rem;
  margin-top: 0.15rem;
  margin-left: 0.15rem;
}
.container .content .table .ele span:nth-child(2) {
  font-weight: normal;
  text-align: center;
  color: #ff3b82;
  font-size: 0.28rem;
  margin-top: 0.03rem;
  height: 0.75rem;
  line-height: 0.75rem;
}
.container .content .table .ele span:nth-child(3) {
  text-align: center;
  height: 0.85rem;
  line-height: 0.85rem;
  margin-top: 0.05rem;
}
.container .content .table .ele span:nth-child(3) img {
  width: auto;
  height: 0.68rem;
}
.container .content .table .ele > img {
  width: 0.3rem;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 0.22rem;
}
.container .tip {
  width: 7rem;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: -0.05rem;
  padding: 0 0.15rem;
  padding-left: 0.7rem;
  height: 0.69rem;
  line-height: 0.69rem;
  background: url("./img/bar.png") no-repeat;
  background-size: contain;
  font-size: 0.22rem;
  color: #444444;
}
.container .tip .text {
  margin: 0;
  white-space: nowrap;
}
.container .container {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 100%;
}
.container .container_words {
  margin: 0;
  position: relative;
  width: fit-content;
  animation: move 10s linear infinite;
  padding-left: 1rem;
}
.container .container_words::after {
  position: absolute;
  right: -100%;
  content: attr(text);
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scale {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  to {
    transform: scale(1);
  }
}
