html,
body {
	background: #fff;
	font-size: 14px;
	font-family: PingFangSC-Medium, PingFang SC;
}
.flex {
	display: flex;
	display: -webkit-flex;
}
.flex-between {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}
.border-top,
.border-bottom {
	position: relative;
}
.border-top:before {
	content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  z-index: 8;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #D8D8D8;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.border-bottom:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  z-index: 8;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #D8D8D8;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio:2) {
	.border-top:before,
  .border-bottom:after {
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5)
  }

}

@media only screen and (-webkit-min-device-pixel-ratio:3) {
  .border-top:before,
  .border-bottom:after {
    -webkit-transform: scaleY(.33);
    transform: scaleY(.33)
  }
}
.container {
	margin: 0 auto;
	position: relative;
	width: 100%;
	max-width: 750px;
	min-height: 100vh;
	box-sizing: border-box;
	padding-top: 64px;
	overflow-x: hidden;
}
/*header*/
.header-bar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 64px;
	align-items: center;
	box-sizing: border-box;
	padding: 0 30px;
	background: #F7F9FC;
}
.header-bar.white {
	background: #fff;
}
.header-bar.fixed {
	box-shadow: 0px 8px 8px rgba(9, 30, 66, 0.25);
}
.header-bar .logo {
	width: 62px;
	height: auto;
}
.header-bar .logo .thumb {
	display: block;
	width: 100%;
	height: auto;
}
.header-bar .link {
	width: 72px;
	height: 24px;
	border-radius: 3px;
	background: rgba(9, 30, 66, 0.04);
	text-align: center;
	line-height: 24px;
	font-size: 12px;
	color: #344563;
}
.header-bar .link.ml10 {
	margin-left: 10px;
}
.header-bar .avatar {
	margin-left: 10px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	overflow: hidden;
}
.header-bar .avatar .thumb {
	display: block;
	width: 100%;
	height: 100%;
}
.header-bar .logout {
	margin-left: 10px;
	width: 40px;
	height: 24px;
	border-radius: 3px;
	background: #0061ff;
	color: #fff;
	line-height: 24px;
	font-size: 12px;
	text-align: center;
}
.content {
	width: 100%;
	height: auto;
}
/*footer*/
.footer {
	width: 100%;
	height: auto;
	padding-top: 24px;
	padding-bottom: 30px;
	border-top: 1px solid #F4F5F7;
}
.footer .menus {
	margin-bottom: 20px;
	width: auto;
	justify-content: center;
}
.footer .menus a {
	display: inline-block;
	margin: 0 12px;
	width: auto;
	height: 20px;
	font-size: 14px;
	line-height: 20px;
	color: #000;
}
.footer .copyright {
	font-size: 12px;
	line-height: 26px;
	text-align: center;
	color: #C0C4CC;
	font-weight: 400;
}
.footer .ba {
	display: block;
	font-size: 12px;
	line-height: 26px;
	text-align: center;
	color: #C0C4CC;
	font-weight: 400;
}
.footer .nvidia {
	margin: 20px auto 0;
	width: 80px;
	height: auto;
}
.footer .nvidia .icon {
	display: block;
	width: 100%;
	height: auto;
}
/*login*/
.login {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 44px 58px;
}
.login .title {
	width: 100%;
	height: 28px;
	align-items: center;
	justify-content: center;
}
.login .title .icon {
	margin-right: 4px;
	width: 28px;
	height: 28px;
}
.login .title .txt {
	font-size: 20px;
	line-height: 28px;
	color: #000;
}
.login .tip {
	margin-top: 10px;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	color: #B3BAC5;
}
.login .form-groups {
	margin-top: 28px;
	width: 100%;
	height: auto;
}
.login .form-group {
	margin-bottom: 16px;
	width: 100%;
	height: auto;
}
.login .form-group:last-child {
	margin-bottom: 0;
}
.login .form-group .form-input {
	flex: 1;
	height: 40px;
}
.login .form-group .inner-input {
	width: 100%;
	height: 40px;
	outline: none;
	box-sizing: border-box;
	padding: 0 16px;
	border-radius: 3px;
	border: 2px solid #DFE1E5;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	font-size: 14px;
	color: #344563;
	font-weight: 400;
}
.login .form-group .inner-input:focus {
	outline: none;
	border-color: #4C9AFF;
}
.login .form-group .form-code {
  margin-left: 10px;
  width: 96px;
  height: 40px;
  border-radius: 3px;
  border: none;
  outline: none;
  background: rgba(9, 30, 66, 0.04);
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #344563;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.login .form-group .form-code:focus {
	outline: none;
}
.login .country-group .form-input {
	position: relative;
}
.login .country-group .inner-input {
	box-sizing: border-box;
	padding-left: 102px;
}
.country-group .country {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 90px;
  height: 36px;
  box-sizing: border-box;
  padding-left: 16px;
  align-items: center;
  cursor: pointer;
}
.country-group .country:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background: #DFE1E5;
}
.country-group .country .country_select {
  width: 44px;
  line-height: 36px;
  font-size: 14px;
  color: #253858;
  text-align: left;
}
.country-group .country .arrow-wrapper {
  width: 24px;
  height: 24px;
}
.country-group .country .arrow-wrapper .icon {
	display: block;
	width: 24px;
	height: 24px;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.country-group .country .arrow-wrapper .icon.up {
	transform: rotate(180deg);
}
.country-list {
  /*display: none;*/
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 10;
  width: 100%;
  max-height: 224px;
  box-sizing: border-box;
  padding: 8px 0 6px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px -2px rgba(9,30,66,0.25), 0px 0px 1px 0px rgba(9,30,66,0.31);
  background: #fff;
  overflow-y: auto;
}
.country-list .item {
	width: 100%;
	height: 32px;
	box-sizing: border-box;
	padding: 0 18px;
	background: #fff;
	align-items: center;
	cursor: pointer;
}
.country-list .item:hover {
	background: #F4F5F7;
}
.country-list .item .flag {
	position: relative;
	width: 24px;
	height: 16px;
	background-image: url(../images/flags.png);
	background-repeat:  no-repeat;
	background-size: 24px 3876px;
}
.country-list .item .zh,
.country-list .item .code {
	font-size: 14px;
	line-height: 32px;
	color: #344563;
	text-align: left;
}
.country-list .item .zh {
	margin-left: 10px;
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.country-list .item .code {
	width: 50px;
	text-align: right;
}
.country-list .line-divider {
	margin: 8px 0;
	width: 100%;
	height: 1px;
	background: #E4EBF0;
}
.login .form-btn {
  margin: 0 auto;
  width: 100%;
  height: 40px;
  padding: 24px 0;
}
.login .form-btn .inner-btn {
  width: 100%;
  height: 40px;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 3px;
  background: #0061FF;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.login .form-btn .inner-btn:focus {
	outline: none;
}
.login .form-btn .inner-btn.loading {
	justify-content: center;
	align-items: center;
	background: rgba(9, 30, 66, 0.04);
	color: #344563;
}
.login .form-btn .inner-btn.loading .icon {
	margin-right: 5px;
	width: 16px;
	height: 16px;
	transform-origin: 8px 8px;
	animation: rotate 1s linear infinite;
}
@keyframes rotate{
	from{transform: rotate(0deg)}
	to{transform: rotate(360deg)}
}
.login .comment {
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #091E42;
}
.login .comment span {
	color: #B3BAC5;
}
.login .comment a {
	margin: 0 2px;
	color: #344563;
}
.LoginOther {
	margin: 0 0 20px;
	width: 100%;
	height: auto;
}
.LoginOther .loginBtn {
	margin: 0 auto;
  width: 158px;
  height: 32px;
  padding: 0 12px;
  border-radius: 3px;
  background: rgba(9, 30, 66, 0.04);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 32px;
  color: #0061ff;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.LoginOther .loginBtn .icon {
  margin-right: 2px;
  width: 20px;
  height: 20px;
}
.LoginOther .loginInWx {
  color: #1AAD19;
}
/*bindWX*/
.bindWx {
	width: 100%;
	box-sizing: border-box;
	padding-top: 20px;
	padding-bottom: 30px;
}
.bindWx .title {
	width: 100%;
	height: 28px;
	align-items: center;
	justify-content: center;
}
.bindWx .title .icon {
	margin-right: 4px;
	width: 28px;
	height: 28px;
}
.bindWx .title .txt {
	font-size: 20px;
	line-height: 28px;
	color: #000;
}
.bindWx .tip {
	margin-top: 10px;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	color: #B3BAC5;
}
.bindWx .wxCode {
	margin: 24px auto 0;
	width: 160px;
	height: 160px;
}
.bindWx .wxCode .thumb {
	display: block;
	width: 160px;
	height: 160px;
}
.bindWx .afterCode {
	margin-top: 10px;
	width: 100%;
	text-align: center;
	font-size: 12px;
	line-height: 20px;
	color: #344563;
}
/*why*/
.why {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 30px;
	border-top: 1px solid #F4F5F7;
}
.why .qa {
	margin-bottom: 16px;
	width: 100%;
}
.why .qa:last-child {
	margin-bottom: 0;
}
.why .qa .q{
	font-size: 18px;
	line-height: 28px;
	color: #344563;
}
.why .qa .a{
	margin-top: 10px;
	font-size: 14px;
	line-height: 24px;
	color: #344563;
}
/*main*/
.main {
	width: 100%;
	height: 294px;
	box-sizing: border-box;
	padding-top: 60px;
	background: url(../images/bg_index.png) no-repeat center top;
	background-size: 100% 294px;
	text-align: center;
}
.main h2 {
	font-size: 30px;
	line-height: 36px;
	color: #1F2329;
	font-weight: normal;
}
.main .btn {
	margin: 30px auto 0;
	display: block;
	width: 110px;
	height: 38px;
	border-radius: 4px;
	background: #0061FF;
	text-align: center;
	line-height: 38px;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
}
.main .btn-groups {
	margin: 30px auto 0;
	width: 100%;
	justify-content: center;
}
.main .btn-groups .btn {
	margin: 0;
}
.main .btn-groups .btn:first-child {
	margin-right: 12px;
}
/*试听*/
.audition {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 24px 30px 20px;
}
.audition h5 {
	text-align: center;
	font-size: 20px;
	line-height: 28px;
	color: #344563;
	font-weight: normal;
}
.audition .player {
	margin-top: 24px;
}
/*试听*/
.advantage {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 20px 30px 40px;
}
.advantage h5 {
	text-align: center;
	font-size: 20px;
	line-height: 28px;
	color: #344563;
	font-weight: normal;
}
.advantage .agr {
	margin-top: 24px;
}
.advantage .agr .icon {
	margin: 0 auto;
	display: block;
	width: 36px;
	height: 36px;
}
.advantage .agr .name {
	margin-top: 10px;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #344563;
}
.advantage .agr .description {
	margin-top: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #344563;
	font-weight: 400;
	text-align: center;
}
/*price*/
.price {
	box-sizing: border-box;
	padding: 30px 30px 40px;
}
.price h2 {
	text-align: center;
	font-size: 26px;
	line-height: 40px;
	color: #344563;
	font-weight: normal;
}
.price .item {
	margin-bottom: 40px;
	width: 100%;
	height: auto;
	background: #fff;
	box-shadow: 0px 8px 16px -4px rgba(9, 30, 66, 0.25);
}
.price .item .toper {
	width: 100%;
	height: 146px;
	box-sizing: border-box;
	padding-top: 32px;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	font-size: 16px;
	color: #344563;
	line-height: 24px;
}
.price .item .toper .txt1 {
	margin-bottom: 14px;
}
.price .item .toper .txt2 .num {
	margin: 0 10px;
	font-size: 40px;
	font-weight: bold;
}
.price .item .btmer {
	box-sizing: border-box;
	padding: 24px 20px 32px;
}
.price .info {
	width: 100%;
	height: auto;
	padding-bottom: 10px;
}
.price .txt-group {
	margin-bottom: 16px;
	width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: #344563;
}
.price .txt-group .name {
	font-weight: 400;
	color: #838C9D;
	white-space: nowrap;
}
.price .txt-group .val {
	max-width: 190px;
	white-space: break-word;
	text-align: right;
}
.price .btn-group {
	width: 100%;
	height: auto;
}
.price .btn-group .btn {
	margin: 0 auto;
	display: block;
	width: 140px;
	height: 42px;
	outline: none;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	background: none;
	font-size: 16px;
	line-height: 42px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
}
.price .btn-group .btn:active {
	outline: none;
}
.price .item .btn-group .hasGet {
	border-color: #DFE1E6;
	background: none;
	color: #DFE1E6;
}
/*type == default*/
.price .default {
	margin-top: 30px;
}
.price .default .toper {
	background-image: url(../images/v1.png);
}
.price .default .btn {
	border-color: #0061FF;
	color: #0061FF;
}
/*type == high*/
.price .high .toper {
	background-image: url(../images/v2.png);
}
.price .high .btn {
	border-color: #FCD18D;
	background: #FCD18D;
	color: #96600C;
}
/*type == super*/
.price .super .toper {
	background-image: url(../images/v3.png);
}
.price .super .btn {
	border-color: #CDDAF7;
	background: #CDDAF7;
	color: #214597;
}
.price h5 {
	font-size: 16px;
	line-height: 28px;
	color: #B3BAC5;
	text-align: center;
	font-weight: normal;
}
/*叠加包*/
.overtime {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 20px 30px;
}
.overtime .title {
	text-align: center;
	line-height: 64px;
	font-size: 28px;
	color: #344563;
}
.overtime .sub-title {
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	color: #344563;
}
.overtime .pack-wrapper {
	margin-top: 30px;
	width: 100%;
	height: auto;
}
.overtime .pack-wrapper .item {
	margin-bottom: 20px;
	width: 100%;
	height: 126px;
	background: url(../images/card1.png) no-repeat center;
	background-size: 100% 100%;
	justify-content: space-around;
}
.overtime .pack-wrapper .item:last-child {
	margin-bottom: 0;
}
.overtime .item .longPrice {
	flex: 1;
	box-sizing: border-box;
	padding-top: 43px;
	justify-content: center;
}
.overtime .item .longPrice .money {
	font-size: 40px;
	line-height: 40px;
	color: #344563;
	font-weight: bolder;
}
.overtime .item .longPrice .long {
	margin-left: 10px;
	box-sizing: border-box;
	padding-top: 16px;
	font-size: 16px;
	line-height: 24px;
	color: #344563;
	font-weight: 400;
}
.overtime .item .btn-wrapper {
	width: 114px;
	align-items: center;
	justify-content: center;
}
.overtime .item .btn-wrapper .btn {
	width: 88px;
	height: 42px;
	border-radius: 3px;
	background: #CDDAF7;
	text-align: center;
	line-height: 42px;
	font-size: 16px;
	color: #214597;
	cursor: pointer;
}
.overtime .item .btn-wrapper .btn:hover {
	opacity: 0.8;
}
/*邀请*/
.inviteGroup {
	box-sizing: border-box;
	padding: 0 30px;
}
.inviteGroup .title {
	text-align: center;
	line-height: 64px;
	font-size: 28px;
	color: #344563;
}
.inviteGroup .invite-type {
	margin-top: 12px;
}
.inviteGroup .invite-type .invite-item {
	margin-bottom: 20px;
	position: relative;
	width: 100%;
	height: 260px;
	box-sizing: border-box;
	padding: 83px 22px 0;
	box-shadow: -6px 6px 15px 5px #ECEDF0;
	background: url(../images/bg_invite.png) no-repeat center top;
}
.inviteGroup .invite-type .invite-item:last-child {
	margin-bottom: 0;
}
.inviteGroup .invite-type .invite-sigal {
	position: absolute;
	top: 24px;
	left: 0;
	width: 95px;
	height: 42px;
	border-radius: 0 21px 21px 0;
	background: #FCD18E;
	text-align: center;
	line-height: 42px;
	font-size: 18px;
	color: #996312;
}
.inviteGroup .invite-type .invite-text {
	font-size: 22px;
	line-height: 40px;
	color: #344563;
}
.inviteGroup .invite-btn {
	margin-top: 24px;
}
.inviteGroup .btn {
	margin: 0 auto;
	display: block;
	width: 100px;
	height: 42px;
	outline: none;
	padding: 0;
	border: none;
	border-radius: 3px;
	background: #005EFF;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}
.inviteGroup .btn:focus {
	outline: none;
}
/*兑换码*/
.convert {
	width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 20px 30px 40px;
}
.convert .title {
	text-align: center;
	line-height: 64px;
	font-size: 28px;
	color: #344563;
}
.convert-wrapper {
	margin-top: 24px;
	width: 100%;
	height: auto;
}
.convert-wrapper .convert-input {
	width: 100%;
	height: 144px;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 0 44px 0 37px;
	background: url(../images/card2.png) no-repeat center;
	background-size: 100% 100%;
}
.convert-wrapper .convert-input .convert-code {
	display: block;
	width: 100%;
	height: 42px;
	box-sizing: border-box;
	outline: none;
	border: 2px solid #DFE1E5;
	border-radius: 3px;
	padding: 0 18px;
	font-size: 14px;
	color: #344563;
}
.convert-wrapper .convert-input .convert-code:focus {
	outline: none;
	border-color: #0061ff;
}
.convert-wrapper .convert-input .convert-code::-webkit-input-placeholder,
.convert-wrapper .convert-input .convert-code::-ms-input-placeholder,
.convert-wrapper .convert-input .convert-code::-moz-placeholder {
	font-size: 14px;
  color: #7A869A;
}
.convert-wrapper .convert-btn {
	margin-top: 24px;
	width: 100%;
}
.convert-wrapper .convert-btn .btn-convert {
	margin: 0 auto;
	display: block;
	width: 100px;
	height: 42px;
	outline: none;
	padding: 0;
	border: none;
	border-radius: 3px;
	background: #FCD18D;
	color: #96600C;
	font-size: 16px;
	cursor: pointer;
}
.convert-wrapper .convert-btn .btn-convert:focus {
	outline: none;
}
/*buy*/
.buy {
	width: 100%;
	box-sizing: border-box;
	padding: 20px 30px 40px;
}
.buy h2 {
	font-size: 20px;
	line-height: 32px;
	color: #344563;
	text-align: center;
	font-weight: normal;
}
.buy .card {
	margin-top: 20px;
	width: 100%;
	height: auto;
	background: #fff;
	box-shadow: 0px 8px 16px -4px rgba(9, 30, 66, 0.25);
}
.buy .card .toper {
	width: 100%;
	height: 146px;
	box-sizing: border-box;
	padding-top: 32px;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	font-size: 16px;
	color: #344563;
	line-height: 24px;
}
.buy .card .toper .txt1 {
	margin-bottom: 14px;
}
.buy .card .toper .txt2 .num {
	margin: 0 10px;
	font-size: 40px;
	font-weight: bold;
}
.buy .card .btmer {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 32px 52px;
}
.buy .spec {
	width: 100%;
	height: auto;
}
.buy .spec .item {
	position: relative;
	margin-bottom: 24px;
	width: 100%;
	height: 64px;
	align-items: center;
	box-sizing: border-box;
	padding: 0 26px;
	border: 1px solid #B3BAC5;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.buy .spec .item:last-child {
	margin-bottom: 0;
}
.buy .spec .item.selected {
	border-color: #0061FF;
}
.buy .spec .item .discount {
	position: absolute;
	top: -8px;
  right: -25px;
	width: 50px;
	height: 16px;
	border-radius: 8px;
	background: #FF5630;
	font-size: 12px;
	text-align: center;
	line-height: 16px;
	color: #fff;
}
.buy .long {
	height: 62px;
	font-size: 36px;
	line-height: 62px;
	color: #344563;
}
.buy .long .txt {
	box-sizing: border-box;
	padding-top: 26px;
	font-size: 16px;
	line-height: 20px;
}
.buy .money {
	height: 62px;
	box-sizing: border-box;
	padding-top: 26px;
	font-size: 18px;
	line-height: 20px;
	color: #344563;
}
.buy .btn-group {
	margin-top: 34px;
	width: 100%;
	height: auto;
}
.buy .btn {
	margin: 0 auto;
	display: block;
	width: 140px;
	height: 42px;
	outline: none;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	background: none;
	font-size: 16px;
	line-height: 42px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
}
.buy .btn:active {
	outline: none;
}
/* buy type default */
.buy .card.default .toper {
	background-image: url(../images/v1.png);
}
/* buy type high */
.buy .card.high .toper {
	background-image: url(../images/v2.png);
}
.buy .card.high .btn {
	border-color: #FCD18D;
	background: #FCD18D;
	color: #96600C;
}
/* buy type super */
.buy .card.super .toper {
	background-image: url(../images/v3.png);
}
.buy .card.super .btn {
	border-color: #CDDAF7;
	background: #CDDAF7;
	color: #214597;
}
/*剩余时间*/
.remain {
	width: 100%;
	height: 64px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	text-align: center;
	line-height: 64px;
	font-weight:400;
	color: #344563;
	font-size: 16px;
}
.remain span {
	font-size: 18px;
	font-weight: normal;
}
.remain.default {
	background-image: url(../images/v1b.png);
}
.remain.high {
	background-image: url(../images/v2b.png);
}
.remain.super {
	background-image: url(../images/v3b.png);
}
/*选择输出类型*/
.controlBar {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 0 24px;
}
.controlBar .item {
	position: relative;
	flex: 1;
	box-sizing: border-box;
	padding: 40px 0 20px;
}
.controlBar .item .sigal {
	position: absolute;
	top: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: block;
	width: 46px;
	height: 16px;
	border-radius: 8px;
	background: #FCD18D;
	text-align: center;
	line-height: 16px;
	font-size: 12px;
	color: #96600C;
}
.controlBar .item .btn-wrapper {
	position: relative;
	width: 100%;
	height: 40px;
	justify-content: center;
	align-items: center;
}
.controlBar .item .btn {
	position: relative;
	z-index: 9;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #F4F5F7;
	cursor: pointer;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.controlBar .item .btn:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 4px solid #F4F5F7;
	background: #F4F5F7;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.controlBar .item .tip {
	margin-top: 4px;
	position: relative;
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #B3BAC5;
	font-weight: 400;
}
/*checked*/
.controlBar .item.checked .btn {
	background: #CDDAF7;
}
.controlBar .item.checked .btn:after {
	border-color: #fff;
	background: #0061ff;
}
.controlBar .item.checked .tip {
	color: #0061ff;
}
/*task-wrapper*/
.task-wrapper {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 20px 24px 36px;
}
.task-wrapper .title {
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	color: #344563;
	font-weight: normal;
}
.task-wrapper .task-list {
	margin-top: 14px;
	width: 100%;
	height: auto;
}
.task-wrapper .task-list .item {
	width: 100%;
	height: 36px;
	overflow: hidden;
	justify-content: space-between;
	font-size: 14px;
	line-height: 36px;
}
.task-wrapper .item .name {
	width: 160px;
	height: 36px;
	overflow: hidden;
	color: #344563;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.task-wrapper .item .downLink {
	display: inline-block;
	color: #0061FF;
}
.task-wrapper .item .status.fail {
	display: inline-block;
	color: #DE350B;
}
.task-wrapper .item .status.isTransform {
	display: inline-block;
	color: #0061ff;
}
.task-wrapper .item .status.isWait {
	display: inline-block;
	color: #0061ff;
}
.task-wrapper .item.overTimeItem .name {
	color: #B3BAC5;
}
.task-wrapper .item.overTimeItem .status {
	display: inline-block;
	color: #B3BAC5;
}
.task-empty {
	display: block;
	width: 100%;
	height: auto;
	padding: 40px 0 44px;
}
.task-empty .icon {
	display: block;
	margin: 0 auto;
	width: 90px;
	height: auto;
}
.task-empty .tip {
	margin-top: 10px;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
	color: #A5ADBA;
	font-weight: 400;
}
.pageBox {
	margin-top: 20px;
}
.pageBox .item {
	flex: 1;
	line-height: 24px;
	font-size: 14px;
	text-align: center;
	color: #0061ff;
}
.pageBox .item.disabled {
	color: #B3BAC5;
}
/*uploader-wrapper*/
.uploader-wrapper {
	margin: 10px 24px 20px;
	height: auto;
	box-sizing: border-box;
	border: 2px dashed #E3E4E6;
	overflow: hidden;
}
.upload-card {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 32px 20px 20px;
}
.upload-card .icon {
	display: block;
	margin: 0 auto;
	width: 68px;
	height: auto;
}
.upload-card .txt {
	margin-top: 10px;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 16px;
	line-height: 28px;
	color: #000;
	/*font-weight: 400;*/
}
.upload-card .upBtn {
	display: block;
	margin: 10px auto 0;
	width: 86px;
	height: 32px;
	border-radius: 3px;
	background: #0061FF;
	line-height: 32px;
	text-align: center;
	color: #fff;
	font-size: 16px;
}
.upload-card .tip {
	display: block;
	margin: 10px auto 0;
	width: 100%;
	line-height: 1.8;
	text-align: center;
	color: #A5ADBA;
	font-size: 12px;
}
.upload-card .file_pro {
	position: relative;
	margin: 10px auto 0;
	width: 120px;
	height: 8px;
	border-radius: 4px;
	background: #F4F5F7;
}
.upload-card .file_pro .pro_block {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	height: 8px;
	border-radius: 4px;
	background: #0061ff;
}
.upload-card .warning {
	display: block;
	margin: 34px auto 0;
	width: 100%;
	line-height: 16px;
	text-align: center;
	color: #A5ADBA;
	font-size: 12px;
}
.upload-card .name {
	margin-top: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	font-weight: 400;
	text-align: center;
}
.upload-card .size {
	margin-top: 8px;
	font-size: 12px;
	line-height: 16px;
	color: #000;
	font-weight: 400;
	text-align: center;
}
.upload-card .retry {
	display: block;
	margin: 10px auto 0;
	width: 86px;
	height: 32px;
	border: none;
	outline: none;
	border-radius: 3px;
	background: #DE350B;
	line-height: 32px;
	text-align: center;
	color: #fff;
	font-size: 16px;
}
.upload-card .retry:focus {
	outline: none;
}
.upload-card .size {
	margin-top: 8px;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #000;
	font-weight: 400;
}
.upload-card .tipWait {
	margin-top: 16px;
}
.upload-card .tipWait .cycle {
	margin-right: 5px;
	width: 12px;
	height: 12px;
	transition: 0.5s;
	transform-origin: 6px 6px;
	animation: rotate 1s linear infinite;
}
@keyframes rotate{
	from{transform: rotate(0deg)}
	to{transform: rotate(360deg)}
}
/*微信浏览器下载提示*/
.wxTip {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 30px;
	background: #F7F7F7;
}
.wxTip .tit {
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 32px;
	color: #000;
}
.wxTip .txt {
	font-size: 14px;
	line-height: 24px;
	color: #B3BAC5;
}
.wxTip .txt img {
	display: inline-block;
	margin: 0 6px;
	width: auto;
	height: 24px;
}
.wxTip .txt span {
	color: #0061ff;
}
.wxTip .thumb {
	display: block;
	margin: 26px auto 0;
	width: 178px;
	height: auto;
}
.wxTip .arrow {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 125px;
	height: auto;
}
.wxTip .close {
	position: absolute;
	bottom: 40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 32px;
	height: 32px;
}

/*layer*/
.layui-layer-loading {
	width: 100%;
}
.layui-layer-loading .layui-layer-content {
	margin: 0 auto;
}
/*查询是否支付*/
.payCheck {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}
.payCheck .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 70%;
	height: auto;
	border-radius: 4px;
	background: #fff;
}
.payCheck .inner .title {
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: #000;
	font-size: 16px;
}
.payCheck .inner .hasOk {
	width: 100%;
	height: 48px;
	line-height: 48px;
	text-align: center;
	color: #0061ff;
	font-size: 14px;
}
.payCheck .inner .retry {
	width: 100%;
	height: 48px;
	line-height: 48px;
	text-align: center;
	color: #999;
	font-size: 14px;
}
/*用户协议/隐私政策*/
.richTxt {
	box-sizing: border-box;
	padding: 20px 30px 30px;
}
.richTxt .rtTit {
	/*margin-bottom: 20px;*/
	width: 100%;
	text-align: center;
	line-height: 32px;
	font-size: 20px;
	color: #000;
}
.richTxt p {
	/*margin-bottom: 20px;*/
	font-size: 14px;
	color: #000;
	line-height: 24px;
	font-weight: 400;
}
/*引导下载页*/
.fileCard {
	margin: 0 auto;
	width: 200px;
	box-sizing: border-box;
	padding: 100px 0;
}
.fileCard .icon {
	margin: 0 auto;
	display: block;
	width: 68px;
	height: auto;
}
.fileCard .name {
	margin-top: 10px;
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	text-align: center;
}
.fileCard .size {
	margin-top: 8px;
	width: 100%;
	font-size: 12px;
	line-height: 16px;
	color: #000;
	text-align: center;
}
.fileCard .fileDown {
	display: block;
	margin: 10px auto 0;
	width: 86px;
	height: 32px;
	outline: none;
	border-radius: 3px;
	background: #0061FF;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 32px;
}
.fileCard .overDown {
	display: block;
	margin: 10px auto 0;
	width: 100px;
	height: 32px;
	outline: none;
	border-radius: 3px;
	background: #efefef;
	font-size: 16px;
	color: #999;
	text-align: center;
	line-height: 32px;
}
/*invite*/
.invite {}
.invite.inWx {
	padding-bottom: 82px;
}
.topTip {
	box-sizing: border-box;
	padding: 10px 0;
	background: #E0EDFF;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	color: #214597;
}
.invite .topMain {
	width: 100%;
	height: 294px;
	box-sizing: border-box;
	padding-top: 30px;
	background: url(../images/bg_index.png) no-repeat top center;
	background-size: 100% 294px;
}
.invite .topMain .avatar {
	margin: 0 auto;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
}
.invite .topMain .avatar .thumb {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.invite .topMain .name {
	margin-top: 5px;
	text-align: center;
	font-size: 16px;
	line-height: 28px;
	color: #344563;
}
.invite .topMain .text {
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	color: #344563;
}
.invite .topMain .welcome {
	margin-top: 14px;
	justify-content: center;
	font-size: 14px;
	line-height: 24px;
	color: #344563;
}
.invite .topMain .welcome .gift {
	width: 24px;
	height: 24px;
}
.invite .share-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 82px;
	box-sizing: border-box;
	padding: 14px 30px 20px;
	background: #fff;
}
.invite .share-bar .share-btn {
	width: 100%;
	height: 48px;
	border: none;
	outline: none;
	border-radius: 5px;
	background: #0061FF;
	font-size: 16px;
	color: #fff;
	text-align: center;
}
/*solution*/
.solution {
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
}
.solution .bg {
	display: block;
	width: 100%;
	height: auto;
}
.solution .txt {
	position: absolute;
	top: 87px;
	left: 0;
	width: 100%;
	text-align: center;
	line-height: 22px;
	font-size: 16px;
	color: #fff;
}
.solution-groups {
	position: relative;
	top: -24px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}
.solution-groups .solution-list {
	width: 100%;
	flex-wrap: wrap;
}
.solution-groups .solution-list .item {
	margin-bottom: 12px;
	width: 48%;
	height: 92px;
	box-sizing: border-box;
	padding-top: 10px;
	border-radius: 6px;
	background: #FFFFFF;
	box-shadow: -3px 4px 13px -4px rgba(94, 113, 146, 0.25);
}
.solution-groups .solution-list .item .shop_logo {
	margin: 0 auto;
	display: block;
	width: auto;
	height: 40px;
}
.solution-groups .solution-list .item .shop_name {
	margin-top: 12px;
	box-sizing: border-box;
	padding: 0 10px;
	text-align: center;
	font-size: 12px;
	color: #344563;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.shop-empty {
	min-height: 200px;
	border-radius: 6px;
	background: #FFFFFF;
	box-shadow: -3px 4px 13px -4px rgba(94, 113, 146, 0.25);
	text-align: center;
	line-height: 88px;
	font-size: 12px;
	color: #999;
}
/*layout*/
.layout {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.layout .fixed-wrapper {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 99;
	width: 284px;
	height: auto;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 24px;
	background: #fff;
}
/*download*/
.download-wrapper {
	position: fixed;
	width: 100%;
	height: auto;
	min-height: 460px;
	box-sizing: border-box;
	padding: 24px 58px 36px;
	background: #fff;
}
.download-wrapper .down-title {
	width: 100%;
	text-align: center;
	line-height: 24px;
	font-size: 20px;
	color: #344563;
}
.download-wrapper .tab {
	margin-top: 10px;
	width: 100%;
	height: 33px;
}
.download-wrapper .tab .tab-item {
	flex: 1;
	height: 33px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(229, 229, 229, 1);
	font-size: 14px;
	line-height: 32px;
	text-align: center;
	color: rgba(229, 229, 229, 1);
	-webkit-transition: all ease 0.3s;
	transition: all ease 0.3s;
	cursor: pointer;
}
/* .download-wrapper .tab .tab-item:hover, */
.download-wrapper .tab .tab-item.active {
	border-color: #0061ff;
	color: #0061ff;
}
.download-wrapper .tab-content {
	width: 100%;
	height: auto;
}
.download-wrapper .tab-content .tab-contentItem {
	display: none;
	width: 100%;
	height: auto;
}
.download-wrapper .tab-content .tab-contentItem.active {
	display: block;
}
.download-wrapper .btn-groups {
	margin-top: 22px;
	justify-content: center;
	align-items: center;
}
.download-wrapper .btn-groups .btn {
	display: inline-block;
	width: 136px;
	height: 44px;
	border-radius: 3px;
	background: #0061ff;
	line-height: 44px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}
.download-wrapper .btn-groups .btn:hover {
	opacity: 0.8;
}
.download-wrapper .btn-groups .btn.cancel {
	margin-right: 12px;
	background: #EAF2FF;
	color: #0061ff;
}
.download-wrapper .tip {
	margin-top: 8px;
	font-size: 12px;
	line-height: 20px;
	color: #344563;
}
.download-wrapper .inner-groups {
	margin-top: 24px;
	height: 226px;
}
.download-wrapper .form-group {
	margin-bottom: 15px;
}
.download-wrapper .form-group:last-child {
	margin-bottom: 0;
}
.download-wrapper .form-group .form-label {
	width: 76px;
	font-size: 14px;
	line-height: 32px;
	color: #000;
}
.download-wrapper .form-group .form-label span {
	font-size: 12px;
}
.download-wrapper .form-group .form-input {
	position: relative;
	flex: 1;
	overflow: hidden;
}
.download-wrapper .form-group .form-input .input {
	display: block;
	width: 100%;
	height: 34px;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #DCDCDC;
	padding: 0 32px 0 14px;
	font-size: 14px;
	color: #000;
	outline: none;
	-webkit-transition: all ease 0.2s;
	transition: all ease 0.2s;
}
.download-wrapper .form-group .form-input .input:focus {
	border-color: #0061ff;
}
.download-wrapper .form-group .form-input .control {
	position: absolute;
	right: 0;
	top: 0;
	width: 34px;
	height: 34px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.download-wrapper .form-group .form-input .control .icon {
	width: 7px;
	height: 5px;
	cursor: pointer;
}
.download-wrapper .form-group .form-input .control .icon.up {
	margin-bottom: 4px;
}

/*range-groups*/
.inner-groups .range-group {
	margin-bottom: 20px;
}
.inner-groups .range-group:last-child {
	margin-bottom: 0;
}
.inner-groups .range-group .range-block {
	width: 100%;
	height: 60px;
	box-sizing: border-box;
	padding-top: 20px;
}
.inner-groups .range-group .range-name {
	text-align: center;
	font-size: 12px;
	line-height: 20px;
	color: #000;
}
/* inviteLink */
.invite-card {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 0 24px;
}
.invite-card .linkTitle {
	font-size: 20px;
	color: #344563;
	line-height: 28px;
	text-align: center;
	text-align: center;
}
.invite-card .link-group {
	margin-top: 20px;
}
.invite-card .link-group .link-input {
	display: block;
	width: 100%;
	height: 46px;
	box-sizing: border-box;
	padding: 0 12px;
	border: none;
	outline: none;
	background: #F2F7FF;
	text-align: center;
	font-size: 14px;
	color: #344563;
}
.invite-card .link-group .btn {
	margin: 12px auto 0;
	display: block;
	width: 120px;
	height: 46px;
	border-radius: 3px;
	border: none;
	background: #2478FF;
	font-size: 14px;
	color: #fff;
}
.invite-card .tip {
	margin-top: 10px;
	font-size: 12px;
	color: #6C727D;
	line-height: 22px;
	text-align: center;
}
/* <div class="linkTitle">邀请链接</div>
<div class="link-group">
	<input id="foo" v-model="inviteLink">
	<button class="btn btn-copy" data-clipboard-target="#foo">点击复制</button>
</div>
<div class="tip">复制您的专属链接，发送给您的好友。对方登录成功，您就可以获得2分钟的免费时长。</div> */