* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body,
button,
input,
select,
textarea {
  font: 12px/1.5 "微软雅黑";
  color: #2d354c;
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: #6f7c82;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
ul,
ol,
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
em {
  font-style: normal;
}
img {
  border: 0;
}
.fixed {
  position: fixed;
}
.fixed-bottom {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
}
.btn {
  cursor: pointer;
}
.mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 200ms;
  transition: 200ms;
  z-index: 100;
}
.mask.show {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-transition: 400ms cubic-bezier(0.06, 1.04, 0.74, 1.2);
  transition: 400ms cubic-bezier(0.06, 1.04, 0.74, 1.2);
}
.modal.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.modal .box {
  position: relative;
  padding: 1.2rem 0.8rem 0.8rem;
  border-radius: 0.1333rem;
  background: #fff;
}
.modal .box .message,
.modal .box .btn {
  width: 4.8rem;
}
.modal .box .message {
  font-size: 0.4rem;
  line-height: 1.4;
  color: #2d354c;
  white-space: pre-wrap;
}
.modal .box .btn {
  margin-top: 0.6rem;
  width: 4.8rem;
  height: 1.0667rem;
  font-size: 0.3733rem;
  color: #2d354c;
  padding: 2px;
  border-radius: 0.5333rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#01fffe), to(#d3ff43));
  background-image: linear-gradient(to right, #fff, #fff), linear-gradient(to right, #01fffe, #d3ff43);
  background-clip: content-box, padding-box;
  outline: none;
  border: none;
}
.modal .box .close {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  width: 0.4rem;
  height: 0.4rem;
  background-repeat: no-repeat;
  background-image: url("../img/public/cross.png");
  background-size: 100% 100%;
}
.toast {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-transition: 300ms cubic-bezier(0.06, 1.04, 0.74, 1.2);
  transition: 300ms cubic-bezier(0.06, 1.04, 0.74, 1.2);
}
.toast .box {
  min-width: 7.0933rem;
  padding: 0.32rem 0.2133rem;
  color: #2d354c;
  font-size: 0.3733rem;
  line-height: 0.5333rem;
  text-align: center;
  background: rgba(255,255,255,0.8);
  border-radius: 0.1333rem;
}
.toast.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.widget.loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
  z-index: 100;
}
.widget.loading.show {
  opacity: 1;
  visibility: visible;
}
.widget.loading .box {
  padding: 10px;
  border-radius: 10px;
  background: rgba(0,0,0,0.8);
  color: #fff;
}
.widget.loading .box .icon {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  -webkit-animation: rotate-loop 600ms linear infinite;
          animation: rotate-loop 600ms linear infinite;
}
.widget.loading .box .text {
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin: 0.5em 0 0;
}
@-webkit-keyframes rotate-loop {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes rotate-loop {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.v-picker {
  position: relative;
}
.v-picker .v-picker-placeholder,
.v-picker .v-picker-value {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 1.3333rem;
  font-size: 0.3733rem;
  z-index: 2;
}
.v-picker .v-picker-placeholder {
  color: #d1d4da;
}
.v-picker .v-picker-value {
  color: #2d354c;
}
.v-picker .v-picker-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.2667rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.msg {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.466666rem 0.733333rem;
  min-width: 5.333333rem;
  text-align: center;
  line-height: 0.533333rem;
  background: rgba(0,0,0,0.4);
  border-radius: 0.133333rem;
  font-size: 0.373333rem;
  font-family: PingFang-SC-Bold;
  font-weight: bold;
  color: #fff;
}
.header {
  position: relative;
  display: none;
  position: fixed !important;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0rem 0.4rem;
  height: 1.0933rem;
  line-height: 1.0933rem;
  background: #fff;
  z-index: 99;
}
.header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #ededed;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
}
.header .go-back {
  float: left;
}
.header .go-back img {
  width: 0.48rem;
  height: 0.48rem;
  vertical-align: middle;
}
.header-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #030303;
  font-size: 0.48rem;
  font-family: PingFangSC-Regular;
  font-weight: 400;
  white-space: nowrap;
}
.header-tool {
  float: right;
  text-align: center;
  color: #a0a6b3;
  font-size: 0.373333rem;
}
.header-tool img {
  margin-right: 0.133333rem;
  width: 0.533333rem;
  height: 0.533333rem;
  border-radius: 0.08rem;
}
.jump-arrow {
  position: absolute;
  top: 50%;
  right: 0rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.32rem;
  height: 0.533333rem;
}
.btn-jump {
  display: block;
  margin: 0.44rem auto 0.253333rem;
  width: 4rem;
  height: 0.933333rem;
  border-radius: 0.546666rem;
  line-height: 0.933333rem;
  text-align: center;
  color: #2d354c;
  font-size: 0.4rem;
  padding: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(#fff)), -webkit-gradient(linear, right top, left top, from(#d3ff43), to(#01fffe));
  background: linear-gradient(to left, #fff 0%, #fff 100%), linear-gradient(to left, #d3ff43 0%, #01fffe 100%);
  background-clip: content-box, padding-box;
}
.radio {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.radio input[type="radio"] {
  margin: 0px !important;
  position: absolute;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  z-index: 10;
}
.radio .radio-on {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100% !important;
  height: 100% !important;
  background: url("../img/public/radio.png") no-repeat;
  background-size: 100% 100%;
}
.radio input:checked+span.radio-on {
  background: url("../img/public/radio-checked.png") no-repeat;
  background-size: 100% 100%;
}
.v-radio,
.v-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  cursor: pointer;
}
.v-radio.reverse,
.v-checkbox.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.v-radio.reverse .v-radio-text,
.v-checkbox.reverse .v-radio-text,
.v-radio.reverse .v-checkbox-text,
.v-checkbox.reverse .v-checkbox-text {
  margin: 0 0.2667rem 0 0;
}
.v-radio-input:checked + .v-radio-icon,
.v-checkbox-input:checked + .v-checkbox-icon {
  -webkit-box-shadow: 0 0 0 0.0267rem #333e56;
          box-shadow: 0 0 0 0.0267rem #333e56;
  background-image: url("../img/public/hook.png");
}
.v-radio-icon,
.v-checkbox-icon {
  width: 0.4533rem;
  height: 0.4533rem;
  -webkit-box-shadow: 0 0 0 0.0267rem #a0a6b3;
          box-shadow: 0 0 0 0.0267rem #a0a6b3;
  background-repeat: no-repeat;
  background-size: 0.2267rem auto;
  background-position: center;
}
.v-radio-icon.v-radio-icon,
.v-checkbox-icon.v-radio-icon {
  border-radius: 50%;
}
.v-radio-icon.v-checkbox-icon,
.v-checkbox-icon.v-checkbox-icon {
  border-radius: 0.0533rem;
}
.v-radio-text,
.v-checkbox-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.3733rem;
  color: #2d354c;
  margin: 0 0 0 0.2667rem;
}
.radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radios .radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.radios .radio-item input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.radios .radio-item input[type=radio]:checked + .radio-icon {
  background-image: url("../img/radio/radio-checked.png");
}
.radios .radio-item .radio-icon {
  width: 0.4533rem;
  height: 0.4533rem;
  border-radius: 50%;
  background: url("../img/radio/radio.png") no-repeat;
  background-size: 100%;
}
.radios .radio-item .radio-value {
  min-width: 2.08rem;
  padding: 0 0.2667rem;
}
.link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.link-item:not(:last-child) {
  margin-bottom: 0.5333rem;
}
.link-item-text {
  color: #a0a6b3;
  font-size: 0.3733rem;
}
.link-item-btn {
  display: block;
  width: 4rem;
  height: 1.0667rem;
  line-height: 1.0667rem;
  text-align: center;
  color: #2d354c;
  font-size: 0.4267rem;
  background: url("../img/download/border-bg.png") no-repeat;
  background-size: 100%;
}
.download-component {
  width: 100%;
  padding: 0.2rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  position: relative;
}
.download-component::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #ededed;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
}
.download-component.sticky {
  position: fixed !important;
  left: 0;
  top: 1.0933rem;
  background: rgba(255,255,255,0.6);
  z-index: 99;
}
.download-component .logo {
  width: 1.0667rem;
  height: 1.0667rem;
}
.download-component .name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.3733rem;
  line-height: 0.4533rem;
  padding: 0 0.2667rem;
}
.download-component .btn {
  width: 2.5333rem;
  height: 0.8rem;
  font-size: 0.3733rem;
  background-repeat: no-repeat;
  background-image: url("../img/download-component/btn-bg.png");
  background-size: 100% 100%;
}
.slide-replace {
  display: none;
  height: 1.466667rem;
}
.slide-replace-height {
  display: block;
}
.user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user-info .user-avatar-box {
  position: relative;
  margin-right: 0.2667rem;
}
.user-info .user-avatar-box .user-avatar {
  display: block;
  width: 0.6667rem;
  height: 0.6667rem;
  border-radius: 0.1333rem;
}
.user-info .user-avatar-box .role-icon {
  position: absolute;
  right: -0.08rem;
  bottom: -0.08rem;
  width: 45%;
}
.user-info .user-name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.4rem;
}
.user-info .user-name-wrap .role-icon {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.1333rem;
}
.user-info .user-nickname {
  color: #2d354c;
  line-height: 1.4;
}
.comment-title {
  font-size: 0.4rem;
  color: #2d354c;
}
.comment-list .comment-item {
  padding: 0.4rem 0;
}
.comment-list .comment-item:not(:last-child) {
  position: relative;
}
.comment-list .comment-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #e1e1e1;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
}
.comment-list .comment-item .user-comment {
  font-size: 0.4rem;
  line-height: 1.4;
  margin-top: 0.3333rem;
  word-break: break-all;
}
.comment-list .comment-item .comment-reply {
  border-radius: 0.2667rem;
  background: #eaecf2;
  padding: 0.2667rem;
  margin-top: 0.4rem;
}
.comment-list .comment-item .comment-reply-list .comment-reply-item {
  font-size: 0.32rem;
}
.comment-list .comment-item .comment-reply-list .comment-reply-item:not(:last-child) {
  margin-bottom: 0.2667rem;
}
.comment-list .comment-item .comment-reply-list .comment-reply-item .from {
  color: #2d354c;
}
.comment-list .comment-item .comment-reply-list .comment-reply-item .from .action,
.comment-list .comment-item .comment-reply-list .comment-reply-item .reply-content {
  color: #a0a6b3;
}
.comment-list .comment-item .comment-reply .more {
  display: block;
  text-align: right;
  margin-top: 0.2667rem;
}
.comment-list .comment-item .comment-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.3467rem;
  color: #969696;
  margin-top: 0.4rem;
}
.comment-list .comment-item .comment-aside .comment-praise {
  padding-left: 0.4267rem;
  background-image: url("../img/comment/praise.png");
  background-size: 0.3467rem 0.28rem;
  background-repeat: no-repeat;
  background-position: left center;
}
.comment-list .comment-item .comment-aside .comment-praise.active {
  color: #2d354c;
  background-image: url("../img/comment/praise-active.png");
}
.rich-text p,
.rich-text img,
.rich-text video {
  margin-bottom: 0.2667rem;
}
.rich-text p {
  font-size: 0.4rem;
  color: #a0a6b3;
  line-height: 1.4;
  white-space: pre-wrap;
}
.rich-text img {
  display: block;
  max-width: 100%;
  margin: 0 auto 0.2667rem auto;
  border-radius: 0.2667rem;
}
.article .title {
  font-size: 0.5067rem;
  line-height: 0.7733rem;
  color: #2c354c;
  margin-bottom: 0.24rem;
}
.article .video-box {
  width: 100%;
  position: relative;
}
.article .video-box canvas {
  width: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 1;
}
.article .controls-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.article .controls-btn img {
  width: 2.666667rem;
  height: 2.666667rem;
}
.article video {
  display: block;
  width: 100%;
}
.bg-icon,
.sub-title {
  background-repeat: no-repeat;
  background-position: left center;
}
.sub-title {
  padding-left: 0.2rem;
  font-size: 0.5067rem;
  background-image: url("../img/title/title-bg.png");
  background-size: 0.0533rem auto;
}
.with-confirm-agreement {
  padding-bottom: 2rem;
}
.fixed.fixed-bottom {
  padding: 0.4rem;
  position: relative;
  position: fixed;
}
.fixed.fixed-bottom::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #dedede;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
}
.fixed.fixed-bottom .btn {
  width: 100%;
  height: 1.2rem;
  line-height: 1.2rem;
  font-size: 0.4267rem;
  color: #2d354c;
  background-color: transparent;
  background-image: url("../img/btn/btn-ll.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: none;
  outline: none;
}
.list-over {
  font-size: 0.32rem;
  color: #d1d4da;
  line-height: 0.4267rem;
  text-align: center;
  padding: 0.8rem;
}
.agreement {
  padding: 0.4rem;
  font-size: 0.32rem;
  line-height: 0.5333rem;
  color: #2d354c;
}
.agreement .block:last-child {
  margin-top: 0.4rem;
}
.agreement .block:last-child .list .item .item-title {
  font-weight: normal;
}
.agreement .block .title {
  text-align: center;
  font-size: 0.4rem;
  font-weight: bold;
}
.agreement .block .desc {
  font-size: 0.32rem;
  line-height: 0.48rem;
  text-indent: 2em;
  margin-top: 0.2rem;
}
.agreement .block .list .item .item-title {
  font-size: 0.3467rem;
  font-weight: bold;
  line-height: 0.5067rem;
  margin-top: 0.4rem;
}
.agreement .block .list .item .item-desc {
  margin-top: 0.2667rem;
}
.agreement .block .list .item .item-list {
  padding: 0 0.2667rem;
}
.agreement .block .list .item .item-list .item-list-item-title,
.agreement .block .list .item .item-list .content {
  margin-top: 0.13335rem;
}
.extra-btns {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5333rem 0;
  z-index: 99;
}
.extra-btns a {
  display: block;
  min-width: 3.44rem;
  padding: 0 1em;
  line-height: 1.04rem;
  border-radius: 0.4667rem;
  background-size: 100%;
  background-repeat: no-repeat;
  color: #2d354c;
  font-size: 0.4267rem;
  text-align: center;
}
.extra-btns a:first-child {
  background-image: url("../img/extra-btns/stroke.png");
}
.extra-btns a:last-child {
  background-image: url("../img/extra-btns/fill.png");
}
.native-browser-tips {
  height: 2.9333rem;
  overflow: hidden;
  width: 100%;
  background: #343434;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.3733rem;
  line-height: 1.6;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
}
.native-browser-tips .text-left {
  padding-left: 0.8rem;
  padding-right: 1.3333rem;
  position: absolute;
  min-height: 0.06rem;
  text-align: left;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.native-browser-tips .text-left p {
  color: #7f7e7e;
  margin: 0;
}
.native-browser-tips .pull-right {
  right: 0;
  top: 0.2667rem;
  position: absolute;
  min-height: 0.06rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.native-browser-tips .pull-right img {
  width: 0.8rem;
  border: 0;
  vertical-align: middle;
  display: block;
}
.swiper-container .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background: #f8f8f8;
  -webkit-transition: 300ms;
  transition: 300ms;
  opacity: 1;
}
.swiper-container .swiper-pagination-bullet-active {
  width: 0.4rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#d3ff43), to(#01fffe));
  background-image: linear-gradient(to right, #d3ff43, #01fffe);
}
.page-failed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.page-failed img {
  width: 3rem;
}
.page-failed p {
  font-size: 0.3733rem;
  color: #a0a6b3;
  line-height: 0.56rem;
  margin-top: 0.5867rem;
  text-align: center;
}
input,
button,
textarea {
  border: none;
  outline: none;
  background: transparent;
}
input[type=radio],
input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.with-header {
  padding-top: 1.0933rem;
}
.with-download {
  padding-bottom: 3rem;
}
.with-downloads {
  padding-bottom: 3.7333rem;
}
.with-confirm-agreement {
  padding-bottom: 2rem;
}
.with-extra-btns {
  padding-bottom: 2rem;
}
.gray-btn {
  background-image: url("../img/btn/gray-btn.png") !important;
  background-size: 100% 100%;
  color: #1e2c55 !important;
}
