/*----------------------------颜色----------------------------*/
/*----------------------------尺寸----------------------------*/
/*----------------------------字体----------------------------*/
/*----------------------------字号----------------------------*/
/*----------------------------动画----------------------------*/
/*----------------------------圆角----------------------------*/
/*----------------------------阴影----------------------------*/
/*----------------------------透明度--------------------*/
.page-lifetime * {
  text-align: center;
  box-sizing: border-box;
}
.page-lifetime .ball-pulse div {
  background-color: #fff;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}
.page-lifetime .ball-pulse div:nth-child(0) {
  -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.page-lifetime .ball-pulse div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.page-lifetime .ball-pulse div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.page-lifetime .ball-pulse div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.page-lifetime .banner {
  width: 100%;
  height: 295px;
  background: url(https://resource.flexclip.com/pages/company/lifetime/banner.png) no-repeat center center;
  background-size: cover;
  padding-top: 80px;
}
.page-lifetime .banner .title {
  width: 90%;
  margin: auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 42px;
}
.page-lifetime .code {
  width: 100%;
  position: relative;
}
.page-lifetime .code .box {
  width: 616px;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px 0px rgba(64, 63, 75, 0.2);
  border-radius: 8px;
  padding: 50px 114px;
  position: absolute;
  left: calc(50% - 313px);
  top: -142px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 和 Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.page-lifetime .code .box .code-more-inputs {
  display: none;
}
.page-lifetime .code .box.box-used {
  display: none;
  padding: 33px 60px;
}
.page-lifetime .code .box.box-used .icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 10px;
}
.page-lifetime .code .box.box-used .title {
  width: 480px;
  font-size: 21px;
  font-weight: 500;
  color: #1A1B1C;
  line-height: 30px;
  margin-bottom: 30px;
}
.page-lifetime .code .box.box-used .btns {
  width: 434px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.page-lifetime .code .box.box-used .btns .btn {
  width: 210px;
}
.page-lifetime .code .box.box-used .btns .btn.btn-primary {
  color: #35363A;
  background: #f1f2f6;
}
.page-lifetime .code .box.box-used .btns .btn.btn-primary:hover {
  background: #E7E8EC;
}
.page-lifetime .code .input {
  width: 388px;
  height: 60px;
  border-radius: 4px;
  border: 1px solid #CECFD3;
  margin-bottom: 5px;
  font-size: 17px;
  outline: none;
}
.page-lifetime .code .input::-webkit-input-placeholder {
  /* placeholder颜色  */
  color: rgba(26, 27, 28, 0.3);
  /* placeholder字体大小  */
  font-size: 15px;
}
.page-lifetime .code .input:focus {
  border-color: #87888D;
}
.page-lifetime .code .tip {
  font-size: 15px;
  font-weight: 400;
  color: #1A1B1C;
  line-height: 18px;
  cursor: pointer;
  width: max-content;
  margin: auto;
  margin-top: 4px;
  margin-bottom: 28px;
  opacity: 0.8;
}
.page-lifetime .code .tip:hover {
  opacity: 1;
}
.page-lifetime .code .btn {
  width: 274px;
  height: 42px;
  background: #FF822C;
  border-radius: 21px;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  margin: auto;
  line-height: 42px;
  margin-bottom: 13px;
  position: relative;
}
.page-lifetime .code .btn .btn-loading {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #E0640F;
  border-radius: 21px;
}
.page-lifetime .code .btn:hover {
  background: #E0640F;
}
.page-lifetime .code .btn.loading {
  pointer-events: none;
}
.page-lifetime .code .btn.loading .btn-loading {
  display: block;
}
.page-lifetime .code .link {
  height: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #1A1B1C;
  line-height: 16px;
  text-decoration: underline;
  opacity: 0.8;
}
.page-lifetime .code .link svg {
  position: relative;
  left: 6px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 和 Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.page-lifetime .code .link:hover {
  opacity: 1;
}
.page-lifetime .code .link:hover svg {
  left: 12px;
}
.page-lifetime .code .code_error {
  font-size: 13px;
  font-weight: 400;
  color: #F00000;
  line-height: 15px;
  display: none;
  margin-bottom: 8px;
}
.page-lifetime .code .more_code {
  display: block;
}
.page-lifetime .code .less_code {
  display: none;
}
.page-lifetime .faq {
  padding-top: 256px;
  padding-bottom: 75px;
}
.page-lifetime .faq .faq-title {
  font-size: 36px;
  font-weight: bold;
  color: #1A1B1C;
  line-height: 42px;
  margin-bottom: 40px;
}
.page-lifetime .faq .faq-content {
  width: 800px;
  margin: auto;
  margin-bottom: 26px;
}
.page-lifetime .faq .faq-content .faq-item {
  width: 100%;
  margin-bottom: 26px;
}
.page-lifetime .faq .faq-content .faq-item .item-title {
  height: 20px;
  font-size: 17px;
  font-weight: 500;
  color: #1A1B1C;
  line-height: 20px;
  cursor: pointer;
}
.page-lifetime .faq .faq-content .faq-item .item-title .title-desc {
  width: calc(100% - 16px);
  height: 100%;
  display: inline-block;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #1A1B1C;
  line-height: 21px;
}
.page-lifetime .faq .faq-content .faq-item .item-title .title-icon {
  width: 16px;
  height: 100%;
  float: right;
  display: none;
}
.page-lifetime .faq .faq-content .faq-item .item-title .title-icon svg polygon {
  fill: #1A1B1C;
}
.page-lifetime .faq .faq-content .faq-item .item-title .title-icon svg path {
  fill: #1A1B1C;
}
.page-lifetime .faq .faq-content .faq-item .item-title .title-icon.title-icon-add {
  display: block;
}
.page-lifetime .faq .faq-content .faq-item .item-title .title-icon.title-icon-sub {
  display: none;
}
.page-lifetime .faq .faq-content .faq-item .item-title:hover .title-icon svg polygon {
  fill: #FF822C;
}
.page-lifetime .faq .faq-content .faq-item .item-title:hover .title-icon svg path {
  fill: #FF822C;
}
.page-lifetime .faq .faq-content .faq-item .item-desc {
  width: 100%;
  color: #1A1B1C;
  line-height: 24px;
  padding-bottom: 26px;
  padding-top: 34px;
  text-align: left;
  display: none;
}
.page-lifetime .faq .faq-content .faq-item .item-desc p {
  text-align: left;
  line-height: 24px;
  margin-bottom: 13px;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}
.page-lifetime .faq .faq-content .faq-item .item-desc p:last-child {
  margin-bottom: 0;
}
.page-lifetime .faq .faq-content .faq-item .item-desc a {
  color: #FF822C;
  text-decoration: underline;
}
.page-lifetime .faq .faq-content .faq-item .item-desc a:hover {
  color: #E0640F;
}
.page-lifetime .faq .faq-content .faq-item .item-desc ul {
  list-style: none;
}
.page-lifetime .faq .faq-content .faq-item .item-desc ul li {
  text-align: left;
}
.page-lifetime .faq .faq-content .faq-item.active .item-title .title-icon.title-icon-add {
  display: none;
}
.page-lifetime .faq .faq-content .faq-item.active .item-title .title-icon.title-icon-sub {
  display: block;
}
.page-lifetime .faq .faq-content .faq-item-border {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin-top: 20px;
  margin-bottom: 26px;
}
.page-lifetime .faq .faq-content .faq-item-border:last-child {
  margin-bottom: 0;
}
.page-lifetime .error-box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(151, 151, 151, 0.6);
  left: 0;
  top: 0;
  z-index: 99;
  justify-content: space-around;
  align-items: center;
  display: none;
}
.page-lifetime .error-box .box {
  position: relative;
  width: 630px;
  padding: 43px 40px;
  background: #fff;
  box-shadow: 0px 6px 20px 0px rgba(18, 15, 28, 0.25);
  border-radius: 6px;
}
.page-lifetime .error-box .box .close {
  position: absolute;
  right: -32px;
  top: -32px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 16px;
  transition: all 0.3s;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.page-lifetime .error-box .box .close img {
  width: 16px;
  height: 16px;
}
.page-lifetime .error-box .box .close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  animation: rotateCloseHover 0.3s;
  -moz-animation: rotateCloseHover 0.3s;
  -webkit-animation: rotateCloseHover 0.3s;
  -o-animation: rotateCloseHover 0.3s;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.page-lifetime .error-box .box .title {
  font-size: 24px;
  font-weight: 500;
  color: #1A1B1C;
  line-height: 28px;
  margin-bottom: 18px;
  text-align: left;
}
.page-lifetime .error-box .box .desc {
  font-size: 15px;
  font-weight: 400;
  color: #1A1B1C;
  line-height: 24px;
  margin-bottom: 30px;
  text-align: left;
}
.page-lifetime .error-box .box .btn {
  width: 140px;
  height: 40px;
  background: #FF822C;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 40px;
  float: right;
}
.page-lifetime .error-box .box .btn:hover {
  background: #E0640F;
}
.page-lifetime.code-more .code .box .more_code {
  display: none;
}
.page-lifetime.code-more .code .box .less_code {
  display: block;
}
.page-lifetime.code-more .faq {
  padding-top: 392px;
}
.page-lifetime.code-used .code .box {
  display: none;
}
.page-lifetime.code-used .code .box.box-used {
  display: block;
}
/*# sourceMappingURL=lifetime.css.map */