html {
  font-size: 4.266vw;
}

body {
  padding: 0;
  margin: 0;
  background-color: #C4E6FC;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

* {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
}

.page-loading {
  margin-top: 70%;
  text-align: center;
}

.page-loading img {
  width: 1.5625rem;
}

.pages-section {
  display: none;
  position: relative;
  padding-bottom: .75rem;
}

.vote-section {
  padding: 0 .75rem;
}

.banner {
  min-height: 130vw;
}

.category-list {
  background-color: #EBF7FF;
  border-radius: .5rem;
  height: 2.2rem;
}

.category-list .item {
  display: flex;
  height: 2.2rem;
  align-items: center;
  padding: 0 .5rem;
  color: #607793;
  line-height: 1;
  font-size: .9rem;
}

.category-list .item.active {
  background: linear-gradient(270deg, #1191FF 0%, #27ACFB 52%, #1191FE 100%);
  border-radius: .5rem;
  color: #ffffff;
}

.vote-option-list {
  height: 85vh;
  overflow-y: auto;
}

.opt-item {
  margin-top: .75rem;
  background-color: #ffffff;
  padding: .5rem;
  border-radius: .75rem;
  color: #6E8197;
}

.box-1,
.box-2 {
  display: flex;
}

.box-1 .pic-box {
  aspect-ratio: 4/3;
  position: relative;
}

.box-1 .pic-box .code {
  position: absolute;
  left: 0;
  top: 0;
  font-size: .75rem;
  color: #ffffff;
  background: linear-gradient(270deg, #1191FF 0%, #27ACFB 52%, #1191FE 100%);
  display: inline-block;
  padding: .125rem .625rem;
  border-radius: .5rem;
}

.opt-item .left {
  width: 35%;
}

.opt-item .right {
  flex: 1;
  padding-left: .5rem;
}

.box-1 .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-1 .pic-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
}

.box-1 .title {
  font-size: 1rem;
  font-weight: bold;
  color: #10335C;
}

.box-1 .attr {
  font-size: .875rem;
}

.box-2 {
  margin-top: .5rem;
}

.box-2 .left {
  text-align: center;
}

.box-2 .vote-num {
  color: #1495FF;
}

.box-2 .right {
  display: flex;
}

.box-2 .btn {
  width: 46%;
  text-align: center;
  padding: .25rem 0;
  border: 1px solid;
  border-radius: .8rem;
  font-size: .875rem;
}

.box-2 .detail-btn {
  color: #1495FF;
  background-color: #F3FAFF;
}

.box-2 .vote-btn {
  color: #ffffff;
  background: linear-gradient(270deg, #1191FF 0%, #27ACFB 52%, #1191FE 100%);
  margin-left: 6%;
}

.box-2 .vote-btn.checked {
  background: #000;
}

.box-3 {
  margin-top: .5rem;
  background-color: #EBF7FF;
  padding: .5rem;
  border-radius: .25rem;
}

.box-3 .opt-desc {
  font-size: .875rem;
}

.box-3 .folded {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  max-height: 3.3em;
}

.box-3 .strong {
  color: #000;
}

.toggle-btn {
  text-align: right;
  padding-right: .35rem;
  font-size: .875rem;
}

.toggle-btn .item {
  color: #1495FF;
}

.toggle-btn .arrow {
  margin-left: .4rem;
  display: inline-block;
  font-size: .7rem;
  transform: scaleX(2);
  position: relative;
  top: -1px;
}

.submit-btn {
  width: 80%;
  margin: 0 auto;
  padding: .25rem 0;
  text-align: center;
  position: fixed;
  bottom: 2rem;
  left: 10%;
  color: #ffffff;
  border: 1px solid;
  border-radius: 1rem;
  box-shadow: 1px 1px .25rem #1495FF;
  background: linear-gradient(270deg, #1191FF 0%, #27ACFB 52%, #1191FE 100%);
  z-index: 9;
}


/* 兼容PC端 */
@media (min-width: 1000px) {
  html {
    font-size: 18px;
  }

  body {
    width: 800px;
    margin: 0 auto;
  }

  .alert-tips-panel {
    width: 400px !important;
  }
}