:root {
  --Theme-Theme-0: #FFFFFF;
  --Theme-Theme-1: #EBF1FF;
  --Theme-Theme-2: #3377FF;
  --Theme-Theme-3: #F7F7F7;
  --Text-1: #000000;
  --Text-2: #666666;
  --Text-3: #999999;
  --Text-4: #86909C;
  --Text-5: #007AFF;
  --New-colors-blue-pale: #2997FF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo-img {
  display: flex;
  align-items: center;
  height: 36px;
}
.header .logo-img img {
  height: 40px;
  margin-right: 15px;
}
.header .logo-img div {
  font-weight: bold;
  font-size: 20px;
}

.header ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.header ul li {
  font-size: 16px;
  font-weight: 500;
  color: var(--Text-1);
}

.center {
  margin: 0 auto;
  width: 1200px;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--Theme-Theme-1);
}

.main .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.main .content {
  z-index: 3;
}

.main .content .first {
  height: 216px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main .content .first .left {
  display: flex;
  justify-content: space-between;
}

.main .content .first .left .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;
  gap: 10px;
}

.main .content .first .left .text h1 {
  font-size: 32px;
  font-weight: 600;
}

.main .content .first .left .text h3 {
  font-size: 18px;
  font-weight: 500;
}

.main .content .first .left .text p {
  font-size: 14px;
  font-weight: 400px;
}

.main .content .first .left .text .safe-contents {
  display: flex;
  gap: 8px;
}

.main .content .first .left .text .safe-contents .safe-item {
  padding: 5px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--Text-3);
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.main .content .first .right {
  width: 252px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.main .content .first .right .download-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 252px;
  height: 72px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
}

.main .content .first .right .explain {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}

.blue-solid-btn {
  color: var(--Theme-Theme-0);
  background-color: var(--Theme-Theme-2);
  border-color: var(--New-colors-blue);
}

.blue-solid-btn:hover {
  background-color: var(--New-colors-blue-pale);
  border-color: var(--New-colors-blue-pale);
}

.main .content .second {
  height: 247px;
  padding: 24px 32px;
  margin-bottom: 20px;
  background-color: var(--Theme-Theme-0);
  border-radius: 8px;
}

.third h3 {
  font-size: 19px;
}

.main .content .second h3 {
  margin-bottom: 16px;
  font-size: 19px;
}

.main .content .second .display-images {
  display: flex;
  justify-content: space-around;
  cursor: pointer;
}
.main .content .second .display-images img {
  border-radius: 8px;
}

.main .content .second .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.main .content .second .enlarged-img {
  width: 800px;
  height: 450px;
  max-width: 90%;
  max-height: 90%;
  border-radius: 24px;
}

.main .content .third {
  height: 196px;
  padding: 24px 32px;
  background-color: var(--Theme-Theme-0);
  border-radius: 8px;
  margin-bottom: 20px;
}

.main .content .third p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 16px 0;
}

.main .content .third .blue {
  color: var(--Text-5);
  font-size: 14px;
  cursor: pointer;
}

.comment {
  background-color: var(--Theme-Theme-1);
  padding-bottom: 32px;
}

.comment .contents {
  padding: 24px 32px;
  box-sizing: border-box;
  background-color: var(--Theme-Theme-0);
  border-radius: 8px;
}

.grade {
  display: flex;
  align-items: center;
}

.comment .contents .grade span {
  font-weight: 600;
  font-size: 96px;
  line-height: 120px;
  margin-right: 24px;
}

.comment .contents ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment .contents ul li {
  width: 732px;
  height: 140px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--Theme-Theme-3);
}

.comment .contents ul li .avatar {
  border-radius: 50%;
  margin-right: 16px;
}

.comment .contents ul li .evaluation p {
  font-size: 14px;
  line-height: 22px;
  margin: 4px 0;
}

.comment .contents ul li .evaluation .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--Text-3);
  font-size: 12px;
}

.comment .contents ul li .evaluation .bottom {
  height: 16px;
}

.comment .contents ul li .evaluation .bottom .upvote {
  display: flex;
  gap: 16px;
}

.comment .contents ul li .evaluation .bottom .upvote .item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.stick-bottom {
  display: none;
  position: sticky;
  bottom: 0;
  height: 70px;
  z-index: 10;
}

.stick-bottom .sticky-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.stick-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}
.stick-bottom .container .fix-left {
  display: flex;
  height: 70px;
  justify-content: space-between;
  align-items: center;
}
.stick-bottom .container .fix-left > img {
  height: 45px;
  margin-right: 18px;
}
.stick-bottom .container .fix-left div > p:first-child {
  font-weight: bold;
  font-size: 18px;
}
.stick-bottom .container .fix-left div > :last-child {
  font-size: 13px;
}

.stick-bottom .container .btn {
  width: 144px;
  height: 48px;
  border-radius: 8px;
  gap: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.footer {
  width: 100%;
  height: 92px;
  background-color: var(--Theme-Theme-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer .message {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer .message p {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: var(--Text-4);
}

/*# sourceMappingURL=style.css.map */
