@charset "UTF-8";

@font-face {
	font-family: UDC105-Bold;
	src: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/font/UDC105-Bold.woff2) format("woff2"), url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/font/UDC105-Bold.woff) format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: UDC105-Regular;
	src: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/font/UDC105-Regular.woff2) format("woff2"), url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/font/UDC105-Regular.woff) format("woff");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: UDC105-Light;
	src: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/font/UDC105-Light.woff2) format("woff2"), url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/font/UDC105-Light.woff) format("woff");
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: JR-UDC2-Medium;
	src: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/font/JR-UDC2-Medium.otf) format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap
}

html {
	-webkit-tap-highlight-color: transparent
}

/* 确保没有其他样式覆盖 */
.gosc-popup {
  display: none;
  position: fixed;
  /* 其他必要样式 */
  z-index: 999; /* 确保弹出框在最上层 */
  transition: bottom 0.3s ease-out; /* 滑出动画：0.3秒缓出效果 */
}
.gosc-popup.show {
  display: block !important; /* 使用!important 确保样式生效 */
}

[class*=gosc-]:focus {
	outline: none
}

[class*=gosc-border-hairline]:after {
	position: absolute;
	box-sizing: border-box;
	content: " ";
	pointer-events: none;
	top: -50%;
	right: -50%;
	bottom: -50%;
	left: -50%;
	border: 0 solid #ededed;
	border-radius: 0;
	transform: scale(.5)
}

.gosc-border-hairline,
.gosc-border-hairline--top,
.gosc-border-hairline--left,
.gosc-border-hairline--right,
.gosc-border-hairline--bottom,
.gosc-border-hairline--surround {
	position: relative
}

.gosc-border-hairline--top:after {
	border-top-width: 1px
}

.gosc-border-hairline--left:after {
	border-left-width: 1px
}

.gosc-border-hairline--right:after {
	border-right-width: 1px
}

.gosc-border-hairline--bottom:after {
	border-bottom-width: 1px
}

.gosc-border-hairline--surround:after {
	border-width: 1px
}

.gosc-ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.gosc-ellipsis-two {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.gosc-ellipsis-three {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical
}

.gosc-safe-area-bottom {
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom)
}

.gosc-overflow-hidden {
	overflow: hidden !important
}

@keyframes golc-fade-in {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes golc-fade-out {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.gosc-popup__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7)
}

.gosc-popup__content {
	position: fixed;
	overflow-y: auto;
	box-sizing: border-box;
	transition: transform .3s;
	-webkit-overflow-scrolling: touch;
	max-height: 100%
}

.gosc-popup__content--center {
	top: 50%;
	left: 0;
	right: 0;
	width: fit-content;
	max-width: 100vw;
	margin: 0 auto;
	transform: translateY(-50%)
}

.gosc-popup__content--top {
	top: 0;
	left: 0;
	width: 100%
}

.gosc-popup__content--right {
	top: 50%;
	right: 0;
	transform: translate3d(0, -50%, 0)
}

.gosc-popup__content--bottom {
	bottom: 0;
	left: 0;
	width: 100%
}

.gosc-popup__content--left {
	top: 50%;
	left: 0;
	transform: translate3d(0, -50%, 0)
}

.gosc-popup-slide-top-enter-active,
.gosc-popup-slide-left-enter-active,
.gosc-popup-slide-right-enter-active,
.gosc-popup-slide-bottom-enter-active {
	transition-timing-function: ease-out
}

.gosc-popup-slide-top-leave-active,
.gosc-popup-slide-left-leave-active,
.gosc-popup-slide-right-leave-active,
.gosc-popup-slide-bottom-leave-active {
	transition-timing-function: ease-in
}

.gosc-popup-slide-top-enter,
.gosc-popup-slide-top-enter-from,
.gosc-popup-slide-top-leave-active {
	transform: translate3d(0, -100%, 0)
}

.gosc-popup-slide-right-enter,
.gosc-popup-slide-right-enter-from,
.gosc-popup-slide-right-leave-active {
	transform: translate3d(100%, -50%, 0)
}

.gosc-popup-slide-bottom-enter,
.gosc-popup-slide-bottom-enter-from,
.gosc-popup-slide-bottom-leave-active {
	transform: translate3d(0, 100%, 0)
}

.gosc-popup-slide-left-enter,
.gosc-popup-slide-left-enter-from,
.gosc-popup-slide-left-leave-active {
	transform: translate3d(-100%, -50%, 0)
}

.gosc-popup-fade-enter-active {
	animation: .3s golc-fade-in both ease-out
}

.gosc-popup-fade-leave-active {
	animation: .3s gold-fade-out both ease-in
}

.gosc-button {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	height: 11.2vw;
	margin: 0;
	padding: 0;
	font-size: 3.73333vw;
	line-height: 1.2;
	text-align: center;
	border-radius: 1.6vw;
	cursor: pointer;
	transition: opacity .2s;
	-webkit-appearance: none;
	-webkit-font-smoothing: auto;
	-webkit-tap-highlight-color: transparent;
	background: none
}

.gosc-button:focus {
	outline: none
}

.gosc-button:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: #000;
	border: inherit;
	border-color: #000;
	border-radius: inherit;
	transform: translate(-50%, -50%);
	opacity: 0;
	content: " "
}

.gosc-button:active:before {
	opacity: .1
}

.gosc-button--loading:before,
.gosc-button--disabled:before {
	display: none
}

.gosc-button--default {
	color: #333;
	background: none;
	border: 1px solid #ccc
}

.gosc-button--gold {
	color: #fff;
	background: #f78e47;
	border: none
}

.gosc-button--normal {
	padding: 0 5.33333vw
}

.gosc-button--large {
	width: 100%;
	height: 13.33333vw;
	font-size: 4.26667vw
}

.gosc-button--large.gosc-button__text {
	font-weight: 700
}

.gosc-button--block {
	display: block;
	width: 100%
}

.gosc-button--disabled {
	cursor: not-allowed;
	opacity: .3
}

.gosc-button--loading {
	cursor: default
}

.gosc-button--round {
	border-radius: 266.4vw
}

.gosc-button__content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%
}

.gosc-button__content:before {
	content: " "
}

.gosc-button__text {
	font-weight: 500
}

.gosc-dialog {
	top: 45%;
	width: 84vw;
	overflow: hidden;
	font-size: 4.8vw;
	background: #fff;
	border-radius: 2.13333vw;
	backface-visibility: hidden;
	transition: .3s;
	transition-property: transform, opacity
}

@media (max-width: 321px) {
	.gosc-dialog {
		width: 90%
	}
}

.gosc-dialog__header {
	color: #333;
	padding-top: 6.4vw;
	font-weight: 500;
	line-height: 8vw;
	text-align: center
}

.gosc-dialog__header--isolated {
	padding: 6.4vw
}

.gosc-dialog__content--isolated {
	display: flex;
	align-items: center;
	min-height: 27.73333vw
}

.gosc-dialog__message {
	color: #333;
	flex: 1;
	max-height: 60vh;
	padding: 6.4vw;
	overflow-y: auto;
	font-size: 3.73333vw;
	line-height: 5.86667vw;
	text-align: center;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch
}

.gosc-dialog__message--has-title {
	padding-top: 3.2vw;
	color: #666
}

.gosc-dialog__message--left {
	text-align: left
}

.gosc-dialog__message--right {
	text-align: right
}

.gosc-dialog__message--justify {
	text-align: justify
}

.gosc-dialog__footer {
	display: flex;
	overflow: hidden;
	-webkit-user-select: none;
	user-select: none
}

.gosc-dialog__confirm,
.gosc-dialog__cancel {
	flex: 1;
	height: 13.33333vw;
	margin: 0;
	border: 0;
	border-radius: 0
}

.gosc-dialog__confirm,
.gosc-dialog__confirm:active {
	color: #ef4034
}

.gosc-dialog-bounce-enter,
.gosc-dialog-bounce-enter-from {
	transform: translate3d(0, -50%, 0) scale(.7);
	opacity: 0
}

.gosc-dialog-bounce-leave-active {
	transform: translate3d(0, -50%, 0) scale(.9);
	opacity: 0
}

.gosc-toast {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all .2s;
	width: 32vw;
	max-width: 70%;
	min-height: 22.93333vw;
	padding: 3.73333vw;
	color: #fff;
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	white-space: pre-wrap;
	word-break: break-all;
	text-align: center;
	background: rgba(51, 51, 51, .9);
	border-radius: 2.13333vw;
	box-sizing: border-box
}

.gosc-toast--break-normal {
	word-break: normal;
	word-wrap: normal
}

.gosc-toast--break-word {
	word-break: normal;
	word-wrap: break-word
}

.gosc-toast--unclickable {
	overflow: hidden;
	cursor: not-allowed
}

.gosc-toast--unclickable * {
	pointer-events: none
}

.gosc-toast--text,
.gosc-toast--html {
	width: fit-content;
	min-width: 25.6vw;
	min-height: 0;
	padding: 2.66667vw;
	font-weight: 500
}

.gosc-toast--text .gosc-toast__text,
.gosc-toast--html .gosc-toast__text {
	margin-top: 0
}

.gosc-toast--top {
	top: 20%
}

.gosc-toast--bottom {
	top: auto;
	bottom: 20%
}

.gosc-toast__icon {
	width: 8vw;
	height: 8vw;
	background-size: 100% 100%
}

.gosc-toast__icon--success {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/toast-success.png)
}

.gosc-toast__icon--fail {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/toast-fail.png)
}

.gosc-toast__icon--warn {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/toast-warn.png)
}

.gosc-toast__icon--loading {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/toast-loading.png);
	animation: gosc-rotate 1s linear infinite
}

.gosc-toast__text {
	margin-top: 2.13333vw
}

.gosc-captcha {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-radius: 2.66667vw 2.66667vw 0 0
}

.gosc-captcha__wrap {
	position: relative;
	z-index: 1
}

.gosc-captcha__title {
	font-size: 5.33333vw;
	line-height: 7.46667vw;
	color: #000;
	font-weight: 500;
	text-align: center;
	padding-top: 5.33333vw
}

.gosc-captcha__box {
	position: relative;
	padding-top: .53333vw
}

.gosc-captcha__loading {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 3
}

.gosc-captcha__loading span {
	width: 18.66667vw;
	height: 18.66667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/captcha-loading.png) no-repeat;
	background-size: 100% 100%;
	animation: rotateAnimation 1s linear infinite
}

.gosc-captcha__sub-title {
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	color: #666;
	text-align: center
}

.gosc-captcha__content {
	margin-top: 5.33333vw
}

.gosc-captcha__content form {
	display: block;
	margin: 0;
	padding: 0
}

.gosc-captcha__content-code {
	position: relative;
	width: 100%;
	height: 16vw;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden
}

.gosc-captcha__content-cell {
	width: 10.13333vw;
	height: 1px;
	margin: 0 2.13333vw;
	background-color: #efefef
}

.gosc-captcha__content-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	padding: 0 0 0 calc(50% - 37.33333vw);
	font-size: 5.33333vw;
	color: #333;
	letter-spacing: 11.73333vw;
	font-family: UDC105-Bold;
	line-height: 16vw;
	text-align: left;
	background-color: transparent;
	resize: none;
	-webkit-user-select: auto;
	user-select: auto;
	box-sizing: border-box;
	caret-color: #eb9654
}

.gosc-captcha__content-input:focus {
	outline: none
}

.gosc-captcha__content-btn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 5.33333vw;
	font-size: 3.73333vw;
	color: #999;
	line-height: 5.33333vw;
	padding: 0 8vw 5.33333vw
}

.gosc-captcha__content-line {
	width: 1px;
	height: 3.73333vw;
	margin: 0 2.66667vw;
	background-color: #d8d8d8
}

.gosc-captcha__content-resend {
	color: #4d7bfe
}

.gosc-captcha__close {
	position: absolute;
	right: 0;
	top: 2.13333vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2
}

.gosc-captcha__dialog p {
	margin: 0;
	font-size: 3.2vw
}

@keyframes rotateAnimation {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.gosc-tip {
	display: inline-flex;
	align-items: center;
	height: 6.13333vw
}

.gosc-tip i {
	width: 3.2vw;
	height: 100%
}

.gosc-tip i:nth-of-type(1) {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/button_tip_left.png) no-repeat;
	background-size: 100% 100%
}

.gosc-tip i:nth-of-type(2) {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/button_tip_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-tip span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-bottom: .53333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/button_tip_bg.png) no-repeat;
	background-size: 100% 100%;
	box-sizing: border-box;
	margin: 0 -1px
}

.gosc-tip span em {
	font-size: 2.93333vw;
	color: #fff;
	line-height: 1.2;
	font-style: normal;
	font-weight: 500
}

.gosc-agreement {
	display: flex;
	align-items: flex-start
}

.gosc-agreement__checkbox {
	position: relative;
	width: 4.26667vw;
	height: 4.26667vw;
	flex-shrink: 0;
	margin-top: 1px;
	border: 1px solid #eb9654;
	box-sizing: border-box;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-agreement__checkbox svg {
	display: none;
	width: 2.66667vw;
	fill: #fff
}

.gosc-agreement__checkbox--checked {
	background-color: #eb9654
}

.gosc-agreement__checkbox--checked svg {
	display: block
}

.gosc-agreement__text {
	flex: 1;
	margin-left: 1.6vw;
	font-size: 3.2vw;
	color: #999;
	line-height: 4.8vw;
	text-align: left
}

.gosc-loading {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: 100%;
	vertical-align: middle;
	animation: gosc-rotate .8s linear infinite
}

.gosc-loading svg {
	display: block;
	width: 100%;
	height: 100%
}

@keyframes gosc-rotate {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.gosc-input {
	background: #fff;
	position: relative
}

.gosc-input__head {
	display: flex;
	align-items: center;
	position: relative
}

.gosc-input__head-title {
	line-height: 6.13333vw;
	font-size: 4.26667vw;
	font-family: PingFangSC-Semibold;
	font-weight: 600;
	color: #333;
	flex: 1
}

.gosc-input__head-subtitle {
	line-height: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding-right: 2.66667vw
}

.gosc-input__arrow {
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	vertical-align: top;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-input__input {
	position: relative;
	display: flex;
	align-items: center
}

.gosc-input__input-icon {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/icon_money.png) center center no-repeat;
	background-size: 100% 100%;
	width: 3.46667vw;
	height: 4.8vw;
	display: inline-block;
	margin-right: 1.06667vw
}

.gosc-input__input-keyboard {
	position: relative;
	max-width: 80%;
	height: 13.33333vw;
	flex: 1;
	align-items: center;
	line-height: 13.33333vw;
	font-size: 6.4vw;
	display: flex
}

.gosc-input__input-keyboard-pointer {
	overflow: hidden;
	font-family: JR-UDC2-Medium;
	font-size: 6.4vw
}

.gosc-input__input-keyboard-pointer:empty:before {
	content: attr(placeholder);
	font-family: JR-UDC2-Medium;
	color: #ddd;
	font-size: 100%;
	position: absolute;
	line-height: 1px;
	font-size: 5.33333vw
}

.gosc-input__input-keyboard-pointer:focus:before {
	content: none
}

.gosc-input__input .focus-pointer:after {
	content: "";
	border-right: 1px solid #000;
	opacity: 1;
	filter: alpha(opacity=100);
	animation: focus .8s forwards infinite;
	height: 8vw
}

.gosc-input__input .focus-pointer::-webkit-scrollbar {
	display: none
}

.gosc-input__input-close {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/input_close.png) center center no-repeat;
	background-size: 100% 100%;
	width: 4vw;
	height: 4vw;
	position: absolute;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	right: 0
}

.gosc-form-item {
	position: relative;
	padding: 4.53333vw 0;
	border-top: 1px solid rgba(0, 0, 0, .06)
}

.gosc-form-item:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.gosc-form-item__con {
	display: flex;
	align-items: center
}

.gosc-form-item__tips {
	margin-top: 1.06667vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-form-item__err-msg {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #ef4034;
	margin-top: 1.06667vw
}

.gosc-form-item__err-tips {
	align-items: center;
	display: flex;
	flex-direction: row;
	margin-top: 1.06667vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-form-item__err-tips span {
	color: #ef4034
}

.gosc-form-item__err-tips p {
	margin: 0
}

.gosc-form-item__label {
	line-height: 5.6vw;
	height: 5.6vw;
	font-size: 4vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #333;
	width: 25.33333vw;
	flex-shrink: 0;
	display: flex;
	align-items: center
}

.gosc-form-item__label img {
	width: 4vw;
	height: 4vw;
	margin-left: 1.6vw
}

.gosc-form-item__value {
	flex-grow: 1;
	text-align: right;
	line-height: 5.6vw;
	height: 5.6vw;
	font-size: 4vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000
}

.gosc-form-item__value input {
	width: 100%;
	border: 0;
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000;
	text-align: right
}

.gosc-form-item__value input::placeholder {
	font-size: 4vw;
	color: #ccc;
	font-weight: 400
}

.gosc-form-item__value-placeholder {
	color: #ccc
}

.gosc-form-item__value--info {
	color: #999
}

.gosc-form-item__value--link {
	color: #333
}

.gosc-form-item__value--focus:after {
	content: "";
	border-right: 1px solid #000;
	opacity: 1;
	filter: alpha(opacity=100);
	animation: focus .8s forwards infinite;
	height: 5.6vw
}

.gosc-form-item__multipleValue {
	height: auto;
	line-height: normal;
	flex-direction: column;
	align-items: flex-start;
	width: 30.13333vw
}

.gosc-form-item__moreValueLabel {
	line-height: 5.6vw
}

.gosc-form-item__moreValue {
	white-space: nowrap;
	height: 4.26667vw;
	line-height: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	margin-top: .53333vw;
	display: flex;
	align-items: flex-start
}

.gosc-form-item__moreValue>img {
	width: 3.2vw;
	height: 3.2vw;
	margin-left: 1.33333vw;
	margin-top: 1px
}

.gosc-form-item__icon {
	margin-left: 1.33333vw
}

.gosc-form-item__icon--modify {
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/icon_modify.png);
	background-size: 100% 100%
}

.gosc-form-item__icon--link {
	width: 1.33333vw;
	height: 2.4vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png);
	background-size: 100% 100%
}

.gosc-coupon__form-icon {
	display: inline-block
}

.gosc-coupon__form-icon--coupon {
	margin-left: 2.13333vw;
	vertical-align: middle;
	padding: 0 1.06667vw;
	height: 4.8vw;
	line-height: 4.8vw;
	background: rgba(239, 64, 52, .2);
	border-radius: .53333vw;
	font-size: 2.93333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #ef4034
}

.gosc-coupon__coupon {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0;
	overflow: hidden
}

.gosc-coupon__coupon-header {
	position: relative;
	font-size: 5.33333vw;
	text-align: center;
	color: #333;
	line-height: 7.46667vw;
	padding: 5.33333vw 11.73333vw
}

.gosc-coupon__coupon-header span {
	font-weight: 600
}

.gosc-coupon__coupon-list {
	padding: 4.53333vw 4.26667vw 5.86667vw;
	text-align: left;
	position: relative
}

.gosc-coupon__coupon-list-value {
	height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #eb9654
}

.gosc-coupon__coupon-list-date {
	height: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding-top: 1.06667vw
}

.gosc-coupon__coupon-list:before {
	content: "";
	position: absolute;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_unselect.png) center center no-repeat;
	background-size: 100% 100%;
	width: 5.33333vw;
	height: 5.33333vw;
	right: 3.2vw;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-coupon__coupon-disabled div[class*=value] {
	color: #999
}

.gosc-coupon__coupon-disabled:before {
	width: 4.53333vw;
	height: 4.53333vw;
	border-radius: 50%;
	background: #d8d8d8
}

.gosc-coupon__coupon-select {
	position: relative
}

.gosc-coupon__coupon-select:before {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-CountDown {
	display: inline-flex;
	align-items: center;
	height: 4.8vw
}

.gosc-card-open {
	position: relative;
	padding: 5.33333vw 0px 4.26667vw
}

.gosc-card-open__price-header {
	margin-top: -5.33333vw;
	height: 9.86667vw;
	padding-bottom: 2.66667vw;
	margin-bottom: -2.66667vw;
	background: #f4f3f8;
	border-radius: 2.66667vw 2.66667vw 0 0;
	position: relative;
	line-height: 9.86667vw;
	text-align: center
}

.gosc-card-open__price-header .color-red {
	color: #f53137
}

.gosc-card-open__price-header .color-green {
	color: #54ae76
}

.gosc-card-open__price-header-title {
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #333;
	padding-left: 3.2vw
}

.gosc-card-open__price-header-value {
	font-size: 3.46667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #000;
	padding-left: 2.13333vw
}

.gosc-card-open__header {
	border-radius: 2.66667vw 2.66667vw 0 0;
	background-color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 5.33333vw
}

.gosc-card-open__header--need-buy {
	padding-top: 5.33333vw
}

.gosc-card-open__logo {
	width: 30.4vw;
	height: 5.33333vw;
	margin-top: .53333vw
}

.gosc-card-open__logo img {
	display: block;
	width: 100%;
	height: 100%
}

.gosc-card-open__custom-title {
	font-size: 5.86667vw;
	font-family: PingFangSC-Semibold;
	font-weight: 600;
	color: #333;
	display: flex;
	align-items: center
}

.gosc-card-open__sub-title {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	display: flex;
	align-items: center;
	margin-top: .53333vw;
	line-height: 4.8vw
}

.gosc-card-open__title-icon {
	width: 6.93333vw;
	height: 6.93333vw;
	display: inline-block;
	background-size: 100% 100%;
	vertical-align: middle;
	margin-right: 1.06667vw
}

.gosc-card-open__title {
	font-size: 5.86667vw;
	font-weight: 700;
	line-height: 8.26667vw;
	text-align: center
}

.gosc-card-open__title em {
	font-style: normal;
	color: #f53137;
	font-weight: 700
}

.gosc-card-open__count-down {
	display: flex;
	align-items: center;
	margin-top: 1.06667vw
}

.gosc-card-open__count-down em {
	font-size: 3.2vw;
	color: #666;
	font-style: normal;
	line-height: 4vw;
	padding: .53333vw .8vw;
	background-color: #eee;
	border-radius: .53333vw
}

.gosc-card-open__count-down span {
	font-size: 3.2vw;
	color: #999;
	line-height: 4.26667vw;
	padding: 0 .53333vw
}

.gosc-card-open__content {
	width: 100vw;
	background-color: #fff;
	margin: 2.66667vw auto 0;
	border-radius: 2.13333vw
}

.gosc-card-open__gift {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 41.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/gold_card.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-open__gift-title {
	font-size: 3.2vw;
	color: #b66221;
	line-height: 4.8vw
}

.gosc-card-open__gift-weight {
	display: flex;
	align-items: flex-end;
	color: #591e05;
	margin-top: 1.6vw
}

.gosc-card-open__gift-weight em {
	font-style: normal;
	font-size: 6.4vw;
	font-weight: 700;
	line-height: 1
}

.gosc-card-open__gift-weight--android .gosc-card-open__gift-num {
	margin-bottom: -1.33333vw
}

.gosc-card-open__gift-num {
	font-size: 8.53333vw;
	font-family: UDC105-Bold;
	font-style: normal;
	line-height: 1
}

.gosc-card-open__gift-double {
	display: flex;
	align-items: center;
	margin: 3.2vw 0 0;
	padding: 1.33333vw 0 1.33333vw 3.73333vw;
	background-color: rgba(245, 49, 55, .1);
	border-radius: 266.4vw
}

.gosc-card-open__gift-double dt {
	font-size: 3.2vw;
	color: #591e05;
	line-height: 4.8vw
}

.gosc-card-open__gift-double dt span {
	display: inline-block;
	font-size: 4.26667vw;
	font-family: UDC105-Bold;
	color: #f53137;
	margin: 0 1px 1px;
	vertical-align: bottom
}

.gosc-card-open__gift-double dd {
	width: 18.66667vw;
	height: 6.93333vw;
	margin: 0 0 0 3.73333vw
}

.gosc-card-open__gift-double dd img {
	display: block;
	width: 100%;
	height: 100%
}

.gosc-card-open__gift-double--android dt span {
	margin-bottom: -1px
}

.gosc-card-open__gift-tip {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2.66667vw;
	color: #b66221;
	line-height: 4.8vw;
	padding: 1px 2.13333vw;
	background-color: #fde3ce;
	border-top-left-radius: 2.13333vw;
	border-bottom-right-radius: 2.13333vw
}

.gosc-card-open__gift-condition {
	position: relative;
	padding-top: 1.6vw;
	margin-top: 2.13333vw
}

.gosc-card-open__gift-condition-wrap {
	background-color: rgba(235, 150, 84, .2);
	padding: 1.33333vw 2.13333vw;
	border-radius: 266.4vw;
	font-size: 3.2vw;
	color: rgba(182, 98, 33, .7);
	line-height: 4.8vw
}

.gosc-card-open__gift-condition-wrap em {
	color: rgba(89, 30, 5, .7);
	font-style: normal;
	font-weight: 700
}

.gosc-card-open__gift-condition-wrap i {
	display: inline-block;
	width: 3.73333vw;
	height: 3.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_dark.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	margin-left: .53333vw;
	margin-top: .53333vw
}

.gosc-card-open__gift-condition-arrow {
	position: absolute;
	left: 50%;
	top: -1.6vw;
	transform: translate(-50%);
	width: 0;
	height: 0;
	font-size: 0;
	border-width: 1.6vw;
	border-color: transparent transparent rgba(235, 150, 84, .2) transparent;
	border-style: solid
}

.gosc-card-open__bank {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 36vw;
	padding: 3.73333vw 10.4vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/open_bank.png) no-repeat;
	background-size: 100% 100%;
	box-sizing: border-box
}

.gosc-card-open__bank-header {
	margin: 0
}

.gosc-card-open__bank-header dt {
	display: flex;
	align-items: center;
	font-size: 3.73333vw;
	font-weight: 500;
	color: rgba(182, 98, 33, .64);
	line-height: 5.33333vw
}

.gosc-card-open__bank-header dd {
	font-size: 2.66667vw;
	color: rgba(182, 98, 33, .64);
	line-height: 5.33333vw;
	margin: 1.6vw 0 0
}

.gosc-card-open__bank-logo {
	width: 6.93333vw;
	height: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_logo.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 1.33333vw
}

.gosc-card-open__bank-account {
	width: 12vw;
	height: 4.26667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_account.png) no-repeat;
	background-size: 100% 100%;
	margin-left: 1.06667vw
}

.gosc-card-open__bank-num {
	font-size: 7.46667vw;
	color: rgba(89, 30, 5, .56);
	font-family: UDC105-Regular;
	line-height: 9.06667vw
}

.gosc-card-open__bank-icon {
	position: absolute;
	width: 20.26667vw;
	height: 20.26667vw;
	top: 1.6vw;
	right: 1.6vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_icon.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-open__supervise {
	padding: 3.2vw 6.66667vw 0px
}

.gosc-card-open__supervise-tip {
	text-align: left;
	color: #999;
	font-size: 2.66667vw;
	line-height: 3.73333vw
}

.gosc-card-open__supervise-tip em {
	color: #cc8c4e;
	font-style: normal
}

.gosc-card-open__supervise-ms {
	display: inline-block;
	width: 3.2vw;
	height: 2.66667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_ms.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	margin: .53333vw .53333vw 0
}

.gosc-card-open__supervise-i {
	display: inline-block;
	width: 2.66667vw;
	height: 2.66667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	margin-left: .53333vw;
	margin-top: .53333vw
}

.gosc-card-open__supervise-input {
	margin-top: 3.2vw
}

.gosc-card-open__supervise-input label {
	display: flex;
	width: 100%;
	justify-content: space-between;
	font-size: 3.73333vw;
	line-height: 5.86667vw;
	color: #333
}

.gosc-card-open__supervise-input label input {
	width: 58.66667vw;
	font-size: 3.73333vw;
	font-weight: 400;
	line-height: 5.86667vw;
	color: #333;
	text-align: right;
	border: none;
	outline: none;
	margin: 0;
	padding: 0
}

.gosc-card-open__supervise-input label input::placeholder {
	font-size: inherit;
	color: #ccc;
	font-weight: 400
}

.gosc-card-open__supervise-input label input:focus {
	outline: none
}

.gosc-card-open__agreement {
	margin-top: 5.33333vw;
	padding: 0 4.26667vw
}

.gosc-card-open__agreement-change,
.gosc-card-open__agreement-bank {
	color: #cc8c4e;
	font-style: normal
}

.gosc-card-open__agreement-bank i {
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	vertical-align: top;
	margin: 1.06667vw .53333vw 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-open__agreement-phone {
	margin-left: 1.06667vw;
	color: #333;
	font-style: normal
}

.gosc-card-open__bottom {
	margin-top: 4.26667vw;
	padding: 0 4.26667vw
}

.gosc-card-open__bottom-btn {
	position: relative;
	width: 100%
}

.gosc-card-open__bottom-tip {
	position: absolute;
	right: 0;
	top: -2.66667vw
}

.gosc-card-open__bottom-cancel {
	width: 100%;
	padding: 4.26667vw 0;
	text-align: center;
	color: #666;
	font-size: 3.46667vw;
	line-height: 5.06667vw
}

.gosc-card-open__prize {
	width: 100vw;
	height: 29.33333vw;
	display: flex
}

.gosc-card-open__prize--redpocket {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/open_red.png);
	background-size: 100% 100%
}

.gosc-card-open__prize--redpocket .gosc-card-open__prize-left {
	margin-top: 6.13333vw;
	width: 51.46667vw;
	margin-left: 6.4vw;
	line-height: 10.13333vw;
	font-size: 7.2vw;
	font-family: PingFang TC;
	font-weight: bolder;
	color: #b66221;
	text-align: center
}

.gosc-card-open__prize--redpocket .gosc-card-open__prize-left-num {
	font-family: UDC105-Bold
}

.gosc-card-open__prize--redpocket .gosc-card-open__prize-right {
	margin-top: 6.13333vw;
	width: 35.46667vw;
	padding-left: 4vw;
	box-sizing: border-box
}

.gosc-card-open__prize--redpocket .gosc-card-open__prize-title {
	line-height: 4.8vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #b66221
}

.gosc-card-open__prize--redpocket .gosc-card-open__prize-tab {
	line-height: 4.8vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #b66221
}

.gosc-card-open__prize--coupon {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/open_coupon.png);
	background-size: 100% 100%
}

.gosc-card-open__prize--coupon .gosc-card-open__prize-left {
	box-sizing: border-box;
	margin-top: 6.13333vw;
	width: 30.66667vw;
	padding-right: 4vw;
	margin-left: 6.4vw;
	line-height: 10.13333vw;
	font-size: 7.2vw;
	font-family: PingFang TC;
	font-weight: bolder;
	color: #901414;
	text-align: right
}

.gosc-card-open__prize--coupon .gosc-card-open__prize-left-num {
	font-family: UDC105-Bold
}

.gosc-card-open__prize--coupon .gosc-card-open__prize-right {
	margin-top: 6.13333vw;
	width: 53.33333vw;
	padding-left: 4vw;
	box-sizing: border-box
}

.gosc-card-open__prize--coupon .gosc-card-open__prize-title {
	line-height: 4.8vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #901414
}

.gosc-card-open__prize--coupon .gosc-card-open__prize-tab {
	line-height: 4.8vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #901414
}

.gosc-card-open__form {
	margin-top: -10.13333vw
}

.gosc-card-open__form .gosc-form-item:first-child {
	border-top: none
}

.gosc-card-open__card-list {
	width: 100%;
	background: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-card-open__card-list-title {
	position: relative;
	height: 13.86667vw;
	font-size: 4.8vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-open__card-list-back {
	width: 11.73333vw;
	height: 11.73333vw;
	position: absolute;
	top: 1.06667vw;
	left: 1.06667vw
}

.gosc-card-open__card-list-close {
	width: 11.73333vw;
	height: 11.73333vw;
	position: absolute;
	top: 1.06667vw;
	right: 1.06667vw
}

.gosc-card-open__card-list-box {
	height: 112vw;
	overflow-y: scroll
}

.gosc-card-open__card-list-item {
	width: 95.73333vw;
	height: 16vw;
	margin-left: 4.26667vw;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eeeeee
}

.gosc-card-open__card-list-item-left {
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	margin-right: 2.66667vw
}

.gosc-card-open__card-list-item-right {
	font-size: 3.46667vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666
}

.gosc-card-open__card-list-tips {
	width: 100%;
	height: 11.73333vw;
	background: #fff
}

.gosc-card-open__double-title {
	font-size: 5.86667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #000;
	text-align: center
}

.gosc-card-open__double-title p {
	margin: 0;
	padding: 0
}

.gosc-card-open__double-num {
	color: #ff4144
}

.gosc-card-open__double-count-down {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	height: 4.8vw;
	line-height: 4.8vw
}

.gosc-card-open__double-count-down-num {
	display: inline-block;
	font-size: 2.93333vw;
	font-family: UDC105-Regular;
	font-weight: 500;
	color: #666;
	padding: 0 .66667vw;
	background: rgba(0, 0, 0, .05);
	border-radius: .53333vw
}

.gosc-card-open__double-content-box {
	width: 100%;
	height: 48.26667vw;
	background-image: url(https://img13.360buyimg.com/imagetools/jfs/t1/224348/35/16858/73506/666bf17bF4d997d79/2d6e1f1041c8ebfd.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative
}

.gosc-card-open__double-content-gold-img {
	width: 66.66667vw;
	height: 14.4vw;
	position: absolute;
	top: 11.46667vw;
	left: 50%;
	transform: translate(-50%)
}

.gosc-card-open__double-content-pop-small {
	width: 14.13333vw;
	height: 6.4vw;
	position: absolute;
	display: flex;
	justify-content: center;
	background-image: url(https://img12.360buyimg.com/imagetools/jfs/t1/234864/24/21328/3834/666fe99bF4ee4870a/22f24dbcbb8e60ca.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-top: 1.06667vw;
	left: 20.26667vw;
	top: 8vw
}

.gosc-card-open__double-content-pop-big {
	width: 28.26667vw;
	height: 6.4vw;
	position: absolute;
	display: flex;
	justify-content: center;
	background-image: url(https://img11.360buyimg.com/imagetools/jfs/t1/243279/10/9224/4162/666fe99bF39d1831d/a965996e31056e74.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-top: 1.06667vw;
	top: 3.73333vw;
	right: 16.8vw
}

.gosc-card-open__double-content-pop-num {
	display: inline-block;
	font-size: 3.2vw;
	font-family: UDC105-Bold;
	background: linear-gradient(176.52deg, #ffd38c, #fffce3);
	-webkit-background-clip: text;
	color: transparent
}

.gosc-card-open__double-content-pop-unit {
	display: inline-block;
	font-size: 3.2vw;
	font-family: PingFang SC;
	background: linear-gradient(176.52deg, #ffd38c, #fffce3);
	-webkit-background-clip: text;
	color: transparent
}

.gosc-card-open__double-content-pop-unit-small {
	display: inline-block;
	font-size: 2.66667vw;
	font-family: PingFang SC;
	background: linear-gradient(176.52deg, #ffd38c, #fffce3);
	-webkit-background-clip: text;
	color: transparent;
	padding-top: 1px
}

.gosc-card-open__double-content-title {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: rgba(113, 45, 16, .8);
	margin-top: 5.33333vw;
	display: flex;
	align-items: center;
	line-height: 4.8vw
}

.gosc-card-open__double-content-title img {
	width: 3.2vw;
	height: 3.2vw;
	margin-left: 1.06667vw
}

.gosc-card-open__double-content-num {
	font-size: 7.46667vw;
	font-family: UDC105-Bold;
	font-style: normal;
	color: #712d10;
	margin-top: 2.66667vw
}

.gosc-card-open__double-content-unit {
	font-size: 6.4vw;
	font-family: PingFang SC
}

.gosc-card-open__double-content-do {
	width: 50.66667vw;
	height: 11.73333vw;
	background-image: url(https://img10.360buyimg.com/imagetools/jfs/t1/245549/12/11204/7649/666bf17bF213b279c/2c39c1bdaa066816.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #712d10;
	padding: 4.26667vw 0 0 3.73333vw;
	box-sizing: border-box;
	margin-top: 2.13333vw;
	line-height: 4.26667vw
}

.gosc-card-open__double-content-do-num {
	font-family: UDC105-Bold;
	color: #ff4144;
	font-size: 3.2vw
}

.gosc-card-open__double-content-finish {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #712d10;
	width: 54.13333vw;
	height: 7.73333vw;
	background-image: url(https://img14.360buyimg.com/imagetools/jfs/t1/195312/32/47288/4478/666fd56aF971e8d49/d11d8c277199df62.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 12vw
}

.gosc-card-open__double-button-box {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.gosc-card-open__double-button-box-left-btn {
	width: 44.26667vw;
	height: 11.73333vw;
	background-image: url(https://img11.360buyimg.com/imagetools/jfs/t1/151652/30/39480/3231/666ffae4F9d6f4dfa/897b4b6e9e1ec445.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-open__double-button-box-right-btn {
	width: 44.26667vw;
	height: 11.73333vw;
	background-image: url(https://img14.360buyimg.com/imagetools/jfs/t1/243453/27/11533/2578/666ffae5Fc929c177/d89dc7f8121d86ee.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-open__head-image {
	width: 100%;
	height: 33.33333vw;
	max-height: 33.33333vw
}

.gosc-card-loading {
	position: relative;
	width: 100%;
	min-height: 122.13333vw;
	box-sizing: border-box;
	padding: 8vw 6.66667vw
}

.gosc-card-loading__header {
	margin: 0
}

.gosc-card-loading__header dt {
	color: #333;
	font-size: 5.86667vw;
	line-height: 7.46667vw;
	font-weight: 700
}

.gosc-card-loading__header dd {
	margin: 1.33333vw 0 0;
	font-size: 3.73333vw;
	color: #666;
	line-height: 5.33333vw
}

.gosc-card-loading__step {
	position: relative;
	width: 100%;
	margin-top: 7.46667vw
}

.gosc-card-loading__step-item {
	position: relative;
	padding-left: 7.46667vw;
	padding-bottom: 4.26667vw
}

.gosc-card-loading__step-item dl {
	margin: 0
}

.gosc-card-loading__step-item dt {
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	color: #aaa;
	font-weight: 500
}

.gosc-card-loading__step-item dd {
	margin: .8vw 0 0;
	font-size: 3.2vw;
	color: #aaa;
	line-height: 4.53333vw
}

.gosc-card-loading__step-item:last-child .gosc-card-loading__step-line {
	display: none
}

.gosc-card-loading__step-item--right dt,
.gosc-card-loading__step-item--loading dt {
	color: #333
}

.gosc-card-loading__step-item--right .gosc-card-loading__step-icon,
.gosc-card-loading__step-item--loading .gosc-card-loading__step-icon {
	font-size: 0;
	border-color: #eb9654
}

.gosc-card-loading__step-item--right .gosc-card-loading__step-line,
.gosc-card-loading__step-item--loading .gosc-card-loading__step-line {
	background-color: #eb9654
}

.gosc-card-loading__step-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 5.33333vw;
	height: 5.33333vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 50%;
	box-sizing: border-box
}

.gosc-card-loading__step-right {
	width: 3.2vw;
	height: 3.2vw
}

.gosc-card-loading__step-right svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #eb9654
}

.gosc-card-loading__step-num {
	font-size: 3.46667vw;
	color: #ccc;
	line-height: 4.8vw;
	font-style: normal
}

.gosc-card-loading__step-line {
	position: absolute;
	top: 5.33333vw;
	left: 2.53333vw;
	width: 1px;
	height: calc(100% - 5.33333vw);
	background-color: #ccc
}

:export {
	prefix: gosc
}

.gosc-card-result {
	position: relative;
	padding: 8vw 5.33333vw;
	width: 100%;
	box-sizing: border-box
}

.gosc-card-result__fail-result-fund {
	box-sizing: border-box
}

.gosc-card-result__fail-result-fund-title {
	display: flex;
	align-items: center;
	padding-left: 4.26667vw;
	margin-bottom: 1.6vw;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	line-height: 5.33333vw
}

.gosc-card-result__fail-result-fund-title-sub {
	display: flex;
	align-items: center;
	margin-left: 2.13333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666;
	line-height: 4.53333vw
}

.gosc-card-result__fail-result-fund-title-sub>img {
	margin-left: 1.2vw;
	width: 1.46667vw;
	height: 2.4vw
}

.gosc-card-result__header {
	display: flex;
	justify-content: flex-start
}

.gosc-card-result__header-icon {
	flex-shrink: 0;
	width: 7.46667vw;
	height: 7.46667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/result-right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-result__header-icon--error {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/result-error.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-result__header dl {
	margin: 0 0 0 1.6vw
}

.gosc-card-result__header dl dt {
	font-size: 5.86667vw;
	color: #333;
	line-height: 7.46667vw;
	font-weight: 700
}

.gosc-card-result__header dl dd {
	margin: 1.33333vw 0 0;
	font-size: 3.73333vw;
	color: #666;
	line-height: 5.33333vw
}

.gosc-card-result__detail {
	margin-top: 8vw
}

.gosc-card-result__detail dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2.66667vw 0 0;
	width: 100%
}

.gosc-card-result__detail dl:first-child {
	margin: 0
}

.gosc-card-result__detail dl dt {
	width: 40%;
	font-size: 3.73333vw;
	color: #333;
	line-height: 5.33333vw
}

.gosc-card-result__detail dl dd {
	width: 60%;
	font-size: 3.73333vw;
	text-align: right;
	color: #999;
	line-height: 5.33333vw
}

.gosc-card-result__switch {
	margin-top: 8vw;
	width: 100%
}

.gosc-card-result__switch dl {
	display: flex;
	align-items: center;
	padding: 3.73333vw 0;
	margin: 0;
	width: 100%
}

.gosc-card-result__switch dl dt {
	flex: 1;
	padding-left: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold-tip.png) left center no-repeat;
	background-size: 3.73333vw 3.73333vw
}

.gosc-card-result__switch dl dt h4 {
	margin: 0;
	font-size: 4.26667vw;
	color: #333;
	line-height: 6.13333vw
}

.gosc-card-result__switch dl dt p {
	margin: 0;
	font-size: 2.93333vw;
	color: #999;
	line-height: 4vw
}

.gosc-card-result__switch dl dd {
	flex-shrink: 0;
	margin: 0 0 0 1.33333vw
}

.gosc-card-result__switch-btn {
	position: relative;
	width: 13.06667vw;
	height: 7.46667vw;
	background-color: rgba(120, 120, 128, .16);
	border-radius: 3.73333vw;
	cursor: pointer;
	transition: background-color .3s
}

.gosc-card-result__switch-btn i {
	position: absolute;
	top: .53333vw;
	left: .53333vw;
	width: 6.4vw;
	height: 6.4vw;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 .8vw 1px rgba(0, 0, 0, .05);
	transition: transform .3s cubic-bezier(.3, 1.05, .4, 1.05)
}

.gosc-card-result__switch-btn--on {
	background-color: #eb9654
}

.gosc-card-result__switch-btn--on i {
	transform: translate(5.6vw)
}

.gosc-card-result__again {
	margin-top: 8vw;
	width: 100%
}

.gosc-card-result__again dl {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 3.73333vw 0;
	margin: 0;
	width: 100%
}

.gosc-card-result__again dl dt {
	max-width: 40%;
	font-size: 3.73333vw;
	color: #666;
	line-height: 6.4vw
}

.gosc-card-result__again dl dd {
	margin: 0;
	max-width: 60%
}

.gosc-card-result__again-box {
	display: flex;
	justify-content: flex-end;
	align-items: center
}

.gosc-card-result__again-text {
	font-size: 3.73333vw;
	color: #666;
	line-height: 6.4vw
}

.gosc-card-result__again-arrow {
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-result__again-expain {
	margin-top: .8vw;
	font-size: 3.2vw;
	text-align: right;
	color: #999;
	line-height: 4.8vw
}

.gosc-card-result__again-phone {
	font-size: 3.73333vw;
	color: #999;
	line-height: 6.4vw
}

.gosc-card-result__again-btn {
	margin-left: 2.13333vw;
	font-size: 3.73333vw;
	color: #b66221;
	line-height: 6.4vw
}

.gosc-card-result__again-input {
	display: block;
	width: 32vw;
	font-size: 3.73333vw;
	text-align: right;
	color: #666;
	background: none;
	border: none;
	outline: none;
	line-height: 6.4vw
}

.gosc-card-result__again-input::placeholder {
	font-size: inherit;
	color: #999;
	font-weight: 400
}

.gosc-card-result__card {
	margin-top: 8vw
}

.gosc-card-result__card img {
	display: block;
	margin: 0 auto;
	width: 53.33333vw;
	height: 33.33333vw
}

.gosc-card-result__bottom {
	margin-top: 8vw
}

.gosc-card-result__bottom-btn {
	margin-top: 5.33333vw
}

.gosc-card-result__bottom-btn--flex {
	display: flex;
	justify-content: space-between
}

.gosc-card-result__bottom-btn--flex button {
	width: 41.33333vw
}

.gosc-card-result__bottom-btn-close {
	padding-top: 5.33333vw;
	font-size: 3.73333vw;
	line-height: 1.2;
	text-align: center
}

.gosc-card-result__bottom-cancel {
	padding: 4.26667vw 0;
	width: 100%;
	font-size: 3.46667vw;
	text-align: center;
	color: #666;
	line-height: 5.06667vw
}

.gosc-card-result__ad {
	margin-top: 8vw;
	width: 100%
}

.gosc-card-result__ad img {
	display: block;
	width: 100%
}

.gosc-card-result__header-prize {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #f78e47
}

.gosc-card-result__header-prize-arrow {
	display: inline-block;
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow.png);
	background-size: 100% 100%;
	vertical-align: middle
}

.gosc-card-result__header-prize-no-double {
	padding-bottom: 2.93333vw;
	margin-top: 3.73333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #666;
	font-weight: 400;
	line-height: 4.4vw;
	border-bottom: 1px solid #E5E5E5
}

.gosc-card-result__header-prize-num {
	color: #ff4144
}

.gosc-card-result__success-result-auto {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10.93333vw 0 52vw
}

.gosc-card-result__success-result-auto>img {
	width: 12.26667vw;
	height: 12.26667vw
}

.gosc-card-result__success-result-auto-text {
	margin-top: 5.6vw;
	height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFang SC;
	color: #333;
	text-shadow: 0 1.06667vw 3.2vw rgba(0, 17, 91, .08);
	line-height: 7.46667vw;
	font-weight: 600
}

.gosc-card-result__success-result-auto-tip {
	margin-top: 1.6vw;
	height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	color: #666;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-card-result--fund {
	padding: 3.73333vw 0 6.66667vw;
	background-image: url(https://img30.360buyimg.com/img/jfs/t1/254222/3/10674/47951/677e263cF5d6eb457/0441bf47b13b5aa9.png);
	background-repeat: no-repeat;
	background-size: 100% 100%
}

.gosc-open-account {
	position: relative;
	z-index: 9999
}

.gosc-open-account__wrap {
	position: relative;
	width: 100%
}

.gosc-open-account__content {
	position: relative;
	width: 100%;
	min-height: 53.33333vw;
	background: #fff;
	background-size: 100% auto;
	border-radius: 2.66667vw 2.66667vw 0 0;
	z-index: 1
}

.gosc-open-account__close {
	position: absolute;
	right: 0;
	top: 0;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2
}

.gosc-open-account__change {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0;
	overflow: hidden
}

.gosc-open-account__change-header {
	position: relative;
	font-size: 5.33333vw;
	text-align: center;
	color: #333;
	line-height: 7.46667vw;
	padding: 5.33333vw 11.73333vw
}

.gosc-open-account__change-header span {
	font-weight: 600
}

.gosc-open-account__change-close {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%
}

.gosc-open-account__change-list {
	margin: 0;
	list-style: none;
	padding: 0 4.26667vw 4.26667vw
}

.gosc-open-account__change-list li {
	width: 100%;
	height: 18.66667vw;
	display: flex;
	align-items: center;
	list-style: none
}

.gosc-open-account__change-list li:after {
	border-bottom-width: 1px
}

.gosc-open-account__change-icon {
	flex-shrink: 0;
	width: 8vw;
	height: 8vw;
	margin-right: 3.2vw
}

.gosc-open-account__change-icon img {
	display: block;
	width: 100%;
	height: 100%
}

.gosc-open-account__change-text {
	margin: 0;
	flex: 1;
	overflow: hidden
}

.gosc-open-account__change-text dt {
	font-size: 4.26667vw;
	line-height: 6.13333vw;
	color: #333;
	font-weight: 500
}

.gosc-open-account__change-text dd {
	font-size: 3.2vw;
	color: #ccc;
	line-height: 4.26667vw;
	margin: .53333vw 0 0
}

.gosc-open-account__change-text dt,
.gosc-open-account__change-text dd {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.gosc-open-account__change-checked {
	flex-shrink: 0;
	width: 1.6vw;
	height: 3.2vw;
	margin: 0 1.6vw .53333vw 2.66667vw;
	transform: rotate(45deg);
	border-right: .53333vw solid #eb9654;
	border-bottom: .53333vw solid #eb9654
}

.gosc-open-account__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-open-v2 {
	position: relative;
	padding: 6.4vw 0px 4.26667vw
}

.gosc-card-open-v2__price-header {
	margin-top: -5.33333vw;
	height: 9.86667vw;
	padding-bottom: 2.66667vw;
	margin-bottom: -2.66667vw;
	background: #f4f3f8;
	border-radius: 2.66667vw 2.66667vw 0 0;
	position: relative;
	line-height: 9.86667vw;
	text-align: center
}

.gosc-card-open-v2__price-header .color-red {
	color: #f53137
}

.gosc-card-open-v2__price-header .color-green {
	color: #54ae76
}

.gosc-card-open-v2__price-header-title {
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #333;
	padding-left: 3.2vw
}

.gosc-card-open-v2__price-header-value {
	font-size: 3.46667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #000;
	padding-left: 2.13333vw
}

.gosc-card-open-v2__header {
	border-radius: 2.66667vw 2.66667vw 0 0;
	background-color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 5.33333vw
}

.gosc-card-open-v2__header--need-buy {
	padding-top: 5.33333vw
}

.gosc-card-open-v2__double-title {
	font-size: 5.86667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #000;
	text-align: center
}

.gosc-card-open-v2__double-title p {
	margin: 0;
	padding: 0
}

.gosc-card-open-v2__double-num {
	color: #ff4144
}

.gosc-card-open-v2__double-count-down {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	height: 4.8vw;
	line-height: 4.8vw
}

.gosc-card-open-v2__double-count-down-num {
	display: inline-block;
	font-size: 2.93333vw;
	font-family: UDC105-Regular;
	font-weight: 500;
	color: #666;
	padding: 0 .66667vw;
	background: rgba(0, 0, 0, .05);
	border-radius: .53333vw
}

.gosc-card-open-v2__logo {
	width: 30.4vw;
	height: 5.33333vw;
	margin-top: .53333vw
}

.gosc-card-open-v2__logo--CZB {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/open_header_logo_CZB.png);
	background-size: 100% 100%
}

.gosc-card-open-v2__logo img {
	display: block;
	width: 100%;
	height: 100%
}

.gosc-card-open-v2__custom-title {
	font-size: 5.86667vw;
	font-family: PingFangSC-Semibold;
	font-weight: 600;
	color: #333;
	display: flex;
	align-items: center
}

.gosc-card-open-v2__sub-title {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	display: flex;
	align-items: center;
	margin-top: .53333vw;
	line-height: 4.8vw
}

.gosc-card-open-v2__title-icon {
	width: 6.93333vw;
	height: 6.93333vw;
	display: inline-block;
	background-size: 100% 100%;
	vertical-align: middle;
	margin-right: 1.06667vw
}

.gosc-card-open-v2__title {
	font-size: 5.86667vw;
	font-weight: 700;
	line-height: 8.26667vw;
	text-align: center
}

.gosc-card-open-v2__title em {
	font-style: normal;
	color: #f53137;
	font-weight: 700
}

.gosc-card-open-v2__count-down {
	display: flex;
	align-items: center;
	margin-top: 1.06667vw
}

.gosc-card-open-v2__count-down em {
	font-size: 3.2vw;
	color: #666;
	font-style: normal;
	line-height: 4vw;
	padding: .53333vw .8vw;
	background-color: #eee;
	border-radius: .53333vw
}

.gosc-card-open-v2__count-down span {
	font-size: 3.2vw;
	color: #999;
	line-height: 4.26667vw;
	padding: 0 .53333vw
}

.gosc-card-open-v2__content {
	width: 100vw;
	background-color: #fff;
	margin: 2.66667vw auto 0;
	border-radius: 2.13333vw
}

.gosc-card-open-v2__double-content-box {
	width: 100%;
	height: 48.26667vw;
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/zs_double_bg.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative
}

.gosc-card-open-v2__double-content-gold-img {
	width: 66.66667vw;
	height: 14.4vw;
	position: absolute;
	top: 11.46667vw;
	left: 50%;
	transform: translate(-50%)
}

.gosc-card-open-v2__double-content-pop-small {
	width: 14.13333vw;
	height: 6.4vw;
	position: absolute;
	display: flex;
	justify-content: center;
	background-image: url(https://img12.360buyimg.com/imagetools/jfs/t1/234864/24/21328/3834/666fe99bF4ee4870a/22f24dbcbb8e60ca.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-top: .53333vw;
	left: 20.26667vw;
	top: 8vw;
	box-sizing: border-box;
	line-height: 4.26667vw
}

.gosc-card-open-v2__double-content-pop-big {
	width: 28.26667vw;
	height: 6.4vw;
	position: absolute;
	display: flex;
	justify-content: center;
	background-image: url(https://img11.360buyimg.com/imagetools/jfs/t1/243279/10/9224/4162/666fe99bF39d1831d/a965996e31056e74.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-top: .53333vw;
	top: 3.73333vw;
	right: 16.8vw;
	box-sizing: border-box;
	line-height: 4.26667vw
}

.gosc-card-open-v2__double-content-pop-num {
	display: inline-block;
	font-size: 3.2vw;
	font-family: UDC105-Bold;
	background: linear-gradient(176.52deg, #ffd38c, #fffce3);
	-webkit-background-clip: text;
	color: transparent
}

.gosc-card-open-v2__double-content-pop-unit {
	display: inline-block;
	font-size: 3.2vw;
	font-family: PingFang SC;
	background: linear-gradient(176.52deg, #ffd38c, #fffce3);
	-webkit-background-clip: text;
	color: transparent
}

.gosc-card-open-v2__double-content-pop-unit-small {
	display: inline-block;
	font-size: 2.66667vw;
	font-family: PingFang SC;
	background: linear-gradient(176.52deg, #ffd38c, #fffce3);
	-webkit-background-clip: text;
	color: transparent;
	padding-top: 1px
}

.gosc-card-open-v2__double-content-title {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: rgba(113, 45, 16, .8);
	margin-top: 5.33333vw;
	display: flex;
	align-items: center;
	line-height: 4.8vw
}

.gosc-card-open-v2__double-content-title img {
	width: 3.2vw;
	height: 3.2vw;
	margin-left: 1.06667vw;
	margin-top: 1px
}

.gosc-card-open-v2__double-content-num {
	font-size: 7.46667vw;
	font-family: UDC105-Bold;
	font-style: normal;
	color: #712d10;
	margin-top: 2.66667vw
}

.gosc-card-open-v2__double-content-unit {
	font-size: 6.4vw;
	font-family: PingFang SC
}

.gosc-card-open-v2__double-content-do {
	width: 50.66667vw;
	height: 11.73333vw;
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/zs_double_do.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #712d10;
	padding: 4.26667vw 0 0 3.73333vw;
	box-sizing: border-box;
	margin-top: 2.13333vw;
	line-height: 4.26667vw
}

.gosc-card-open-v2__double-content-do-num {
	font-family: UDC105-Bold;
	color: #ff4144;
	font-size: 3.2vw
}

.gosc-card-open-v2__double-content-finish {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #712d10;
	width: 54.13333vw;
	height: 7.73333vw;
	background-image: url(https://img14.360buyimg.com/imagetools/jfs/t1/195312/32/47288/4478/666fd56aF971e8d49/d11d8c277199df62.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 12vw
}

.gosc-card-open-v2__double-content-finish img {
	width: 3.2vw;
	height: 3.2vw;
	margin-left: 1.06667vw
}

.gosc-card-open-v2__gift {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 41.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/gold_card.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-open-v2__gift-title {
	font-size: 3.2vw;
	color: #b66221;
	line-height: 4.8vw
}

.gosc-card-open-v2__gift-weight {
	display: flex;
	align-items: flex-end;
	color: #591e05;
	margin-top: 1.6vw
}

.gosc-card-open-v2__gift-weight em {
	font-style: normal;
	font-size: 6.4vw;
	font-weight: 700;
	line-height: 1
}

.gosc-card-open-v2__gift-weight--android .gosc-card-open__gift-num {
	margin-bottom: -1.33333vw
}

.gosc-card-open-v2__gift-num {
	font-size: 8.53333vw;
	font-family: UDC105-Bold;
	font-style: normal;
	line-height: 1
}

.gosc-card-open-v2__gift-double {
	display: flex;
	align-items: center;
	margin: 3.2vw 0 0;
	padding: 1.33333vw 0 1.33333vw 3.73333vw;
	background-color: rgba(245, 49, 55, .1);
	border-radius: 266.4vw
}

.gosc-card-open-v2__gift-double dt {
	font-size: 3.2vw;
	color: #591e05;
	line-height: 4.8vw
}

.gosc-card-open-v2__gift-double dt span {
	display: inline-block;
	font-size: 4.26667vw;
	font-family: UDC105-Bold;
	color: #f53137;
	margin: 0 1px 1px;
	vertical-align: bottom
}

.gosc-card-open-v2__gift-double dd {
	width: 18.66667vw;
	height: 6.93333vw;
	margin: 0 0 0 3.73333vw
}

.gosc-card-open-v2__gift-double dd img {
	display: block;
	width: 100%;
	height: 100%
}

.gosc-card-open-v2__gift-double--android dt span {
	margin-bottom: -1px
}

.gosc-card-open-v2__gift-tip {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2.66667vw;
	color: #b66221;
	line-height: 4.8vw;
	padding: 1px 2.13333vw;
	background-color: #fde3ce;
	border-top-left-radius: 2.13333vw;
	border-bottom-right-radius: 2.13333vw
}

.gosc-card-open-v2__gift-condition {
	position: relative;
	padding-top: 1.6vw;
	margin-top: 2.13333vw
}

.gosc-card-open-v2__gift-condition-wrap {
	background-color: rgba(235, 150, 84, .2);
	padding: 1.33333vw 2.13333vw;
	border-radius: 266.4vw;
	font-size: 3.2vw;
	color: rgba(182, 98, 33, .7);
	line-height: 4.8vw
}

.gosc-card-open-v2__gift-condition-wrap em {
	color: rgba(89, 30, 5, .7);
	font-style: normal;
	font-weight: 700
}

.gosc-card-open-v2__gift-condition-wrap i {
	display: inline-block;
	width: 3.73333vw;
	height: 3.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_dark.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	margin-left: .53333vw;
	margin-top: .53333vw
}

.gosc-card-open-v2__gift-condition-arrow {
	position: absolute;
	left: 50%;
	top: -1.6vw;
	transform: translate(-50%);
	width: 0;
	height: 0;
	font-size: 0;
	border-width: 1.6vw;
	border-color: transparent transparent rgba(235, 150, 84, .2) transparent;
	border-style: solid
}

.gosc-card-open-v2__bank {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 36vw;
	padding: 3.73333vw 10.4vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/open_bank.png) no-repeat;
	background-size: 100% 100%;
	box-sizing: border-box
}

.gosc-card-open-v2__bank-header {
	margin: 0
}

.gosc-card-open-v2__bank-header dt {
	display: flex;
	align-items: center;
	font-size: 3.73333vw;
	font-weight: 500;
	color: rgba(182, 98, 33, .64);
	line-height: 5.33333vw
}

.gosc-card-open-v2__bank-header dd {
	font-size: 2.66667vw;
	color: rgba(182, 98, 33, .64);
	line-height: 5.33333vw;
	margin: 1.6vw 0 0
}

.gosc-card-open-v2__bank-logo {
	width: 6.93333vw;
	height: 5.33333vw;
	margin-right: 1.33333vw
}

.gosc-card-open-v2__bank-logo--CZB {
	width: 6.13333vw;
	height: 6.13333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_logo_CZB.png);
	background-size: 100% 100%
}

.gosc-card-open-v2__bank-account {
	width: 12vw;
	height: 4.26667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_account.png) no-repeat;
	background-size: 100% 100%;
	margin-left: 1.06667vw
}

.gosc-card-open-v2__bank-num {
	font-size: 7.46667vw;
	color: rgba(89, 30, 5, .56);
	font-family: UDC105-Regular;
	line-height: 9.06667vw
}

.gosc-card-open-v2__bank-icon {
	position: absolute;
	width: 20.26667vw;
	height: 20.26667vw;
	top: 1.6vw;
	right: 1.6vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_icon.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-open-v2__supervise {
	padding: 3.2vw 6.66667vw 0px
}

.gosc-card-open-v2__supervise-tip {
	text-align: left;
	color: #999;
	font-size: 2.66667vw;
	line-height: 3.73333vw
}

.gosc-card-open-v2__supervise-tip em {
	color: #cc8c4e;
	font-style: normal
}

.gosc-card-open-v2__supervise-ms {
	display: inline-block;
	width: 3.2vw;
	height: 2.66667vw;
	vertical-align: top;
	margin: .53333vw .53333vw 0
}

.gosc-card-open-v2__supervise-i {
	display: inline-block;
	width: 2.66667vw;
	height: 2.66667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	margin-left: .53333vw;
	margin-top: .53333vw
}

.gosc-card-open-v2__supervise-input {
	margin-top: 3.2vw
}

.gosc-card-open-v2__supervise-input label {
	display: flex;
	width: 100%;
	justify-content: space-between;
	font-size: 3.73333vw;
	line-height: 5.86667vw;
	color: #333
}

.gosc-card-open-v2__supervise-input label input {
	width: 58.66667vw;
	font-size: 3.73333vw;
	font-weight: 400;
	line-height: 5.86667vw;
	color: #333;
	text-align: right;
	border: none;
	outline: none;
	margin: 0;
	padding: 0
}

.gosc-card-open-v2__supervise-input label input::placeholder {
	font-size: inherit;
	color: #ccc;
	font-weight: 400
}

.gosc-card-open-v2__supervise-input label input:focus {
	outline: none
}

.gosc-card-open-v2__agreement {
	margin-top: 5.33333vw;
	padding: 0 4.26667vw
}

.gosc-card-open-v2__agreement-change,
.gosc-card-open-v2__agreement-bank {
	color: #cc8c4e;
	font-style: normal
}

.gosc-card-open-v2__agreement-bank i {
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	vertical-align: top;
	margin: 1.06667vw .53333vw 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-open-v2__agreement-phone {
	margin-left: 1.06667vw;
	color: #333;
	font-style: normal
}

.gosc-card-open-v2__bottom {
	margin-top: 4.26667vw;
	padding: 0 4.26667vw
}

.gosc-card-open-v2__bottom-btn {
	position: relative;
	width: 100%
}

.gosc-card-open-v2__bottom-tip {
	position: absolute;
	right: 0;
	top: -2.66667vw
}

.gosc-card-open-v2__bottom-cancel {
	width: 100%;
	padding: 4.26667vw 0;
	text-align: center;
	color: #666;
	font-size: 3.46667vw;
	line-height: 5.06667vw
}

.gosc-card-open-v2__prize {
	width: 100vw;
	height: 29.33333vw;
	display: flex
}

.gosc-card-open-v2__prize--redpocket {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/open_red.png);
	background-size: 100% 100%
}

.gosc-card-open-v2__prize--redpocket .gosc-card-open-v2__prize-left {
	margin-top: 6.13333vw;
	width: 51.46667vw;
	margin-left: 6.4vw;
	line-height: 10.13333vw;
	font-size: 7.2vw;
	font-family: PingFang TC;
	font-weight: bolder;
	color: #b66221;
	text-align: center
}

.gosc-card-open-v2__prize--redpocket .gosc-card-open-v2__prize-left-num {
	font-family: UDC105-Bold
}

.gosc-card-open-v2__prize--redpocket .gosc-card-open-v2__prize-right {
	margin-top: 6.13333vw;
	width: 35.46667vw;
	padding-left: 4vw;
	box-sizing: border-box
}

.gosc-card-open-v2__prize--redpocket .gosc-card-open-v2__prize-title {
	line-height: 4.8vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #b66221
}

.gosc-card-open-v2__prize--redpocket .gosc-card-open-v2__prize-tab {
	line-height: 4.8vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #b66221
}

.gosc-card-open-v2__prize--coupon {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/open_coupon.png);
	background-size: 100% 100%
}

.gosc-card-open-v2__prize--coupon .gosc-card-open-v2__prize-left {
	box-sizing: border-box;
	margin-top: 6.13333vw;
	width: 30.66667vw;
	padding-right: 4vw;
	margin-left: 6.4vw;
	line-height: 10.13333vw;
	font-size: 7.2vw;
	font-family: PingFang TC;
	font-weight: bolder;
	color: #901414;
	text-align: right
}

.gosc-card-open-v2__prize--coupon .gosc-card-open-v2__prize-left-num {
	font-family: UDC105-Bold
}

.gosc-card-open-v2__prize--coupon .gosc-card-open-v2__prize-right {
	margin-top: 6.13333vw;
	width: 53.33333vw;
	padding-left: 4vw;
	box-sizing: border-box
}

.gosc-card-open-v2__prize--coupon .gosc-card-open-v2__prize-title {
	line-height: 4.8vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #901414
}

.gosc-card-open-v2__prize--coupon .gosc-card-open-v2__prize-tab {
	line-height: 4.8vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #901414
}

.gosc-card-open-v2__form {
	margin-top: -10.13333vw
}

.gosc-card-open-v2__form .gosc-form-item:first-child {
	border-top: none
}

.gosc-card-open-v2__card-list {
	width: 100%;
	background: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-card-open-v2__card-list-title {
	position: relative;
	height: 13.86667vw;
	font-size: 4.8vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-open-v2__card-list-back {
	width: 11.73333vw;
	height: 11.73333vw;
	position: absolute;
	top: 1.06667vw;
	left: 1.06667vw
}

.gosc-card-open-v2__card-list-close {
	width: 11.73333vw;
	height: 11.73333vw;
	position: absolute;
	top: 1.06667vw;
	right: 1.06667vw
}

.gosc-card-open-v2__card-list-box {
	height: 112vw;
	overflow-y: scroll
}

.gosc-card-open-v2__card-list-item {
	width: 95.73333vw;
	height: 16vw;
	margin-left: 4.26667vw;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eeeeee
}

.gosc-card-open-v2__card-list-item-left {
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	margin-right: 2.66667vw
}

.gosc-card-open-v2__card-list-item-right {
	font-size: 3.46667vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666
}

.gosc-card-open-v2__card-list-tips {
	width: 100%;
	height: 11.73333vw;
	background: #fff
}

.gosc-card-open-v2__double-button-box {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.gosc-card-open-v2__double-button-box-left-btn {
	width: 44.26667vw;
	height: 11.73333vw;
	background-image: url(https://img11.360buyimg.com/imagetools/jfs/t1/151652/30/39480/3231/666ffae4F9d6f4dfa/897b4b6e9e1ec445.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-open-v2__double-button-box-right-btn {
	width: 44.26667vw;
	height: 11.73333vw;
	background-image: url(https://img14.360buyimg.com/imagetools/jfs/t1/243453/27/11533/2578/666ffae5Fc929c177/d89dc7f8121d86ee.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-open-v2__head-image {
	width: 100%;
	height: 33.33333vw;
	max-height: 33.33333vw
}

.jr-aks-sec-keyboard-container {
	z-index: 10000
}

.gosc-card-loading-v2 {
	position: relative;
	width: 100%;
	min-height: 122.13333vw;
	box-sizing: border-box;
	padding: 8vw 6.66667vw
}

.gosc-card-loading-v2__header {
	margin: 0
}

.gosc-card-loading-v2__header dt {
	color: #333;
	font-size: 5.86667vw;
	line-height: 7.46667vw;
	font-weight: 700
}

.gosc-card-loading-v2__header dd {
	margin: 1.33333vw 0 0;
	font-size: 3.73333vw;
	color: #666;
	line-height: 5.33333vw
}

.gosc-card-loading-v2__step {
	position: relative;
	width: 100%;
	margin-top: 7.46667vw
}

.gosc-card-loading-v2__step-item {
	position: relative;
	padding-left: 7.46667vw;
	padding-bottom: 4.26667vw
}

.gosc-card-loading-v2__step-item dl {
	margin: 0
}

.gosc-card-loading-v2__step-item dt {
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	color: #aaa;
	font-weight: 500
}

.gosc-card-loading-v2__step-item dd {
	margin: .8vw 0 0;
	font-size: 3.2vw;
	color: #aaa;
	line-height: 4.53333vw
}

.gosc-card-loading-v2__step-item:last-child .gosc-card-loading-v2__step-line {
	display: none
}

.gosc-card-loading-v2__step-item--right dt,
.gosc-card-loading-v2__step-item--loading dt {
	color: #333
}

.gosc-card-loading-v2__step-item--right .gosc-card-loading__step-icon,
.gosc-card-loading-v2__step-item--loading .gosc-card-loading__step-icon {
	font-size: 0;
	border-color: #eb9654
}

.gosc-card-loading-v2__step-item--right .gosc-card-loading__step-line,
.gosc-card-loading-v2__step-item--loading .gosc-card-loading__step-line {
	background-color: #eb9654
}

.gosc-card-loading-v2__step-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 5.33333vw;
	height: 5.33333vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 50%;
	box-sizing: border-box
}

.gosc-card-loading-v2__step-right {
	width: 3.2vw;
	height: 3.2vw
}

.gosc-card-loading-v2__step-right svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #eb9654
}

.gosc-card-loading-v2__step-num {
	font-size: 3.46667vw;
	color: #ccc;
	line-height: 4.8vw;
	font-style: normal
}

.gosc-card-loading-v2__step-line {
	position: absolute;
	top: 5.33333vw;
	left: 2.53333vw;
	width: 1px;
	height: calc(100% - 5.33333vw);
	background-color: #ccc
}

:export {
	prefix: gosc
}

.gosc-card-result-v2 {
	position: relative;
	padding: 8vw 5.33333vw;
	width: 100%;
	box-sizing: border-box
}

.gosc-card-result-v2__fail-result-fund {
	box-sizing: border-box
}

.gosc-card-result-v2__fail-result-fund-title {
	display: flex;
	align-items: center;
	padding-left: 4.26667vw;
	margin-bottom: 1.6vw;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	line-height: 5.33333vw
}

.gosc-card-result-v2__fail-result-fund-title-sub {
	display: flex;
	align-items: center;
	margin-left: 2.13333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666;
	line-height: 4.53333vw
}

.gosc-card-result-v2__fail-result-fund-title-sub>img {
	margin-left: 1.2vw;
	width: 1.46667vw;
	height: 2.4vw
}

.gosc-card-result-v2__header {
	display: flex;
	justify-content: flex-start
}

.gosc-card-result-v2__header-icon {
	flex-shrink: 0;
	width: 7.46667vw;
	height: 7.46667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/result-right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-result-v2__header-icon--error {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/result-error.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-result-v2__header dl {
	margin: 0 0 0 1.6vw
}

.gosc-card-result-v2__header dl dt {
	font-size: 5.86667vw;
	color: #333;
	line-height: 7.46667vw;
	font-weight: 700
}

.gosc-card-result-v2__header dl dd {
	margin: 1.33333vw 0 0;
	font-size: 3.73333vw;
	color: #666;
	line-height: 5.33333vw
}

.gosc-card-result-v2__detail {
	margin-top: 5.33333vw
}

.gosc-card-result-v2__detail dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2.66667vw 0 0;
	width: 100%
}

.gosc-card-result-v2__detail dl:first-child {
	margin: 0
}

.gosc-card-result-v2__detail dl dt {
	width: 40%;
	font-size: 3.73333vw;
	color: #333;
	line-height: 5.33333vw
}

.gosc-card-result-v2__detail dl dd {
	width: 60%;
	font-size: 3.73333vw;
	text-align: right;
	color: #999;
	line-height: 5.33333vw
}

.gosc-card-result-v2__switch {
	margin-top: 8vw;
	width: 100%
}

.gosc-card-result-v2__switch dl {
	display: flex;
	align-items: center;
	padding: 3.73333vw 0;
	margin: 0;
	width: 100%
}

.gosc-card-result-v2__switch dl dt {
	flex: 1;
	padding-left: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold-tip.png) left center no-repeat;
	background-size: 3.73333vw 3.73333vw
}

.gosc-card-result-v2__switch dl dt h4 {
	margin: 0;
	font-size: 4.26667vw;
	color: #333;
	line-height: 6.13333vw
}

.gosc-card-result-v2__switch dl dt p {
	margin: 0;
	font-size: 2.93333vw;
	color: #999;
	line-height: 4vw
}

.gosc-card-result-v2__switch dl dd {
	flex-shrink: 0;
	margin: 0 0 0 1.33333vw
}

.gosc-card-result-v2__switch-btn {
	position: relative;
	width: 13.06667vw;
	height: 7.46667vw;
	background-color: rgba(120, 120, 128, .16);
	border-radius: 3.73333vw;
	cursor: pointer;
	transition: background-color .3s
}

.gosc-card-result-v2__switch-btn i {
	position: absolute;
	top: .53333vw;
	left: .53333vw;
	width: 6.4vw;
	height: 6.4vw;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 .8vw 1px rgba(0, 0, 0, .05);
	transition: transform .3s cubic-bezier(.3, 1.05, .4, 1.05)
}

.gosc-card-result-v2__switch-btn--on {
	background-color: #eb9654
}

.gosc-card-result-v2__switch-btn--on i {
	transform: translate(5.6vw)
}

.gosc-card-result-v2__again {
	margin-top: 8vw;
	width: 100%
}

.gosc-card-result-v2__again dl {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 3.73333vw 0;
	margin: 0;
	width: 100%
}

.gosc-card-result-v2__again dl dt {
	max-width: 40%;
	font-size: 3.73333vw;
	color: #666;
	line-height: 6.4vw
}

.gosc-card-result-v2__again dl dd {
	margin: 0;
	max-width: 60%
}

.gosc-card-result-v2__again-box {
	display: flex;
	justify-content: flex-end;
	align-items: center
}

.gosc-card-result-v2__again-text {
	font-size: 3.73333vw;
	color: #666;
	line-height: 6.4vw
}

.gosc-card-result-v2__again-arrow {
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-result-v2__again-expain {
	margin-top: .8vw;
	font-size: 3.2vw;
	text-align: right;
	color: #999;
	line-height: 4.8vw
}

.gosc-card-result-v2__again-phone {
	font-size: 3.73333vw;
	color: #999;
	line-height: 6.4vw
}

.gosc-card-result-v2__again-btn {
	margin-left: 2.13333vw;
	font-size: 3.73333vw;
	color: #b66221;
	line-height: 6.4vw
}

.gosc-card-result-v2__again-input {
	display: block;
	width: 32vw;
	font-size: 3.73333vw;
	text-align: right;
	color: #666;
	background: none;
	border: none;
	outline: none;
	line-height: 6.4vw
}

.gosc-card-result-v2__again-input::placeholder {
	font-size: inherit;
	color: #999;
	font-weight: 400
}

.gosc-card-result-v2__card {
	margin-top: 8vw
}

.gosc-card-result-v2__card img {
	display: block;
	margin: 0 auto;
	width: 53.33333vw;
	height: 33.33333vw
}

.gosc-card-result-v2__bottom {
	margin-top: 8vw
}

.gosc-card-result-v2__bottom-btn {
	margin-top: 5.33333vw
}

.gosc-card-result-v2__bottom-btn--flex {
	display: flex;
	justify-content: space-between
}

.gosc-card-result-v2__bottom-btn--flex button {
	width: 41.33333vw
}

.gosc-card-result-v2__bottom-btn-close {
	padding-top: 5.33333vw;
	font-size: 3.73333vw;
	line-height: 1.2;
	text-align: center
}

.gosc-card-result-v2__bottom-cancel {
	padding: 4.26667vw 0;
	width: 100%;
	font-size: 3.46667vw;
	text-align: center;
	color: #666;
	line-height: 5.06667vw
}

.gosc-card-result-v2__ad {
	margin-top: 8vw;
	width: 100%
}

.gosc-card-result-v2__ad img {
	display: block;
	width: 100%
}

.gosc-card-result-v2__header-prize {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #f78e47
}

.gosc-card-result-v2__header-prize-arrow {
	display: inline-block;
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow.png);
	background-size: 100% 100%;
	vertical-align: middle
}

.gosc-card-result-v2__header-prize-no-double {
	padding-bottom: 2.93333vw;
	margin-top: 3.73333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #666;
	font-weight: 400;
	line-height: 4.4vw;
	border-bottom: 1px solid #E5E5E5
}

.gosc-card-result-v2__header-prize-num {
	color: #ff4144
}

.gosc-card-result-v2__success-result-auto {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10.93333vw 0 52vw
}

.gosc-card-result-v2__success-result-auto>img {
	width: 12.26667vw;
	height: 12.26667vw
}

.gosc-card-result-v2__success-result-auto-text {
	margin-top: 5.6vw;
	height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFang SC;
	color: #333;
	text-shadow: 0 1.06667vw 3.2vw rgba(0, 17, 91, .08);
	line-height: 7.46667vw;
	font-weight: 600
}

.gosc-card-result-v2__success-result-auto-tip {
	margin-top: 1.6vw;
	height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	color: #666;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-card-result-v2--fund {
	padding: 3.73333vw 0 6.66667vw;
	background-image: url(https://img30.360buyimg.com/img/jfs/t1/254222/3/10674/47951/677e263cF5d6eb457/0441bf47b13b5aa9.png);
	background-repeat: no-repeat;
	background-size: 100% 100%
}

.gosc-open-account-v2 {
	position: relative;
	z-index: 9998
}

.gosc-open-account-v2__wrap {
	position: relative;
	width: 100%
}

.gosc-open-account-v2__content {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 53.33333vw;
	background: #fff;
	background-size: 100% auto;
	border-radius: 2.66667vw 2.66667vw 0 0
}

.gosc-open-account-v2__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%
}

.gosc-open-account-v2__change {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-open-account-v2__change-header {
	position: relative;
	padding: 5.33333vw 11.73333vw;
	font-size: 5.33333vw;
	text-align: center;
	color: #333;
	line-height: 7.46667vw
}

.gosc-open-account-v2__change-header span {
	font-weight: 600
}

.gosc-open-account-v2__change-close {
	position: absolute;
	top: 50%;
	right: 0;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%;
	transform: translateY(-50%)
}

.gosc-open-account-v2__change-list {
	padding: 0 4.26667vw 4.26667vw;
	margin: 0;
	list-style: none
}

.gosc-open-account-v2__change-list li {
	display: flex;
	align-items: center;
	width: 100%;
	height: 18.66667vw;
	list-style: none
}

.gosc-open-account-v2__change-list li:after {
	border-bottom-width: 1px
}

.gosc-open-account-v2__change-icon {
	margin-right: 3.2vw;
	width: 8vw;
	height: 8vw;
	flex-shrink: 0
}

.gosc-open-account-v2__change-icon img {
	display: block;
	width: 100%;
	height: 100%
}

.gosc-open-account-v2__change-text {
	overflow: hidden;
	margin: 0;
	flex: 1
}

.gosc-open-account-v2__change-text dt {
	font-size: 4.26667vw;
	line-height: 6.13333vw;
	color: #333;
	font-weight: 500
}

.gosc-open-account-v2__change-text dd {
	margin: .53333vw 0 0;
	font-size: 3.2vw;
	color: #ccc;
	line-height: 4.26667vw
}

.gosc-open-account-v2__change-text dt,
.gosc-open-account-v2__change-text dd {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.gosc-open-account-v2__change-checked {
	margin: 0 1.6vw .53333vw 2.66667vw;
	width: 1.6vw;
	height: 3.2vw;
	flex-shrink: 0;
	transform: rotate(45deg);
	border-right: .53333vw solid #eb9654;
	border-bottom: .53333vw solid #eb9654
}

.gosc-open-account-v2__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

#keyboard-view {
	z-index: 9999
}

:export {
	prefix: gosc
}

.gosc-bank-list-ms__paymethod {
	padding: 5.06667vw 0;
	position: relative;
	margin: 0 3.2vw
}

.gosc-bank-list-ms__paymethod-title {
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000;
	position: absolute;
	left: 0;
	top: 5.33333vw
}

.gosc-bank-list-ms__paymethod-value {
	text-align: right;
	padding-right: 1.6vw
}

.gosc-bank-list-ms__paymethod-value-bankname {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: flex-end
}

.gosc-bank-list-ms__paymethod-value-bankname>span {
	vertical-align: middle;
	display: inline-block
}

.gosc-bank-list-ms__paymethod-value-subtitle {
	line-height: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding-top: 1.06667vw
}

.gosc-bank-list-ms__paymethod-value-subtitle>span {
	color: #eb9654
}

.gosc-bank-list-ms__paymethod-value-subtitle>i {
	color: #f53137;
	font-style: normal
}

.gosc-bank-list-ms__paymethod-value-operate {
	position: relative;
	height: 3.73333vw;
	line-height: 3.73333vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #000 !important;
	margin-left: 1.6vw;
	padding: 0 1.86667vw
}

.gosc-bank-list-ms__paymethod-value-operate:after {
	border-radius: 1.33333vw
}

.gosc-bank-list-ms__paymethod .pr16 {
	padding-right: 4.26667vw
}

.gosc-bank-list-ms__arrow {
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	vertical-align: top;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-bank-list-ms__logo {
	width: 4vw;
	height: 4vw;
	background: url(https://storage.jd.com/payment-assets/sdk/bank/CMBC.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 1.33333vw;
	display: inline-block;
	vertical-align: middle
}

.gosc-bank-list-ms__change {
	position: relative;
	width: 100%;
	background-color: #f4f3f8;
	border-radius: 2.13333vw 2.13333vw 0 0;
	overflow: hidden
}

.gosc-bank-list-ms__change-header {
	position: relative;
	text-align: center;
	line-height: 6.66667vw;
	padding: 3.73333vw 11.73333vw;
	font-size: 4.8vw;
	font-family: PingFang SC;
	color: #333
}

.gosc-bank-list-ms__change-header span {
	font-weight: 500
}

.gosc-bank-list-ms__change-close {
	position: absolute;
	left: 1.06667vw;
	top: 50%;
	transform: translateY(-50%);
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/back.png) no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list-ms__change-bank {
	margin: 0;
	list-style: none;
	padding: 2.66667vw 3.2vw 10.66667vw
}

.gosc-bank-list-ms__change-bank li {
	align-items: center;
	list-style: none;
	padding: 3.73333vw 3.2vw;
	background-color: #fff;
	border-radius: 1.06667vw;
	margin-bottom: 2.66667vw
}

.gosc-bank-list-ms__change-bank li:after {
	border-bottom-width: 1px
}

.gosc-bank-list-ms__change-bank li:last-child {
	margin-bottom: 0
}

.gosc-bank-list-ms__change-list {
	margin: 0;
	list-style: none;
	padding: 0 4.26667vw 4.26667vw
}

.gosc-bank-list-ms__change-list li {
	width: 100%;
	height: 18.66667vw;
	display: flex;
	align-items: center;
	list-style: none
}

.gosc-bank-list-ms__change-list li:after {
	border-bottom-width: 1px
}

.gosc-bank-list-ms__change-wrap {
	display: flex;
	align-items: center;
	position: relative
}

.gosc-bank-list-ms__change-wrap:after {
	content: "";
	position: absolute;
	width: 4vw;
	height: 4vw;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	border: 1px solid #dddddd;
	border-radius: 50%
}

.gosc-bank-list-ms__change .bank-select:after {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list-ms__change-icon {
	flex-shrink: 0;
	width: 5.33333vw;
	height: 5.33333vw;
	margin-right: 1.33333vw
}

.gosc-bank-list-ms__change-icon img {
	display: block;
	width: 5.33333vw;
	height: 5.33333vw
}

.gosc-bank-list-ms__change-text {
	align-items: center;
	margin: 0;
	flex: 1;
	overflow: hidden;
	line-height: 5.6vw;
	display: flex;
	font-size: 4vw;
	font-family: PingFang SC
}

.gosc-bank-list-ms__change-text dt {
	font-weight: 500;
	color: #000
}

.gosc-bank-list-ms__change-text dd {
	color: #666;
	margin-left: 2.66667vw
}

.gosc-bank-list-ms__change-text dt,
.gosc-bank-list-ms__change-text dd {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.gosc-bank-list-ms__change-tip {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #eb9654;
	margin-top: 1.06667vw
}

.gosc-bank-list-ms__change-des {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	margin-top: 1.06667vw
}

.gosc-bank-list-ms__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list-ms__change-btns {
	padding-top: 3.2vw;
	display: flex;
	align-items: center
}

.gosc-bank-list-ms__change-btns span {
	text-align: center;
	margin-right: 2.66667vw;
	padding: 0 3.2vw;
	height: 6.66667vw;
	line-height: 6.66667vw;
	border: 1px solid rgb(235, 150, 84);
	border-radius: 3.46667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #eb9654
}

.gosc-bank-list-ms__change-line {
	height: 1px;
	background: #eee;
	margin: 3.73333vw 0
}

.gosc-bank-list-ms__change-bigRecharge {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666;
	position: relative
}

.gosc-bank-list-ms__change-bigRecharge:after {
	content: "";
	display: block;
	width: 1.33333vw;
	height: 2.4vw;
	position: absolute;
	right: 1px;
	top: 0;
	transform: translateY(50%);
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

@keyframes jdCfGoldBuyCompRefreshAssetsAni-4fd924bd {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.gosc-bank-list-ms__assets-refresh {
	width: 3.2vw;
	height: 3.2vw;
	margin-left: 1.06667vw;
	background-size: 100% 100%;
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/refresh.png)
}

.gosc-bank-list-ms__assets-refresh--loading {
	animation: jdCfGoldBuyCompRefreshAssetsAni-4fd924bd .5s linear infinite
}

:export {
	prefix: gosc
}

.gosc-agreement__agreement-box {
	width: 100%;
	background: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0;
	box-sizing: border-box;
	overflow: hidden
}

.gosc-agreement__agreement-box-header {
	position: relative;
	text-align: center;
	color: #333;
	font-size: 4.8vw;
	font-weight: 500;
	line-height: 13.86667vw;
	height: 13.86667vw
}

.gosc-agreement__agreement-box-header img {
	position: absolute;
	width: 11.73333vw;
	height: 11.73333vw;
	top: 50%;
	transform: translateY(-50%);
	right: 0
}

.gosc-agreement__agreement-box-content {
	border-top: 1px solid #EEEEEE
}

.gosc-agreement__agreement-box-content_item {
	position: relative;
	height: 14.93333vw;
	padding: 0 4.26667vw;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.gosc-agreement__agreement-box-content_item:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 4.26667vw;
	top: 14.93333vw;
	background-color: #eee
}

.gosc-agreement__agreement-box-content_item-name {
	width: 81.06667vw;
	font-size: 4.26667vw;
	font-weight: 500
}

.gosc-agreement__agreement-box-content_item img {
	width: 3.2vw;
	height: 3.2vw
}

.gosc-agreement__agreement-box-content_item:last-child {
	padding-bottom: 8vw
}

.gosc-page-recharge {
	background: #f4f3f8;
	border-radius: 4.26667vw 4.26667vw 0 0;
	height: auto;
	position: relative
}

.gosc-page-recharge__main-head {
	width: 100%;
	height: 12.8vw;
	border-radius: 4.26667vw 4.26667vw 0 0;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #b66221;
	text-align: center;
	background: #fff
}

.gosc-page-recharge__main-head-box {
	width: 45.33333vw;
	height: 7.46667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buygold_head_bg.png) center center no-repeat;
	background-size: 100% 100%;
	line-height: 7.46667vw;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto
}

.gosc-page-recharge__main-head img {
	width: 2.93333vw;
	margin-right: .53333vw;
	display: inline-block
}

.gosc-page-recharge__recharge-module {
	width: 100%;
	background: #fff;
	padding: 2.4vw 3.2vw 3.73333vw;
	box-sizing: border-box;
	margin-bottom: 2.66667vw
}

.gosc-page-recharge__title {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.gosc-page-recharge__title-left {
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #333;
	line-height: 6vw
}

.gosc-page-recharge__title-right {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	line-height: 4.4vw
}

.gosc-page-recharge__input-box {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 5.33333vw
}

.gosc-page-recharge__input-icon {
	width: 2.93333vw;
	height: 4.8vw;
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/icon_money.png);
	background-size: 2.93333vw auto;
	background-repeat: no-repeat;
	padding-right: 1.86667vw
}

.gosc-page-recharge__input-keyboard {
	position: relative;
	max-width: 80%;
	height: 7.73333vw;
	flex: 1;
	align-items: center;
	line-height: 13.33333vw;
	font-size: 6.4vw;
	display: flex;
	margin-bottom: 2.13333vw
}

.gosc-page-recharge__input-keyboard-pointer {
	overflow: hidden;
	font-family: JR-UDC2-Medium;
	font-size: 6.4vw
}

.gosc-page-recharge__input-keyboard-pointer:empty:before {
	content: attr(placeholder);
	font-family: JR-UDC2-Medium;
	color: #ddd;
	font-size: 100%;
	position: absolute;
	line-height: 1px
}

.gosc-page-recharge__input-keyboard-pointer:focus:before {
	content: none
}

.gosc-page-recharge .focus-pointer:after {
	content: "";
	border-right: 1px solid #000;
	opacity: 1;
	filter: alpha(opacity=100);
	animation: focus .8s forwards infinite;
	height: 8vw
}

.gosc-page-recharge .focus-pointer::-webkit-scrollbar {
	display: none
}

@keyframes focus {
	0% {
		opacity: 1;
		filter: alpha(opacity=100)
	}

	to {
		opacity: 0;
		filter: alpha(opacity=0)
	}
}

.gosc-page-recharge__input-close {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/input_close.png) center center no-repeat;
	background-size: 100% 100%;
	width: 4vw;
	height: 4vw;
	position: absolute;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	right: 0
}

.gosc-page-recharge__input-error {
	margin-top: 1.6vw;
	height: 4.4vw;
	line-height: 4.4vw;
	font-size: 3.2vw;
	font-weight: 400;
	color: #ef4034
}

.gosc-page-recharge__line {
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, .06);
	margin-bottom: 4.26667vw
}

.gosc-page-recharge__input-list {
	position: relative;
	display: flex;
	box-sizing: border-box;
	margin-bottom: 4.26667vw
}

.gosc-page-recharge__input-list-item {
	height: 6.4vw;
	background: #f4f3f8;
	border-radius: 3.2vw;
	padding: 1.06667vw 4vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #999;
	line-height: 4.4vw;
	box-sizing: border-box
}

.gosc-page-recharge__input-list-item+.gosc-page-recharge__input-list-item {
	margin-left: 2.66667vw
}

.gosc-page-recharge__input-list-item_index {
	background: #eb9654;
	color: #b66221
}

.gosc-page-recharge__recharge-tips {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	line-height: 4.4vw
}

.gosc-page-recharge__payment-module {
	width: 100%;
	background: #fff;
	padding: 4.93333vw 3.2vw;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 10vw
}

.gosc-page-recharge__left {
	font-size: 4vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	line-height: 5.6vw
}

.gosc-page-recharge__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end
}

.gosc-page-recharge__right-item {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	line-height: 4.4vw
}

.gosc-page-recharge__right-item_yellow {
	color: #ffa61d
}

.gosc-page-recharge__bank-name {
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000;
	line-height: 5.33333vw;
	margin-bottom: 1.06667vw
}

.gosc-page-recharge__protocol-module {
	width: 100%;
	padding-left: 4.26667vw;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	margin-bottom: 3.73333vw
}

.gosc-page-recharge__protocol-module-left {
	width: 4vw;
	height: 4vw;
	margin-right: 1.6vw
}

.gosc-page-recharge__protocol-module-left img {
	width: 100%;
	height: auto
}

.gosc-page-recharge__protocol-module-right {
	padding-top: .4vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-page-recharge__protocol-module-right_color {
	color: #cc8c4e
}

.gosc-page-recharge__recharge-button {
	width: 91.46667vw;
	height: 13.33333vw;
	background: #eb9654;
	border-radius: 6.66667vw;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 4.26667vw;
	box-sizing: border-box
}

.gosc-page-recharge__large-amount {
	line-height: 4.93333vw;
	font-size: 3.46667vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666;
	text-align: center;
	margin: 0;
	padding: 0;
	padding-bottom: 9.06667vw
}

.gosc-page-recharge__disable {
	background: rgba(235, 150, 84, .3)
}

:export {
	prefix: gosc
}

.gosc-result__result-box {
	width: 100%;
	padding: 8vw 5.33333vw 10.66667vw 4.26667vw;
	box-sizing: border-box;
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/result_bg.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: #f4f3f8;
	border-radius: 2.66667vw 2.66667vw 0 0
}

.gosc-result__result-box_header {
	display: flex;
	align-items: center
}

.gosc-result__result-box_header img {
	width: 7.46667vw;
	height: 7.46667vw;
	margin-right: 1.06667vw
}

.gosc-result__result-box_header-title {
	font-size: 5.86667vw;
	font-family: PingFang SC;
	font-weight: 600;
	margin: 0
}

.gosc-result__result-box_desc {
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666;
	padding-left: 8.53333vw;
	margin-top: .8vw
}

.gosc-result__result-box_btn {
	width: 81.86667vw;
	height: 13.33333vw;
	border: 1px solid rgb(204, 204, 204);
	border-radius: 6.66667vw;
	font-size: 4.26667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #333;
	line-height: 5.86667vw;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10.66667vw auto 0
}

.gosc-result__result-box_amount {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 5.86667vw;
	font-weight: 600;
	color: #333
}

.gosc-result__result-box_amount>img {
	width: 2.93333vw;
	height: 4.8vw;
	margin-right: 1.6vw;
	margin-left: 4.53333vw
}

.gosc-result__result-box_detail {
	position: relative;
	margin-top: 8vw;
	width: 100%;
	padding: .8vw 1.33333vw
}

.gosc-result__result-box_detail p {
	margin: 0
}

.gosc-result__result-box_detail-item {
	position: relative;
	margin-top: 1.33333vw;
	display: flex;
	justify-content: space-between;
	line-height: 4.53333vw;
	font-size: 3.73333vw;
	font-weight: 400;
	color: #999;
	margin-bottom: 4.8vw
}

.gosc-result__result-box_detail-item-title {
	text-align: left;
	color: #333
}

.gosc-result__result-box_detail-item-desc {
	text-align: right
}

.gosc-recharge__wrap {
	position: relative;
	width: 100%;
	border-radius: 2.13333vw 2.13333vw 0 0;
	background-color: #f4f3f8
}

.gosc-recharge__close {
	position: absolute;
	right: 0;
	top: 2.13333vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close_gray.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2
}

.gosc-recharge__close-result {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	position: absolute;
	right: 0;
	top: 2.13333vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background-size: 100% 100%;
	z-index: 2
}

:export {
	prefix: gosc
}

.gosc-card-buy {
	position: relative;
	padding-bottom: 10.66667vw
}

.gosc-card-buy__header {
	height: 9.86667vw;
	padding-bottom: 2.66667vw;
	background: #f4f3f8;
	border-radius: 4.26667vw 4.26667vw 0 0;
	position: relative;
	line-height: 9.86667vw;
	text-align: center
}

.gosc-card-buy__header .color-red {
	color: #f53137
}

.gosc-card-buy__header .color-green {
	color: #54ae76
}

.gosc-card-buy__header-title {
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #333;
	padding-left: 3.2vw
}

.gosc-card-buy__header-value {
	font-size: 3.46667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #000;
	padding-left: 2.13333vw
}

.gosc-card-buy__main {
	border-top-right-radius: 2.66667vw;
	border-top-left-radius: 2.66667vw;
	margin-top: -2.66667vw;
	background: #fff;
	padding: 0 3.2vw 3.73333vw;
	position: relative
}

.gosc-card-buy__main .select {
	background: rgba(235, 150, 84, .16);
	color: #b66221
}

.gosc-card-buy__main-head {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buygold_head_bg.png) center center no-repeat;
	width: 45.33333vw;
	height: 7.46667vw;
	background-size: 100% 100%;
	line-height: 7.46667vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #b66221;
	text-align: center;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-buy__main-head img {
	width: 2.93333vw;
	margin-right: .53333vw;
	display: inline-block
}

.gosc-card-buy__main-money {
	display: flex;
	align-items: center;
	padding: 4.26667vw 0 0
}

.gosc-card-buy__main-money>span {
	display: inline-block;
	height: 6.4vw;
	line-height: 6.4vw;
	background: #f4f3f8;
	border-radius: 6.13333vw;
	text-align: center;
	font-size: 3.2vw;
	font-family: PingFangSC-Semibold;
	font-weight: 600;
	color: #999;
	margin-right: 2.66667vw;
	padding: 0 3.2vw
}

.gosc-card-buy__main-input {
	padding-top: 6.4vw
}

.gosc-card-buy__main-bottom {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding: 4.26667vw 0 0;
	height: 9.06667vw
}

.gosc-card-buy__content {
	background-color: #fff;
	margin: 2.66667vw auto 0;
	width: 100%
}

.gosc-card-buy__content--order {
	margin-top: 0
}

.gosc-card-buy__content--order .gosc-card-buy__paymethod,
.gosc-card-buy__content--order .gosc-card-buy__coupon {
	margin: 0 5.33333vw
}

.gosc-card-buy__logo {
	width: 4vw;
	height: 4vw;
	background: url(https://storage.jd.com/payment-assets/sdk/bank/CMBC.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 1.33333vw;
	display: inline-block;
	vertical-align: middle
}

.gosc-card-buy__arrow {
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	vertical-align: top;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-card-buy__paymethod {
	padding: 5.06667vw 0;
	position: relative;
	margin: 0 3.2vw
}

.gosc-card-buy__paymethod-title {
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000;
	position: absolute;
	left: 0;
	top: 5.33333vw
}

.gosc-card-buy__paymethod-value {
	text-align: right;
	padding-right: 1.6vw
}

.gosc-card-buy__paymethod-value-bankname {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: flex-end
}

.gosc-card-buy__paymethod-value-bankname>span {
	vertical-align: middle;
	display: inline-block
}

.gosc-card-buy__paymethod-value-subtitle {
	line-height: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding-top: 1.06667vw
}

.gosc-card-buy__paymethod-value-subtitle>span {
	color: #eb9654
}

.gosc-card-buy__paymethod-value-subtitle>i {
	color: #f53137;
	font-style: normal
}

.gosc-card-buy__paymethod-value-operate {
	position: relative;
	height: 3.73333vw;
	line-height: 3.73333vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #000 !important;
	margin-left: 1.6vw;
	padding: 0 1.86667vw
}

.gosc-card-buy__paymethod-value-operate:after {
	border-radius: 1.33333vw
}

.gosc-card-buy__paymethod .pr16 {
	padding-right: 4.26667vw
}

.gosc-card-buy__coupon {
	display: flex;
	align-items: center;
	padding: 4.53333vw 0;
	position: relative;
	margin: 0 3.2vw
}

.gosc-card-buy__coupon-title {
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000
}

.gosc-card-buy__coupon-num {
	height: 4.8vw;
	background: rgba(239, 64, 52, .08);
	border-radius: .53333vw;
	line-height: 4.8vw;
	font-size: 2.93333vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #ef4034;
	padding: 0 1.06667vw;
	margin-left: 2.13333vw
}

.gosc-card-buy__coupon-value {
	line-height: 5.06667vw;
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #333;
	flex: 1;
	text-align: right;
	padding-right: 4.26667vw
}

.gosc-card-buy__coupon-err {
	display: flex;
	align-items: center
}

.gosc-card-buy__coupon-err-title {
	font-size: 4vw;
	font-family: PingFang HK;
	font-weight: 400;
	color: #000
}

.gosc-card-buy__coupon-err-text {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #ff4144
}

.gosc-card-buy__coupon-err-btn {
	margin-left: 1.06667vw;
	width: 4.26667vw;
	height: 4.26667vw;
	background: url(https://img20.360buyimg.com/img/jfs/t1/276820/26/27226/546/6809ce45F2e4de338/f5a4a70f758a0796.png) no-repeat;
	background-size: contain
}

.gosc-card-buy__coupon-err-loadingText {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000
}

.gosc-card-buy__agreement {
	padding: 0 4.26667vw;
	margin-top: 8.53333vw
}

.gosc-card-buy__agreement em {
	color: #cc8c4e;
	font-style: normal
}

.gosc-card-buy__bottom {
	padding: 0 4.26667vw;
	margin-top: 4.26667vw;
	display: flex;
	align-items: center
}

.gosc-card-buy__bottom-btn {
	position: relative;
	width: 100%
}

.gosc-card-buy__bottom-icon {
	width: 12.8vw;
	height: 12.8vw;
	margin-right: 3.2vw
}

.gosc-card-buy__bottom-icon img {
	width: 100%
}

.gosc-card-buy__order-header {
	position: relative;
	padding: 6.93333vw 5.33333vw 5.6vw;
	background-color: #fff;
	border-top-right-radius: 2.66667vw;
	border-top-left-radius: 2.66667vw;
	margin-top: -2.66667vw
}

.gosc-card-buy__order-title {
	line-height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #000;
	text-shadow: 0 1.06667vw 3.2vw rgba(0, 17, 91, .08)
}

.gosc-card-buy__order-sub-title {
	margin-top: 2.13333vw;
	line-height: 5.33333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	display: flex;
	align-items: center
}

.gosc-card-buy__order-sub-title-i {
	display: inline-block;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	margin-left: 1.06667vw
}

.gosc-card-buy__order-sub-title:last-child {
	margin-top: 0
}

.gosc-card-buy__order-form {
	padding: 0 5.33333vw
}

.gosc-card-buy__btn-tips {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	margin-top: 4.26667vw;
	text-align: center
}

 .largeAmountBtn {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000;
	font-style: normal;
	display: inline-flex;
	align-items: center
}

 .largeAmountBtn:after {
	content: "";
	width: 1.33333vw;
	height: 2.4vw;
	margin-left: 1.33333vw;
	background: url(https://img10.360buyimg.com/img/jfs/t1/278361/37/18708/299/67f88501Fe9926022/92d162e93a623219.png) no-repeat;
	background-size: contain
}

:export {
	prefix: gosc
}

.gosc-card-result {
	position: relative
}

.gosc-card-result__header {
	position: relative;
	padding: 8.53333vw 0 0 5.33333vw;
	display: flex;
	align-items: center
}

.gosc-card-result__header-icon {
	width: 6.93333vw;
	height: 6.93333vw;
	display: inline-block
}

.gosc-card-result__header .icon-success {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_success.png);
	background-size: 100% 100%
}

.gosc-card-result__header .icon-fail {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_fail.png);
	background-size: 100% 100%
}

.gosc-card-result__header .icon-pending {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_pending.png);
	background-size: 100% 100%
}

.gosc-card-result__header-title {
	line-height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFangSC-Semibold;
	font-weight: 600;
	color: #333;
	text-shadow: 0 2.13333vw 6.4vw rgba(0, 17, 91, .08);
	padding-left: 1.33333vw
}

.gosc-card-result__header-community-activit {
	line-height: 5.33333vw;
	display: flex;
	align-items: center;
	padding: 0 5.33333vw;
	margin-top: 1.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400
}

.gosc-card-result__header-community-activit-mainTitle {
	margin-right: 2.66667vw
}

.gosc-card-result__header-community-activit-subTitle {
	flex-shrink: 0;
	margin-right: 2.66667vw
}

.gosc-card-result__header-community-activit-btn {
	flex-shrink: 0;
	margin-left: auto
}

.gosc-card-result__header-community-activit-icon {
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/256283/11/11057/440/6784a504Fe22d8e70/17ac6359f16c5cf9.png) no-repeat;
	background-size: cover;
	margin-left: 1.33333vw
}

.gosc-card-result__switch {
	width: 100%;
	margin-top: 8vw
}

.gosc-card-result__switch dl {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 3.73333vw 0;
	margin: 0
}

.gosc-card-result__switch dl dt {
	flex: 1;
	padding-left: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold-tip.png) left center no-repeat;
	background-size: 3.73333vw 3.73333vw
}

.gosc-card-result__switch dl dt h4 {
	font-size: 4.26667vw;
	color: #333;
	line-height: 6.13333vw;
	margin: 0
}

.gosc-card-result__switch dl dt p {
	margin: 0;
	font-size: 2.93333vw;
	color: #999;
	line-height: 4vw
}

.gosc-card-result__switch dl dd {
	flex-shrink: 0;
	margin: 0 0 0 1.33333vw
}

.gosc-card-result__switch-btn {
	position: relative;
	width: 13.06667vw;
	height: 7.46667vw;
	background-color: rgba(120, 120, 128, .16);
	border-radius: 3.73333vw;
	cursor: pointer;
	transition: background-color .3s
}

.gosc-card-result__switch-btn i {
	position: absolute;
	top: .53333vw;
	left: .53333vw;
	width: 6.4vw;
	height: 6.4vw;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 .8vw 1px rgba(0, 0, 0, .05);
	transition: transform .3s cubic-bezier(.3, 1.05, .4, 1.05)
}

.gosc-card-result__switch-btn--on {
	background-color: #eb9654
}

.gosc-card-result__switch-btn--on i {
	transform: translate(5.6vw)
}

.gosc-card-result__detail {
	margin-top: 2.66667vw
}

.gosc-card-result__detail dl {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 2.66667vw 0 0
}

.gosc-card-result__detail dl:first-child {
	margin: 0
}

.gosc-card-result__detail dl dt {
	width: 40%;
	font-size: 3.73333vw;
	color: #333;
	line-height: 5.33333vw
}

.gosc-card-result__detail dl dd {
	width: 60%;
	font-size: 3.73333vw;
	color: #999;
	text-align: right;
	line-height: 5.33333vw
}

.gosc-card-result__success {
	padding: 8vw 5.33333vw
}

.gosc-card-result__pending {
	padding-top: 1.33333vw
}

.gosc-card-result__pending-title {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #666;
	padding-left: 13.86667vw
}

.gosc-card-result__pending-btn {
	height: 13.33333vw;
	line-height: 13.33333vw;
	border: 1px solid #cccccc;
	border-radius: 6.66667vw;
	text-align: center;
	margin: 8vw 9.06667vw;
	font-size: 4.26667vw
}

.gosc-card-result__fail {
	position: relative;
	padding: 0 5.33333vw 8vw
}

.gosc-card-result__fail-desc {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #666;
	padding: 1.33333vw 0 0 7.46667vw
}

.gosc-card-result__step {
	position: relative;
	margin: 6.4vw 0px 0px
}

.gosc-card-result__step-item {
	position: relative;
	padding-left: 7.46667vw;
	padding-bottom: 4.26667vw;
	text-align: left
}

.gosc-card-result__step-item dl {
	margin: 0
}

.gosc-card-result__step-item dt {
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	color: #aaa;
	font-weight: 500
}

.gosc-card-result__step-item dd {
	margin: .8vw 0 0;
	font-size: 3.2vw;
	color: #aaa;
	line-height: 4.53333vw
}

.gosc-card-result__step-item:last-child .gosc-card-loading__step-line {
	display: none
}

.gosc-card-result__step-item--right dt,
.gosc-card-result__step-item--loading dt {
	color: #333
}

.gosc-card-result__step-item--right .gosc-card-loading__step-icon,
.gosc-card-result__step-item--loading .gosc-card-loading__step-icon {
	font-size: 0;
	border-color: #eb9654
}

.gosc-card-result__step-item--right .gosc-card-loading__step-line,
.gosc-card-result__step-item--loading .gosc-card-loading__step-line {
	background-color: #eb9654
}

.gosc-card-result__step-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 5.33333vw;
	height: 5.33333vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 50%;
	box-sizing: border-box
}

.gosc-card-result__step-right {
	width: 3.2vw;
	height: 3.2vw
}

.gosc-card-result__step-right svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #eb9654
}

.gosc-card-result__step-num {
	font-size: 3.46667vw;
	color: #ccc;
	line-height: 4.8vw;
	font-style: normal
}

.gosc-card-result__step-line {
	position: absolute;
	top: 5.33333vw;
	left: 2.53333vw;
	width: 1px;
	height: calc(100% - 5.33333vw);
	background-color: #ccc
}

.gosc-card-result__bottom {
	margin-top: 10.66667vw
}

.gosc-card-result__bottom-btn {
	margin-top: 8vw;
	padding: 0
}

.gosc-card-result__bottom-btn--flex {
	display: flex;
	justify-content: space-between
}

.gosc-card-result__bottom-btn--flex button {
	width: 42.66667vw
}

.gosc-card-result__bottom-tips {
	text-align: center;
	margin-top: 4.26667vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__bottom-cancel {
	width: 100%;
	padding: 4.26667vw 0;
	text-align: center;
	color: #666;
	font-size: 3.46667vw;
	line-height: 5.06667vw
}

.gosc-card-result__header-prize {
	margin: 1.33333vw auto auto 5.33333vw;
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #f78e47
}

.gosc-card-result__header-prize-arrow {
	display: inline-block;
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow.png);
	background-size: 100% 100%;
	vertical-align: middle;
	margin-top: -.8vw
}

.gosc-card-result__success-order {
	padding: 0 5.33333vw
}

.gosc-card-result__success-order-money {
	margin-top: 3.46667vw;
	line-height: 8vw;
	font-size: 6.66667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #030303
}

.gosc-card-result__success-order-step {
	margin-top: 5.33333vw;
	border-top: 1px solid rgba(0, 0, 0, .06);
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	padding: 5.33333vw 0
}

.gosc-card-result__success-order-step-item {
	display: flex
}

.gosc-card-result__success-order-step-item-left {
	margin-right: 2.13333vw;
	display: flex;
	flex-direction: column;
	align-items: center
}

.gosc-card-result__success-order-step-item-left-icon {
	width: 5.33333vw;
	height: 5.33333vw;
	border: 1px solid #999999;
	border-radius: 2.93333vw;
	text-align: center;
	line-height: 5.33333vw;
	font-size: 3.46667vw;
	font-family: JR;
	font-weight: 400;
	color: #999;
	font-family: UDC105-Bold;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-result__success-order-step-item-left-icon span {
	display: block;
	width: 2.66667vw;
	height: 2.13333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/green_tick.png);
	background-size: 100% 100%
}

.gosc-card-result__success-order-step-item-left-icon--active {
	border: 1px solid #3DC071
}

.gosc-card-result__success-order-step-item-left-line {
	width: 1px;
	height: 8.8vw;
	background: #ccc
}

.gosc-card-result__success-order-step-item-right-title {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__success-order-step-item-right-title--active {
	color: #333
}

.gosc-card-result__success-order-step-item-right-sub-title {
	margin-top: .8vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__success-order-info {
	margin-top: 1.86667vw;
	display: flex;
	justify-content: space-between;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__success-order-info:last-child {
	margin-top: 1.86667vw
}

.gosc-buy-gold__result {
	position: relative;
	width: 100%;
	min-height: 53.33333vw;
	background: #f4f3f8 url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/gold-bg.png) top center no-repeat;
	background-size: 100% auto;
	border-radius: 2.66667vw 2.66667vw 0 0;
	z-index: 1
}

.gosc-buy-gold__close {
	position: absolute;
	right: 0;
	top: 12.8vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close_gray.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2
}

.gosc-buy-gold__result-close {
	position: absolute;
	right: 0;
	top: 2.13333vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2
}

.gosc-buy-gold__change-close {
	position: absolute;
	left: 1.06667vw;
	top: 50%;
	transform: translateY(-50%);
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/back.png) no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__change .bank-select:after {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__change-bigRecharge:after {
	content: "";
	display: block;
	width: 1.33333vw;
	height: 2.4vw;
	position: absolute;
	right: 1px;
	top: 0;
	transform: translateY(50%);
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__coupon {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0;
	overflow: hidden
}

.gosc-buy-gold__coupon-list {
	padding: 4.53333vw 4.26667vw 5.86667vw;
	text-align: left;
	position: relative
}

.gosc-buy-gold__coupon-list:before {
	content: "";
	position: absolute;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_unselect.png) center center no-repeat;
	background-size: 100% 100%;
	width: 5.33333vw;
	height: 5.33333vw;
	right: 3.2vw;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-buy-gold__coupon-list-last:before {
	content: "";
	position: absolute;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_unselect.png) center center no-repeat;
	background-size: 100% 100%;
	width: 5.33333vw;
	height: 5.33333vw;
	right: 3.2vw;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-buy-gold__coupon .coupon-disabled:before {
	width: 4vw;
	height: 4vw;
	border-radius: 50%;
	background: none;
	border: 1px solid #cccccc
}

.coupon-select:before {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

:export {
	prefix: gosc
}

.gosc-bank-list__paymethod {
	padding: 5.06667vw 0;
	position: relative;
	margin: 0 3.2vw
}

.gosc-bank-list__paymethod-title {
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000;
	position: absolute;
	left: 0;
	top: 5.33333vw
}

.gosc-bank-list__paymethod-value {
	text-align: right;
	padding-right: 1.6vw
}

.gosc-bank-list__paymethod-value-bankname {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: flex-end
}

.gosc-bank-list__paymethod-value-bankname>span {
	vertical-align: middle;
	display: inline-block
}

.gosc-bank-list__paymethod-value-subtitle {
	line-height: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding-top: 1.06667vw
}

.gosc-bank-list__paymethod-value-subtitle>span {
	color: #eb9654
}

.gosc-bank-list__paymethod-value-subtitle>i {
	color: #f53137;
	font-style: normal
}

.gosc-bank-list__paymethod-value-operate {
	position: relative;
	height: 3.73333vw;
	line-height: 3.73333vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #000 !important;
	margin-left: 1.6vw;
	padding: 0 1.86667vw
}

.gosc-bank-list__paymethod-value-operate:after {
	border-radius: 1.33333vw
}

.gosc-bank-list__paymethod .pr16 {
	padding-right: 4.26667vw
}

.gosc-bank-list__arrow {
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	vertical-align: top;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-bank-list__logo {
	width: 4vw;
	height: 4vw;
	background: url(https://storage.jd.com/payment-assets/sdk/bank/CMBC.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 1.33333vw;
	display: inline-block;
	vertical-align: middle
}

.gosc-bank-list__change {
	position: relative;
	width: 100%;
	background-color: #f4f3f8;
	border-radius: 2.13333vw 2.13333vw 0 0;
	overflow: hidden
}

.gosc-bank-list__change-header {
	position: relative;
	text-align: center;
	line-height: 6.66667vw;
	padding: 3.73333vw 11.73333vw;
	font-size: 4.8vw;
	font-family: PingFang SC;
	color: #333
}

.gosc-bank-list__change-header span {
	font-weight: 500
}

.gosc-bank-list__change-close {
	position: absolute;
	left: 1.06667vw;
	top: 50%;
	transform: translateY(-50%);
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/back.png) no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list__change-bank {
	margin: 0;
	list-style: none;
	padding: 2.66667vw 3.2vw 10.66667vw
}

.gosc-bank-list__change-bank li {
	align-items: center;
	list-style: none;
	padding: 3.73333vw 3.2vw;
	background-color: #fff;
	border-radius: 1.06667vw;
	margin-bottom: 2.66667vw
}

.gosc-bank-list__change-bank li:after {
	border-bottom-width: 1px
}

.gosc-bank-list__change-bank li:last-child {
	margin-bottom: 0
}

.gosc-bank-list__change-list {
	margin: 0;
	list-style: none;
	padding: 0 4.26667vw 4.26667vw
}

.gosc-bank-list__change-list li {
	width: 100%;
	height: 18.66667vw;
	display: flex;
	align-items: center;
	list-style: none
}

.gosc-bank-list__change-list li:after {
	border-bottom-width: 1px
}

.gosc-bank-list__change-wrap {
	display: flex;
	align-items: center;
	position: relative
}

.gosc-bank-list__change-wrap:after {
	content: "";
	position: absolute;
	width: 4vw;
	height: 4vw;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	border: 1px solid #dddddd;
	border-radius: 50%
}

.gosc-bank-list__change .bank-select:after {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list__change-icon {
	flex-shrink: 0;
	width: 5.33333vw;
	height: 5.33333vw;
	margin-right: 1.33333vw
}

.gosc-bank-list__change-icon img {
	display: block;
	width: 5.33333vw;
	height: 5.33333vw
}

.gosc-bank-list__change-text {
	align-items: center;
	margin: 0;
	flex: 1;
	overflow: hidden;
	line-height: 5.6vw;
	display: flex;
	font-size: 4vw;
	font-family: PingFang SC
}

.gosc-bank-list__change-text dt {
	font-weight: 500;
	color: #000
}

.gosc-bank-list__change-text dd {
	color: #666;
	margin-left: 2.66667vw
}

.gosc-bank-list__change-text dt,
.gosc-bank-list__change-text dd {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.gosc-bank-list__change-tip {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #eb9654;
	margin-top: 1.06667vw
}

.gosc-bank-list__change-des {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	margin-top: 1.06667vw
}

.gosc-bank-list__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list__change-btns {
	padding-top: 3.2vw;
	display: flex;
	align-items: center
}

.gosc-bank-list__change-btns span {
	text-align: center;
	margin-right: 2.66667vw;
	padding: 0 3.2vw;
	height: 6.66667vw;
	line-height: 6.66667vw;
	border: 1px solid rgb(235, 150, 84);
	border-radius: 3.46667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #eb9654
}

.gosc-bank-list__change-line {
	height: 1px;
	background: #eee;
	margin: 3.73333vw 0
}

.gosc-bank-list__change-bigRecharge {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666;
	position: relative
}

.gosc-bank-list__change-bigRecharge:after {
	content: "";
	display: block;
	width: 1.33333vw;
	height: 2.4vw;
	position: absolute;
	right: 1px;
	top: 0;
	transform: translateY(50%);
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

@keyframes jdCfGoldBuyCompRefreshAssetsAni-132baded {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

.gosc-bank-list__assets-refresh {
	width: 3.2vw;
	height: 3.2vw;
	margin-left: 1.06667vw;
	background-size: 100% 100%;
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/refresh.png)
}

.gosc-bank-list__assets-refresh--loading {
	animation: jdCfGoldBuyCompRefreshAssetsAni-132baded .5s linear infinite
}

.xjk-arrow {
	width: 1.6vw;
	height: 2.66667vw;
	margin-left: 1.06667vw
}

:export {
	prefix: gosc
}

.gosc-card-buy {
	position: relative;
	padding-bottom: 10.66667vw
}

.gosc-card-buy__header {
	height: 9.86667vw;
	padding-bottom: 2.66667vw;
	background: #f4f3f8;
	border-radius: 4.26667vw 4.26667vw 0 0;
	position: relative;
	line-height: 9.86667vw;
	text-align: center
}

.gosc-card-buy__header .color-red {
	color: #f53137
}

.gosc-card-buy__header .color-green {
	color: #54ae76
}

.gosc-card-buy__header-title {
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #333;
	padding-left: 3.2vw
}

.gosc-card-buy__header-value {
	font-size: 3.46667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #000;
	padding-left: 2.13333vw
}

.gosc-card-buy__main {
	border-top-right-radius: 2.66667vw;
	border-top-left-radius: 2.66667vw;
	margin-top: -2.66667vw;
	background: #fff;
	padding: 0 3.2vw 3.73333vw;
	position: relative
}

.gosc-card-buy__main .select {
	background: rgba(235, 150, 84, .16);
	color: #b66221
}

.gosc-card-buy__main-head {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buygold_head_bg.png) center center no-repeat;
	width: 45.33333vw;
	height: 7.46667vw;
	background-size: 100% 100%;
	line-height: 7.46667vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #b66221;
	text-align: center;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-buy__main-head img {
	width: 2.93333vw;
	margin-right: .53333vw;
	display: inline-block
}

.gosc-card-buy__main-money {
	display: flex;
	align-items: center;
	padding: 4.26667vw 0 0
}

.gosc-card-buy__main-money>span {
	display: inline-block;
	height: 6.4vw;
	line-height: 6.4vw;
	background: #f4f3f8;
	border-radius: 6.13333vw;
	text-align: center;
	font-size: 3.2vw;
	font-family: PingFangSC-Semibold;
	font-weight: 600;
	color: #999;
	margin-right: 2.66667vw;
	padding: 0 3.2vw
}

.gosc-card-buy__main-input {
	padding-top: 6.4vw
}

.gosc-card-buy__main-bottom {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding: 4.26667vw 0 0;
	height: 9.06667vw
}

.gosc-card-buy__content {
	background-color: #fff;
	margin: 2.66667vw auto 0;
	width: 100%
}

.gosc-card-buy__content--order {
	margin-top: 0
}

.gosc-card-buy__content--order .gosc-card-buy__paymethod,
.gosc-card-buy__content--order .gosc-card-buy__coupon {
	margin: 0 5.33333vw
}

.gosc-card-buy__logo {
	width: 4vw;
	height: 4vw;
	background: url(https://storage.jd.com/payment-assets/sdk/bank/CMBC.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 1.33333vw;
	display: inline-block;
	vertical-align: middle
}

.gosc-card-buy__arrow {
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	vertical-align: top;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-card-buy__coupon {
	display: flex;
	align-items: center;
	padding: 4.53333vw 0;
	position: relative;
	margin: 0 3.2vw
}

.gosc-card-buy__coupon-title {
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000
}

.gosc-card-buy__coupon-num {
	height: 4.8vw;
	background: rgba(239, 64, 52, .08);
	border-radius: .53333vw;
	line-height: 4.8vw;
	font-size: 2.93333vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #ef4034;
	padding: 0 1.06667vw;
	margin-left: 2.13333vw
}

.gosc-card-buy__coupon-value {
	line-height: 5.06667vw;
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #333;
	flex: 1;
	text-align: right;
	padding-right: 4.26667vw
}

.gosc-card-buy__coupon-err {
	display: flex;
	align-items: center
}

.gosc-card-buy__coupon-err-title {
	font-size: 4vw;
	font-family: PingFang HK;
	font-weight: 400;
	color: #000
}

.gosc-card-buy__coupon-err-text {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #ff4144
}

.gosc-card-buy__coupon-err-btn {
	margin-left: 1.06667vw;
	width: 4.26667vw;
	height: 4.26667vw;
	background: url(https://img20.360buyimg.com/img/jfs/t1/276820/26/27226/546/6809ce45F2e4de338/f5a4a70f758a0796.png) no-repeat;
	background-size: contain
}

.gosc-card-buy__coupon-err-loadingText {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000
}

.gosc-card-buy__agreement {
	padding: 0 4.26667vw;
	margin-top: 8.53333vw
}

.gosc-card-buy__agreement em {
	color: #cc8c4e;
	font-style: normal
}

.gosc-card-buy__bottom {
	padding: 0 4.26667vw;
	margin-top: 4.26667vw;
	display: flex;
	align-items: center
}

.gosc-card-buy__bottom-btn {
	position: relative;
	width: 100%
}

.gosc-card-buy__bottom-icon {
	width: 12.8vw;
	height: 12.8vw;
	margin-right: 3.2vw
}

.gosc-card-buy__bottom-icon img {
	width: 100%
}

.gosc-card-buy__order-header {
	position: relative;
	padding: 6.93333vw 5.33333vw 5.6vw;
	background-color: #fff;
	border-top-right-radius: 2.66667vw;
	border-top-left-radius: 2.66667vw;
	margin-top: -2.66667vw
}

.gosc-card-buy__order-title {
	line-height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #000;
	text-shadow: 0 1.06667vw 3.2vw rgba(0, 17, 91, .08)
}

.gosc-card-buy__order-sub-title {
	margin-top: 2.13333vw;
	line-height: 5.33333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	display: flex;
	align-items: center
}

.gosc-card-buy__order-sub-title-i {
	display: inline-block;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	margin-left: 1.06667vw
}

.gosc-card-buy__order-sub-title:last-child {
	margin-top: 0
}

.gosc-card-buy__order-form {
	padding: 0 5.33333vw
}

.gosc-card-buy__btn-tips {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	margin-top: 4.26667vw;
	text-align: center
}

 .largeAmountBtn {
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000;
	font-style: normal;
	display: inline-flex;
	align-items: center
}

 .largeAmountBtn:after {
	content: "";
	width: 1.33333vw;
	height: 2.4vw;
	margin-left: 1.33333vw;
	background: url(https://img10.360buyimg.com/img/jfs/t1/278361/37/18708/299/67f88501Fe9926022/92d162e93a623219.png) no-repeat;
	background-size: contain
}

.jr-aks-sec-keyboard .pct101 li .ensure {
	background: #f78e47 !important;
	box-shadow: inset 0 -1px #ef4034 !important
}

.gosc-card-buy__main-bottom>span {
	color: #ef4034
}

:export {
	prefix: gosc
}

.gosc-card-result {
	position: relative
}

.gosc-card-result__header {
	position: relative;
	padding: 8.53333vw 0 0 5.33333vw;
	display: flex;
	align-items: center
}

.gosc-card-result__header-icon {
	width: 6.93333vw;
	height: 6.93333vw;
	display: inline-block
}

.gosc-card-result__header .icon-success {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_success.png);
	background-size: 100% 100%
}

.gosc-card-result__header .icon-fail {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_fail.png);
	background-size: 100% 100%
}

.gosc-card-result__header .icon-pending {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_pending.png);
	background-size: 100% 100%
}

.gosc-card-result__header-title {
	line-height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFangSC-Semibold;
	font-weight: 600;
	color: #333;
	text-shadow: 0 2.13333vw 6.4vw rgba(0, 17, 91, .08);
	padding-left: 1.33333vw
}

.gosc-card-result__header-community-activit {
	line-height: 5.33333vw;
	display: flex;
	align-items: center;
	padding: 0 5.33333vw;
	margin-top: 1.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400
}

.gosc-card-result__header-community-activit-mainTitle {
	margin-right: 2.66667vw
}

.gosc-card-result__header-community-activit-subTitle {
	flex-shrink: 0;
	margin-right: 2.66667vw
}

.gosc-card-result__header-community-activit-btn {
	flex-shrink: 0;
	margin-left: auto
}

.gosc-card-result__header-community-activit-icon {
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/256283/11/11057/440/6784a504Fe22d8e70/17ac6359f16c5cf9.png) no-repeat;
	background-size: cover;
	margin-left: 1.33333vw
}

.gosc-card-result__switch {
	width: 100%;
	margin-top: 8vw
}

.gosc-card-result__switch dl {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 3.73333vw 0;
	margin: 0
}

.gosc-card-result__switch dl dt {
	flex: 1;
	padding-left: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold-tip.png) left center no-repeat;
	background-size: 3.73333vw 3.73333vw
}

.gosc-card-result__switch dl dt h4 {
	font-size: 4.26667vw;
	color: #333;
	line-height: 6.13333vw;
	margin: 0
}

.gosc-card-result__switch dl dt p {
	margin: 0;
	font-size: 2.93333vw;
	color: #999;
	line-height: 4vw
}

.gosc-card-result__switch dl dd {
	flex-shrink: 0;
	margin: 0 0 0 1.33333vw
}

.gosc-card-result__switch-btn {
	position: relative;
	width: 13.06667vw;
	height: 7.46667vw;
	background-color: rgba(120, 120, 128, .16);
	border-radius: 3.73333vw;
	cursor: pointer;
	transition: background-color .3s
}

.gosc-card-result__switch-btn i {
	position: absolute;
	top: .53333vw;
	left: .53333vw;
	width: 6.4vw;
	height: 6.4vw;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 .8vw 1px rgba(0, 0, 0, .05);
	transition: transform .3s cubic-bezier(.3, 1.05, .4, 1.05)
}

.gosc-card-result__switch-btn--on {
	background-color: #eb9654
}

.gosc-card-result__switch-btn--on i {
	transform: translate(5.6vw)
}

.gosc-card-result__detail {
	margin-top: 2.66667vw
}

.gosc-card-result__detail dl {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 2.66667vw 0 0
}

.gosc-card-result__detail dl:first-child {
	margin: 0
}

.gosc-card-result__detail dl dt {
	width: 40%;
	font-size: 3.73333vw;
	color: #333;
	line-height: 5.33333vw
}

.gosc-card-result__detail dl dd {
	width: 60%;
	font-size: 3.73333vw;
	color: #999;
	text-align: right;
	line-height: 5.33333vw
}

.gosc-card-result__success {
	padding: 8vw 5.33333vw
}

.gosc-card-result__pending {
	padding-top: 1.33333vw
}

.gosc-card-result__pending-title {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #666;
	padding-left: 13.86667vw
}

.gosc-card-result__pending-btn {
	height: 13.33333vw;
	line-height: 13.33333vw;
	border: 1px solid #cccccc;
	border-radius: 6.66667vw;
	text-align: center;
	margin: 8vw 9.06667vw;
	font-size: 4.26667vw
}

.gosc-card-result__fail {
	position: relative;
	padding: 0 5.33333vw 8vw
}

.gosc-card-result__fail-desc {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #666;
	padding: 1.33333vw 0 0 7.46667vw
}

.gosc-card-result__step {
	position: relative;
	margin: 6.4vw 0px 0px
}

.gosc-card-result__step-item {
	position: relative;
	padding-left: 7.46667vw;
	padding-bottom: 4.26667vw;
	text-align: left
}

.gosc-card-result__step-item dl {
	margin: 0
}

.gosc-card-result__step-item dt {
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	color: #aaa;
	font-weight: 500
}

.gosc-card-result__step-item dd {
	margin: .8vw 0 0;
	font-size: 3.2vw;
	color: #aaa;
	line-height: 4.53333vw
}

.gosc-card-result__step-item:last-child .gosc-card-loading__step-line {
	display: none
}

.gosc-card-result__step-item--right dt,
.gosc-card-result__step-item--loading dt {
	color: #333
}

.gosc-card-result__step-item--right .gosc-card-loading__step-icon,
.gosc-card-result__step-item--loading .gosc-card-loading__step-icon {
	font-size: 0;
	border-color: #eb9654
}

.gosc-card-result__step-item--right .gosc-card-loading__step-line,
.gosc-card-result__step-item--loading .gosc-card-loading__step-line {
	background-color: #eb9654
}

.gosc-card-result__step-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 5.33333vw;
	height: 5.33333vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 50%;
	box-sizing: border-box
}

.gosc-card-result__step-right {
	width: 3.2vw;
	height: 3.2vw
}

.gosc-card-result__step-right svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #eb9654
}

.gosc-card-result__step-num {
	font-size: 3.46667vw;
	color: #ccc;
	line-height: 4.8vw;
	font-style: normal
}

.gosc-card-result__step-line {
	position: absolute;
	top: 5.33333vw;
	left: 2.53333vw;
	width: 1px;
	height: calc(100% - 5.33333vw);
	background-color: #ccc
}

.gosc-card-result__bottom {
	margin-top: 10.66667vw
}

.gosc-card-result__bottom-btn {
	margin-top: 8vw;
	padding: 0
}

.gosc-card-result__bottom-btn--flex {
	display: flex;
	justify-content: space-between
}

.gosc-card-result__bottom-btn--flex button {
	width: 42.66667vw
}

.gosc-card-result__bottom-tips {
	text-align: center;
	margin-top: 4.26667vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__bottom-cancel {
	width: 100%;
	padding: 4.26667vw 0;
	text-align: center;
	color: #666;
	font-size: 3.46667vw;
	line-height: 5.06667vw
}

.gosc-card-result__header-prize {
	margin: 1.33333vw auto auto 5.33333vw;
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #f78e47
}

.gosc-card-result__header-prize-arrow {
	display: inline-block;
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow.png);
	background-size: 100% 100%;
	vertical-align: middle;
	margin-top: -.8vw
}

.gosc-card-result__success-order {
	padding: 0 5.33333vw
}

.gosc-card-result__success-order-money {
	margin-top: 3.46667vw;
	line-height: 8vw;
	font-size: 6.66667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #030303
}

.gosc-card-result__success-order-step {
	margin-top: 5.33333vw;
	border-top: 1px solid rgba(0, 0, 0, .06);
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	padding: 5.33333vw 0
}

.gosc-card-result__success-order-step-item {
	display: flex
}

.gosc-card-result__success-order-step-item-left {
	margin-right: 2.13333vw;
	display: flex;
	flex-direction: column;
	align-items: center
}

.gosc-card-result__success-order-step-item-left-icon {
	width: 5.33333vw;
	height: 5.33333vw;
	border: 1px solid #999999;
	border-radius: 2.93333vw;
	text-align: center;
	line-height: 5.33333vw;
	font-size: 3.46667vw;
	font-family: JR;
	font-weight: 400;
	color: #999;
	font-family: UDC105-Bold;
	display: flex;
	align-items: center;
	justify-content: center
}

.gosc-card-result__success-order-step-item-left-icon span {
	display: block;
	width: 2.66667vw;
	height: 2.13333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/green_tick.png);
	background-size: 100% 100%
}

.gosc-card-result__success-order-step-item-left-icon--active {
	border: 1px solid #3dc071
}

.gosc-card-result__success-order-step-item-left-line {
	width: 1px;
	height: 8.8vw;
	background: #ccc
}

.gosc-card-result__success-order-step-item-right-title {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__success-order-step-item-right-title--active {
	color: #333
}

.gosc-card-result__success-order-step-item-right-sub-title {
	margin-top: .8vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__success-order-info {
	margin-top: 1.86667vw;
	display: flex;
	justify-content: space-between;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-result__success-order-info:last-child {
	margin-top: 1.86667vw
}

.gosc-buy-gold {
	position: relative;
	z-index: 9
}

.gosc-buy-gold__wrap {
	position: relative;
	width: 100%
}

.gosc-buy-gold__content {
	position: relative;
	width: 100%;
	min-height: 53.33333vw;
	background: #f4f3f8;
	border-radius: 2.66667vw 2.66667vw 0 0;
	z-index: 1
}

.gosc-buy-gold__content--order {
	background: #fff
}

.gosc-buy-gold__result {
	position: relative;
	width: 100%;
	min-height: 53.33333vw;
	background: #f4f3f8 url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/gold-bg.png) top center no-repeat;
	background-size: 100% auto;
	border-radius: 2.66667vw 2.66667vw 0 0;
	z-index: 1
}

.gosc-buy-gold__close {
	position: absolute;
	right: 0;
	top: 1.8vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close_gray.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2
}

.gosc-buy-gold__content--order .gosc-buy-gold__close {
	top: 12.8vw
}

.gosc-buy-gold__result-close {
	position: absolute;
	right: 0;
	top: 2.13333vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%;
	z-index: 2
}

.gosc-buy-gold__change {
	position: relative;
	width: 100%;
	background-color: #f4f3f8;
	border-radius: 2.13333vw 2.13333vw 0 0;
	overflow: hidden
}

.gosc-buy-gold__change-header {
	position: relative;
	text-align: center;
	line-height: 6.66667vw;
	padding: 3.73333vw 11.73333vw;
	font-size: 4.8vw;
	font-family: PingFang SC;
	color: #333
}

.gosc-buy-gold__change-header span {
	font-weight: 500
}

.gosc-buy-gold__change-close {
	position: absolute;
	left: 1.06667vw;
	top: 50%;
	transform: translateY(-50%);
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/back.png) no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__change-bank {
	margin: 0;
	list-style: none;
	padding: 2.66667vw 3.2vw 10.66667vw
}

.gosc-buy-gold__change-bank li {
	align-items: center;
	list-style: none;
	padding: 3.73333vw 3.2vw;
	background-color: #fff;
	border-radius: 1.06667vw;
	margin-bottom: 2.66667vw
}

.gosc-buy-gold__change-bank li:after {
	border-bottom-width: 1px
}

.gosc-buy-gold__change-bank li:last-child {
	margin-bottom: 0
}

.gosc-buy-gold__change-list {
	margin: 0;
	list-style: none;
	padding: 0 4.26667vw 4.26667vw
}

.gosc-buy-gold__change-list li {
	width: 100%;
	height: 18.66667vw;
	display: flex;
	align-items: center;
	list-style: none
}

.gosc-buy-gold__change-list li:after {
	border-bottom-width: 1px
}

.gosc-buy-gold__change-wrap {
	display: flex;
	align-items: center;
	position: relative
}

.gosc-buy-gold__change-wrap:after {
	content: "";
	position: absolute;
	width: 4vw;
	height: 4vw;
	right: 0;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	border: 1px solid #DDDDDD;
	border-radius: 50%
}

.gosc-buy-gold__change .bank-select:after {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__change-icon {
	flex-shrink: 0;
	width: 5.33333vw;
	height: 5.33333vw;
	margin-right: 1.33333vw
}

.gosc-buy-gold__change-icon img {
	display: block;
	width: 5.33333vw;
	height: 5.33333vw
}

.gosc-buy-gold__change-text {
	margin: 0;
	flex: 1;
	overflow: hidden;
	line-height: 5.6vw;
	display: flex;
	font-size: 4vw;
	font-family: PingFang SC
}

.gosc-buy-gold__change-text dt {
	font-weight: 500;
	color: #000
}

.gosc-buy-gold__change-text dd {
	color: #666;
	margin-left: 2.66667vw
}

.gosc-buy-gold__change-text dt,
.gosc-buy-gold__change-text dd {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.gosc-buy-gold__change-tip {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #eb9654;
	margin-top: 1.06667vw
}

.gosc-buy-gold__change-des {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999;
	margin-top: 1.06667vw
}

.gosc-buy-gold__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__change-btns {
	padding-top: 3.2vw;
	display: flex;
	align-items: center
}

.gosc-buy-gold__change-btns span {
	text-align: center;
	margin-right: 2.66667vw;
	padding: 0 3.2vw;
	height: 6.66667vw;
	line-height: 6.66667vw;
	border: 1px solid rgb(235, 150, 84);
	border-radius: 3.46667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #eb9654
}

.gosc-buy-gold__change-line {
	height: 1px;
	background: #eee;
	margin: 3.73333vw 0
}

.gosc-buy-gold__change-bigRecharge {
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #666;
	position: relative
}

.gosc-buy-gold__change-bigRecharge:after {
	content: "";
	display: block;
	width: 1.33333vw;
	height: 2.4vw;
	position: absolute;
	right: 1px;
	top: 0;
	transform: translateY(50%);
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-buy-gold__coupon {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0;
	overflow: hidden;
	padding-bottom: 9.06667vw
}

.gosc-buy-gold__coupon-header {
	position: relative;
	font-size: 5.33333vw;
	text-align: center;
	color: #333;
	line-height: 7.46667vw;
	padding: 5.33333vw 11.73333vw
}

.gosc-buy-gold__coupon-header span {
	font-weight: 600
}

.gosc-buy-gold__coupon-wrap {
	max-height: 64vw;
	overflow: scroll
}

.gosc-buy-gold__coupon-list {
	padding: 4.53333vw 0 5.86667vw;
	margin: 0 4.26667vw;
	text-align: left;
	position: relative
}

.gosc-buy-gold__coupon-list-value {
	height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #eb9654
}

.gosc-buy-gold__coupon-list-date {
	height: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	color: #999;
	padding-top: 1.06667vw
}

.gosc-buy-gold__coupon-list:before {
	content: "";
	position: absolute;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_unselect.png) center center no-repeat;
	background-size: 100% 100%;
	width: 5.33333vw;
	height: 5.33333vw;
	right: 3.2vw;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-buy-gold__coupon-list-last {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #333;
	margin: 0 4.26667vw;
	padding: 7.2vw 0
}

.gosc-buy-gold__coupon-list-last:before {
	content: "";
	position: absolute;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_unselect.png) center center no-repeat;
	background-size: 100% 100%;
	width: 5.33333vw;
	height: 5.33333vw;
	right: 3.2vw;
	top: 50%;
	transform: translate3d(0, -50%, 0)
}

.gosc-buy-gold__coupon .coupon-disabled div[class*=value] {
	color: #999
}

.gosc-buy-gold__coupon .coupon-disabled:before {
	width: 4.53333vw;
	height: 4.53333vw;
	border-radius: 50%;
	background: #d8d8d8
}

.coupon-select {
	position: relative
}

.coupon-select:before {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

:export {
	prefix: gosc
}

.gosc-bank-list__paymethod {
	position: relative;
	padding: 5.06667vw 0;
	margin: 0 3.2vw
}

.gosc-bank-list__paymethod-title {
	position: absolute;
	top: 5.33333vw;
	left: 0;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	color: #000;
	line-height: 5.6vw;
	font-weight: 500
}

.gosc-bank-list__paymethod-value {
	padding-right: 1.6vw;
	text-align: right
}

.gosc-bank-list__paymethod-value-bankname {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	color: #000;
	line-height: 5.33333vw;
	font-weight: 500
}

.gosc-bank-list__paymethod-value-bankname>span {
	vertical-align: middle;
	display: inline-block
}

.gosc-bank-list__paymethod-value-subtitle {
	padding-top: 1.06667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	color: #999;
	line-height: 4.26667vw;
	font-weight: 400
}

.gosc-bank-list__paymethod-value-subtitle>span {
	color: #eb9654
}

.gosc-bank-list__paymethod-value-subtitle>i {
	color: #f53137;
	font-style: normal
}

.gosc-bank-list__paymethod-value-operate {
	position: relative;
	padding: 0 1.86667vw;
	margin-left: 1.6vw;
	height: 3.73333vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	color: #000 !important;
	line-height: 3.73333vw;
	font-weight: 400
}

.gosc-bank-list__paymethod-value-operate:after {
	border-radius: 1.33333vw
}

.gosc-bank-list__paymethod .pr16 {
	padding-right: 4.26667vw
}

.gosc-bank-list__arrow {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	transform: translate3d(0, -50%, 0)
}

.gosc-bank-list__logo {
	display: inline-block;
	margin-right: 1.33333vw;
	width: 4vw;
	height: 4vw;
	background: url(https://storage.jd.com/payment-assets/sdk/bank/CMBC.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: middle
}

.gosc-bank-list__change {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: #f4f3f8;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-bank-list__change-header {
	position: relative;
	padding: 3.73333vw 11.73333vw;
	font-size: 4.8vw;
	font-family: PingFang SC;
	text-align: center;
	color: #333;
	line-height: 6.66667vw
}

.gosc-bank-list__change-header span {
	font-weight: 500
}

.gosc-bank-list__change-close {
	position: absolute;
	top: 50%;
	left: 1.06667vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/back.png) no-repeat;
	background-size: 100% 100%;
	transform: translateY(-50%)
}

.gosc-bank-list__change-bank {
	padding: 2.66667vw 3.2vw 10.66667vw;
	margin: 0;
	list-style: none
}

.gosc-bank-list__change-bank li {
	align-items: center;
	padding: 3.73333vw 3.2vw;
	margin-bottom: 2.66667vw;
	background-color: #fff;
	border-radius: 1.06667vw;
	list-style: none
}

.gosc-bank-list__change-bank li:after {
	border-bottom-width: 1px
}

.gosc-bank-list__change-bank li:last-child {
	margin-bottom: 0
}

.gosc-bank-list__change-list {
	padding: 0 4.26667vw 4.26667vw;
	margin: 0;
	list-style: none
}

.gosc-bank-list__change-list li {
	display: flex;
	align-items: center;
	width: 100%;
	height: 18.66667vw;
	list-style: none
}

.gosc-bank-list__change-list li:after {
	border-bottom-width: 1px
}

.gosc-bank-list__change-wrap {
	position: relative;
	display: flex;
	align-items: center
}

.gosc-bank-list__change-wrap:after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 4vw;
	height: 4vw;
	border: 1px solid #ddd;
	border-radius: 50%;
	content: "";
	transform: translate3d(0, -50%, 0)
}

.gosc-bank-list__change .bank-select:after {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list__change-icon {
	margin-right: 1.33333vw;
	width: 5.33333vw;
	height: 5.33333vw;
	flex-shrink: 0
}

.gosc-bank-list__change-icon img {
	display: block;
	width: 5.33333vw;
	height: 5.33333vw
}

.gosc-bank-list__change-text {
	display: flex;
	overflow: hidden;
	margin: 0;
	font-size: 4vw;
	font-family: PingFang SC;
	flex: 1;
	line-height: 5.6vw
}

.gosc-bank-list__change-text dt {
	font-weight: 500;
	color: #000
}

.gosc-bank-list__change-text dd {
	margin-left: 2.66667vw;
	color: #666
}

.gosc-bank-list__change-text dt,
.gosc-bank-list__change-text dd {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.gosc-bank-list__change-tip {
	margin-top: 1.06667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #eb9654;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-bank-list__change-des {
	margin-top: 1.06667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-bank-list__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-bank-list__change-btns {
	display: flex;
	align-items: center;
	padding-top: 3.2vw
}

.gosc-bank-list__change-btns span {
	padding: 0 3.2vw;
	margin-right: 2.66667vw;
	height: 6.66667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	text-align: center;
	color: #eb9654;
	border: 1px solid rgb(235, 150, 84);
	border-radius: 3.46667vw;
	line-height: 6.66667vw;
	font-weight: 600
}

.gosc-bank-list__change-line {
	margin: 3.73333vw 0;
	height: 1px;
	background: #eee
}

.gosc-bank-list__change-bigRecharge {
	position: relative;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #666;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-bank-list__change-bigRecharge:after {
	position: absolute;
	top: 0;
	right: 1px;
	display: block;
	width: 1.33333vw;
	height: 2.4vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%;
	content: "";
	transform: translateY(50%)
}

.xjk-arrow {
	margin-left: 1.06667vw;
	width: 1.6vw;
	height: 2.66667vw
}

:export {
	prefix: gosc
}

.gosc-protocol-list__change {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-protocol-list__change-header {
	position: relative;
	padding: 5.33333vw 11.73333vw;
	font-size: 5.33333vw;
	text-align: center;
	color: #333;
	line-height: 7.46667vw
}

.gosc-protocol-list__change-header span {
	font-weight: 600
}

.gosc-protocol-list__change-close {
	position: absolute;
	top: 50%;
	right: 0;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%;
	transform: translateY(-50%)
}

.gosc-protocol-list__change-list {
	padding: 0 4.26667vw 4.26667vw;
	margin: 0;
	list-style: none
}

.gosc-protocol-list__change-list li {
	display: flex;
	align-items: center;
	width: 100%;
	height: 18.66667vw;
	list-style: none
}

.gosc-protocol-list__change-list li:after {
	border-bottom-width: 1px
}

.gosc-protocol-list__change-icon {
	margin-right: 3.2vw;
	width: 8vw;
	height: 8vw;
	flex-shrink: 0
}

.gosc-protocol-list__change-icon img {
	display: block;
	width: 100%;
	height: 100%
}

.gosc-protocol-list__change-text {
	overflow: hidden;
	margin: 0;
	flex: 1
}

.gosc-protocol-list__change-text dt {
	font-size: 4.26667vw;
	line-height: 6.13333vw;
	color: #333;
	font-weight: 500
}

.gosc-protocol-list__change-text dd {
	margin: .53333vw 0 0;
	font-size: 3.2vw;
	color: #ccc;
	line-height: 4.26667vw
}

.gosc-protocol-list__change-text dt,
.gosc-protocol-list__change-text dd {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.gosc-protocol-list__change-checked {
	margin: 0 1.6vw .53333vw 2.66667vw;
	width: 1.6vw;
	height: 3.2vw;
	flex-shrink: 0;
	transform: rotate(45deg);
	border-right: .53333vw solid #eb9654;
	border-bottom: .53333vw solid #eb9654
}

.gosc-protocol-list__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

:export {
	prefix: gosc
}

.gosc-card-sell {
	position: relative;
	background-image: linear-gradient(to bottom, rgba(244, 243, 248, 0) 0, #f4f3f8 26.66667vw, #f4f3f8)
}

.gosc-card-sell__header {
	position: relative;
	padding-bottom: 2.66667vw;
	margin-bottom: -2.66667vw;
	height: 9.86667vw;
	text-align: center;
	background: #f4f3f8;
	border-radius: 4.26667vw 4.26667vw 0 0;
	line-height: 9.86667vw
}

.gosc-card-sell__header .color-red {
	color: #f53137
}

.gosc-card-sell__header .color-green {
	color: #54ae76
}

.gosc-card-sell__header-title {
	padding-left: 3.2vw;
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	color: #333;
	font-weight: 400
}

.gosc-card-sell__header-value {
	padding-left: 2.13333vw;
	font-size: 3.46667vw;
	font-family: UDC105-Bold;
	color: #000;
	font-weight: 400
}

.gosc-card-sell__main {
	position: relative;
	padding: 0 3.2vw 3.73333vw;
	background: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-card-sell__main .select {
	color: #b66221;
	background: rgba(235, 150, 84, .16)
}

.gosc-card-sell__main-head {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 45.33333vw;
	height: 7.46667vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	text-align: center;
	color: #b66221;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buygold_head_bg.png) center center no-repeat;
	background-size: 100% 100%;
	line-height: 7.46667vw;
	font-weight: 400
}

.gosc-card-sell__main-head img {
	display: inline-block;
	margin-right: .53333vw;
	width: 2.93333vw
}

.gosc-card-sell__main-money {
	display: flex;
	align-items: center;
	padding: 4.26667vw 0 0
}

.gosc-card-sell__main-money>span {
	display: inline-block;
	padding: 0 3.2vw;
	margin-right: 2.66667vw;
	height: 6.4vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Semibold;
	text-align: center;
	color: #999;
	background: #f4f3f8;
	border-radius: 6.13333vw;
	line-height: 6.4vw;
	font-weight: 600
}

.gosc-card-sell__main-input {
	padding-top: 6.4vw
}

.gosc-card-sell__main-bottom {
	display: flex;
	align-items: center;
	padding-top: 1.06667vw;
	height: 9.06667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-card-sell__main-bottom-i {
	margin-left: .53333vw;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top
}

.gosc-card-sell__main-tipText {
	position: relative;
	display: inline-flex;
	padding-top: 0;
	padding-right: 4.26667vw;
	margin-top: 2.13333vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	color: #999;
	font-weight: 400
}

.gosc-card-sell__main-tipIcon {
	position: absolute;
	top: 50%;
	right: 0;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	transform: translateY(-50%)
}

.gosc-card-sell__content {
	margin: 2.66667vw auto 0;
	width: 100%;
	background-color: #fff
}

.gosc-card-sell__content--order {
	margin-top: 0
}

.gosc-card-sell__content--order .gosc-card-sell__paymethod,
.gosc-card-sell__content--order .gosc-card-sell__coupon {
	margin: 0 5.33333vw
}

.gosc-card-sell__logo {
	display: inline-block;
	margin-right: 1.33333vw;
	width: 4vw;
	height: 4vw;
	background: url(https://storage.jd.com/payment-assets/sdk/bank/CMBC.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: middle
}

.gosc-card-sell__arrow {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	transform: translate3d(0, -50%, 0)
}

.gosc-card-sell__paymethod {
	position: relative;
	padding: 5.06667vw 0;
	margin: 0 3.2vw
}

.gosc-card-sell__paymethod-body {
	display: flex
}

.gosc-card-sell__paymethod-body-title {
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000
}

.gosc-card-sell__paymethod-body-value {
	padding-right: 4.26667vw;
	text-align: right;
	flex: 1
}

.gosc-card-sell__paymethod-body-value-bankname {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000
}

.gosc-card-sell__paymethod-body-value-bankname>span {
	vertical-align: middle;
	display: inline-block
}

.gosc-card-sell__paymethod-body-value-noright {
	padding-right: 0
}

.gosc-card-sell__paymethod-body-subtitle {
	padding-top: 1.06667vw;
	margin-right: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	text-align: right;
	color: #999;
	line-height: 4.26667vw;
	font-weight: 400
}

.gosc-card-sell__paymethod-body-subtitle>span {
	color: #eb9654
}

.gosc-card-sell__paymethod-body-subtitle>i {
	color: #f53137;
	font-style: normal
}

.gosc-card-sell__paymethod-body-subtitle-noright {
	margin-right: 0
}

.gosc-card-sell__bottom {
	display: flex;
	align-items: center;
	padding: 4.26667vw 4.26667vw 10.66667vw
}

.gosc-card-sell__bottom-btn {
	position: relative;
	width: 100%
}

.gosc-card-sell__bottom-icon {
	margin-right: 3.2vw;
	width: 12.8vw;
	height: 12.8vw
}

.gosc-card-sell__bottom-icon img {
	width: 100%
}

.gosc-card-sell__order-header {
	position: relative;
	padding: 6.93333vw 5.33333vw 5.6vw;
	margin-top: -2.66667vw;
	background-color: #fff;
	border-top-right-radius: 2.66667vw;
	border-top-left-radius: 2.66667vw
}

.gosc-card-sell__order-title {
	line-height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #000;
	text-shadow: 0 1.06667vw 3.2vw rgba(0, 17, 91, .08)
}

.gosc-card-sell__order-sub-title {
	margin-top: 2.13333vw;
	line-height: 5.33333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-sell__order-form {
	padding: 0 5.33333vw
}

.gosc-card-sell__couponcard {
	display: flex;
	align-items: center;
	margin-top: 2.66667vw;
	height: 14.66667vw;
	background-color: #fff
}

.gosc-card-sell__couponcard-wraper {
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 2.66667vw;
	margin: 0 3.2vw;
	flex: 1
}

.gosc-card-sell__couponcard-wraper-title {
	display: flex;
	align-items: center;
	height: 5.6vw
}

.gosc-card-sell__couponcard-wraper-title-text {
	height: 5.6vw;
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFang HK;
	font-weight: 400;
	color: #000
}

.gosc-card-sell__couponcard-wraper-tip {
	display: flex;
	align-items: center;
	padding: 0 1.06667vw;
	margin-left: 2.13333vw;
	height: 4.8vw;
	font-size: 2.93333vw;
	font-family: PingFang SC;
	color: #ef4034;
	background: rgba(255, 65, 68, .1);
	border-radius: .53333vw;
	font-weight: 400
}

.gosc-card-sell__couponcard-wraper-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #333;
	flex: 1;
	font-weight: 400
}

.gosc-card-sell__couponcard-wraper-content-righticon:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1.33333vw;
	height: 2.4vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/249835/4/25263/253/67407c4aFc8bc6832/4309b9e63dfc589d.png) no-repeat;
	background-size: contain
}

.gosc-card-sell__couponcard-wraper-err {
	display: flex;
	align-items: center
}

.gosc-card-sell__couponcard-wraper-err-title {
	font-size: 4vw;
	font-family: PingFang HK;
	font-weight: 400;
	color: #000
}

.gosc-card-sell__couponcard-wraper-err-text {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #ff4144
}

.gosc-card-sell__couponcard-wraper-err-btn {
	margin-left: 1.06667vw;
	width: 4.26667vw;
	height: 4.26667vw;
	background: url(https://img20.360buyimg.com/img/jfs/t1/276820/26/27226/546/6809ce45F2e4de338/f5a4a70f758a0796.png) no-repeat;
	background-size: contain
}

.gosc-card-sell__couponcard-wraper-err-loadingText {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000
}

.gosc-card-sell__couponPop {
	position: relative;
	overflow: hidden;
	padding-bottom: 9.06667vw;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-card-sell__couponPop-header {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 13.86667vw;
	box-sizing: border-box;
	border-bottom: .5px solid rgba(0, 0, 0, .06)
}

.gosc-card-sell__couponPop-header span {
	font-size: 4.53333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000
}

.gosc-card-sell__couponPop-header-close {
	position: absolute;
	top: 1.06667vw;
	right: 1.06667vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/167214/7/52357/293/674054e4Fa697fcfc/48694d0dd15b6ac5.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-sell__couponPop-wrap {
	overflow: scroll;
	padding: 0 4.26667vw;
	max-height: 80vw
}

.gosc-card-sell__couponPop-list {
	position: relative;
	display: flex;
	justify-content: center;
	height: 21.86667vw;
	font-family: PingFang SC;
	box-sizing: border-box;
	flex-direction: column;
	border-bottom: .5px solid rgba(0, 0, 0, .06);
	font-weight: 400
}

.gosc-card-sell__couponPop-list-value {
	display: flex;
	align-items: center;
	height: 5.6vw;
	font-size: 4vw;
	font-family: PingFang SC;
	color: #eb9654;
	line-height: 5.6vw;
	font-weight: 400
}

.gosc-card-sell__couponPop-list-value-tip {
	display: inline-block;
	margin-left: 1.33333vw;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: contain
}

.gosc-card-sell__couponPop-list-date {
	margin-top: 1.06667vw;
	height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-card-sell__couponPop-list:before {
	position: absolute;
	top: 50%;
	right: 3.2vw;
	width: 5.33333vw;
	height: 5.33333vw;
	background: url(https://img13.360buyimg.com/img/jfs/t1/232621/30/31475/1395/675ae211Fc29128a1/9069ecccde369960.png) center center no-repeat;
	background-size: 100% 100%;
	content: "";
	transform: translate3d(0, -50%, 0)
}

.gosc-card-sell__couponPop-list-nouser {
	font-size: 4vw
}

.gosc-card-sell__couponPop-list-last {
	padding: 7.2vw 0;
	margin: 0 4.26667vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	color: #333;
	line-height: 5.33333vw;
	font-weight: 500
}

.gosc-card-sell__couponPop-list-last:before {
	position: absolute;
	top: 50%;
	right: 3.2vw;
	width: 5.33333vw;
	height: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_unselect.png) center center no-repeat;
	background-size: 100% 100%;
	content: "";
	transform: translate3d(0, -50%, 0)
}

.gosc-card-sell__check-money-tiptext {
	overflow: hidden;
	white-space: normal;
	line-height: 4.53333vw;
	word-break: break-all
}

.gosc-card-sell__agreement {
	margin: 4.26667vw 4.26667vw 0
}

.gosc-card-sell__agreement-content>span {
	color: #b66221
}

.couponPop-list-select {
	position: relative
}

.couponPop-list-select:before {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.couponPop-list-disabled div[class*=value] {
	color: #999
}

.couponPop-list-disabled:before {
	width: 4.53333vw;
	height: 4.53333vw;
	background: #d8d8d8;
	border-radius: 50%
}

:export {
	prefix: gosc
}

.gosc-sell-result {
	position: relative
}

.gosc-sell-result__header {
	position: relative;
	display: flex;
	align-items: center;
	padding: 8.53333vw 0 0 5.33333vw
}

.gosc-sell-result__header-icon {
	display: inline-block;
	width: 6.93333vw;
	height: 6.93333vw
}

.gosc-sell-result__header .icon-success {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_success.png);
	background-size: 100% 100%
}

.gosc-sell-result__header .icon-fail {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_fail.png);
	background-size: 100% 100%
}

.gosc-sell-result__header .icon-pending {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_pending.png);
	background-size: 100% 100%
}

.gosc-sell-result__header-title {
	padding-left: 1.33333vw;
	font-size: 5.86667vw;
	font-family: PingFangSC-Semibold;
	color: #333;
	text-shadow: 0 2.13333vw 6.4vw rgba(0, 17, 91, .08);
	line-height: 7.46667vw;
	font-weight: 600
}

.gosc-sell-result__header-community-activit {
	line-height: 5.33333vw;
	display: flex;
	align-items: center;
	padding: 0 5.33333vw;
	margin-top: 1.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400
}

.gosc-sell-result__header-community-activit-mainTitle {
	margin-right: 2.66667vw
}

.gosc-sell-result__header-community-activit-subTitle {
	flex-shrink: 0;
	margin-right: 2.66667vw
}

.gosc-sell-result__header-community-activit-btn {
	flex-shrink: 0;
	margin-left: auto
}

.gosc-sell-result__header-community-activit-icon {
	margin-left: 1.33333vw;
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/256283/11/11057/440/6784a504Fe22d8e70/17ac6359f16c5cf9.png) no-repeat;
	background-size: cover
}

.gosc-sell-result__header-subtitle {
	padding: 1.33333vw 0 0 13.86667vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	color: #666;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-sell-result__switch {
	margin-top: 8vw;
	width: 100%
}

.gosc-sell-result__switch dl {
	display: flex;
	align-items: center;
	padding: 3.73333vw 0;
	margin: 0;
	width: 100%
}

.gosc-sell-result__switch dl dt {
	flex: 1;
	padding-left: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold-tip.png) left center no-repeat;
	background-size: 3.73333vw 3.73333vw
}

.gosc-sell-result__switch dl dt h4 {
	margin: 0;
	font-size: 4.26667vw;
	color: #333;
	line-height: 6.13333vw
}

.gosc-sell-result__switch dl dt p {
	margin: 0;
	font-size: 2.93333vw;
	color: #999;
	line-height: 4vw
}

.gosc-sell-result__switch dl dd {
	flex-shrink: 0;
	margin: 0 0 0 1.33333vw
}

.gosc-sell-result__switch-btn {
	position: relative;
	width: 13.06667vw;
	height: 7.46667vw;
	background-color: rgba(120, 120, 128, .16);
	border-radius: 3.73333vw;
	cursor: pointer;
	transition: background-color .3s
}

.gosc-sell-result__switch-btn i {
	position: absolute;
	top: .53333vw;
	left: .53333vw;
	width: 6.4vw;
	height: 6.4vw;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 .8vw 1px rgba(0, 0, 0, .05);
	transition: transform .3s cubic-bezier(.3, 1.05, .4, 1.05)
}

.gosc-sell-result__switch-btn--on {
	background-color: #eb9654
}

.gosc-sell-result__switch-btn--on i {
	transform: translate(5.6vw)
}

.gosc-sell-result__detail {
	margin-top: 2.66667vw
}

.gosc-sell-result__detail dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2.66667vw 0 0;
	width: 100%
}

.gosc-sell-result__detail dl:first-child {
	margin: 0
}

.gosc-sell-result__detail dl dt {
	margin-right: 0;
	font-size: 3.73333vw;
	color: #333;
	line-height: 5.33333vw
}

.gosc-sell-result__detail dl dd {
	overflow: hidden;
	margin-left: 0;
	font-size: 3.73333vw;
	text-align: right;
	white-space: nowrap;
	color: #999;
	line-height: 5.33333vw
}

.gosc-sell-result__success {
	padding: 8vw 5.33333vw
}

.gosc-sell-result__pending {
	padding-top: 1.33333vw
}

.gosc-sell-result__pending-title {
	padding-left: 13.86667vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	color: #666;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-sell-result__pending-btn {
	margin: 8vw 9.06667vw;
	height: 13.33333vw;
	font-size: 4.26667vw;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 6.66667vw;
	line-height: 13.33333vw
}

.gosc-sell-result__fail {
	position: relative;
	padding: 0 0 6.4vw
}

.gosc-sell-result__fail-desc {
	padding: 1.33333vw 0 0 12.8vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	color: #666;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-sell-result__step {
	position: relative;
	margin: 6.4vw 5.33333vw 0
}

.gosc-sell-result__step-item {
	position: relative;
	padding-bottom: 4.26667vw;
	padding-left: 7.46667vw
}

.gosc-sell-result__step-item dl {
	margin: 0
}

.gosc-sell-result__step-item dt {
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	color: #aaa;
	font-weight: 500
}

.gosc-sell-result__step-item dd {
	margin: .8vw 0 0;
	font-size: 3.2vw;
	color: #aaa;
	line-height: 4.53333vw
}

.gosc-sell-result__step-item:last-child .gosc-card-loading__step-line {
	display: none
}

.gosc-sell-result__step-item--right dt,
.gosc-sell-result__step-item--loading dt {
	color: #333
}

.gosc-sell-result__step-item--right .gosc-card-loading__step-icon,
.gosc-sell-result__step-item--loading .gosc-card-loading__step-icon {
	font-size: 0;
	border-color: #eb9654
}

.gosc-sell-result__step-item--right .gosc-card-loading__step-line,
.gosc-sell-result__step-item--loading .gosc-card-loading__step-line {
	background-color: #eb9654
}

.gosc-sell-result__step-icon {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.33333vw;
	height: 5.33333vw;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 50%;
	box-sizing: border-box
}

.gosc-sell-result__step-right {
	width: 3.2vw;
	height: 3.2vw
}

.gosc-sell-result__step-right svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #eb9654
}

.gosc-sell-result__step-num {
	font-size: 3.46667vw;
	color: #ccc;
	line-height: 4.8vw;
	font-style: normal
}

.gosc-sell-result__step-line {
	position: absolute;
	top: 5.33333vw;
	left: 2.53333vw;
	width: 1px;
	height: calc(100% - 5.33333vw);
	background-color: #ccc
}

.gosc-sell-result__bottom {
	margin-top: 10.66667vw
}

.gosc-sell-result__bottom-btn {
	padding: 0 7.2vw;
	margin-top: 5.33333vw
}

.gosc-sell-result__bottom-btn--flex {
	display: flex;
	justify-content: space-between
}

.gosc-sell-result__bottom-btn--flex button {
	width: 48%
}

.gosc-sell-result__bottom-cancel {
	padding: 4.26667vw 0;
	width: 100%;
	font-size: 3.46667vw;
	text-align: center;
	color: #666;
	line-height: 5.06667vw
}

.gosc-sell-result__success-order {
	padding: 0 5.33333vw
}

.gosc-sell-result__success-order-money {
	margin-top: 3.46667vw;
	line-height: 8vw;
	font-size: 6.66667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #030303
}

.gosc-sell-result__success-order-money span {
	font-family: PingFang SC;
	font-weight: 700
}

.gosc-sell-result__success-order-step {
	padding: 5.33333vw 0;
	margin-top: 5.33333vw;
	border-top: 1px solid rgba(0, 0, 0, .06);
	border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.gosc-sell-result__success-order-step-item {
	display: flex
}

.gosc-sell-result__success-order-step-item-left {
	display: flex;
	align-items: center;
	margin-right: 2.13333vw;
	flex-direction: column
}

.gosc-sell-result__success-order-step-item-left-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.33333vw;
	height: 5.33333vw;
	font-size: 3.46667vw;
	font-family: JR;
	font-family: UDC105-Bold;
	text-align: center;
	color: #999;
	border: 1px solid #999;
	border-radius: 2.93333vw;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-sell-result__success-order-step-item-left-icon span {
	display: block;
	width: 2.66667vw;
	height: 2.13333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/green_tick.png);
	background-size: 100% 100%
}

.gosc-sell-result__success-order-step-item-left-icon--active {
	border: 1px solid #3dc071
}

.gosc-sell-result__success-order-step-item-left-line {
	width: 1px;
	height: 8.8vw;
	background: #ccc
}

.gosc-sell-result__success-order-step-item-right-title {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-sell-result__success-order-step-item-right-title--active {
	color: #333
}

.gosc-sell-result__success-order-step-item-right-sub-title {
	margin-top: .8vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-sell-result__success-order-info {
	display: flex;
	justify-content: space-between;
	margin-top: 1.86667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-sell-result__success-order-info:last-child {
	margin-top: 1.86667vw
}

.gosc-sell-gold__change-close {
	position: absolute;
	top: 50%;
	right: 0;
	left: 1.06667vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/back.png) no-repeat;
	background-size: 100% 100%;
	transform: translateY(-50%)
}

.gosc-sell-gold__change .bank-select:after {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-sell-gold__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-sell-gold__change-bigRecharge:after {
	position: absolute;
	top: 0;
	right: 1px;
	display: block;
	width: 1.33333vw;
	height: 2.4vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%;
	content: "";
	transform: translateY(50%)
}

.gosc-sell-gold__result {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 53.33333vw;
	background: #f4f3f8 url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/gold-bg.png) top center no-repeat;
	background-size: 100% auto;
	border-radius: 2.66667vw 2.66667vw 0 0
}

.gosc-sell-gold__result-close {
	position: absolute;
	top: 2.13333vw;
	right: 0;
	z-index: 2;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%
}

.gosc-sell-gold__close {
	position: absolute;
	top: 10.93333vw;
	right: 0;
	z-index: 2;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close_gray.png) no-repeat;
	background-size: 100% 100%
}

:export {
	prefix: gosc
}

.gosc-card-sell {
	position: relative;
	background-image: linear-gradient(to bottom, rgba(244, 243, 248, 0) 0, #f4f3f8 26.66667vw, #f4f3f8)
}

.gosc-card-sell__header {
	position: relative;
	padding-bottom: 2.66667vw;
	margin-bottom: -2.66667vw;
	height: 9.86667vw;
	text-align: center;
	background: #f4f3f8;
	border-radius: 4.26667vw 4.26667vw 0 0;
	line-height: 9.86667vw
}

.gosc-card-sell__header .color-red {
	color: #f53137
}

.gosc-card-sell__header .color-green {
	color: #54ae76
}

.gosc-card-sell__header-title {
	padding-left: 3.2vw;
	font-size: 3.46667vw;
	font-family: PingFangSC-Regular;
	color: #333;
	font-weight: 400
}

.gosc-card-sell__header-value {
	padding-left: 2.13333vw;
	font-size: 3.46667vw;
	font-family: UDC105-Bold;
	color: #000;
	font-weight: 400
}

.gosc-card-sell__main {
	position: relative;
	padding: 0 3.2vw 3.73333vw;
	background: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-card-sell__main .select {
	color: #b66221;
	background: rgba(235, 150, 84, .16)
}

.gosc-card-sell__main-head {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 45.33333vw;
	height: 7.46667vw;
	font-size: 2.66667vw;
	font-family: PingFangSC-Regular;
	text-align: center;
	color: #b66221;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buygold_head_bg.png) center center no-repeat;
	background-size: 100% 100%;
	line-height: 7.46667vw;
	font-weight: 400
}

.gosc-card-sell__main-head img {
	display: inline-block;
	margin-right: .53333vw;
	width: 2.93333vw
}

.gosc-card-sell__main-money {
	display: flex;
	align-items: center;
	padding: 4.26667vw 0 0
}

.gosc-card-sell__main-money>span {
	display: inline-block;
	padding: 0 3.2vw;
	margin-right: 2.66667vw;
	height: 6.4vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Semibold;
	text-align: center;
	color: #999;
	background: #f4f3f8;
	border-radius: 6.13333vw;
	line-height: 6.4vw;
	font-weight: 600
}

.gosc-card-sell__main-input {
	padding-top: 6.4vw
}

.gosc-card-sell__main-bottom {
	display: flex;
	align-items: center;
	padding-top: 1.06667vw;
	height: 9.06667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-card-sell__main-bottom-i {
	margin-left: .53333vw;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top
}

.gosc-card-sell__main-tipText {
	position: relative;
	display: inline-flex;
	padding-top: 0;
	padding-right: 4.26667vw;
	margin-top: 2.13333vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	color: #999;
	font-weight: 400
}

.gosc-card-sell__main-tipIcon {
	position: absolute;
	top: 50%;
	right: 0;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	transform: translateY(-50%)
}

.gosc-card-sell__content {
	margin: 2.66667vw auto 0;
	width: 100%;
	background-color: #fff
}

.gosc-card-sell__content--order {
	margin-top: 0
}

.gosc-card-sell__content--order .gosc-card-sell__paymethod,
.gosc-card-sell__content--order .gosc-card-sell__coupon {
	margin: 0 5.33333vw
}

.gosc-card-sell__logo {
	display: inline-block;
	margin-right: 1.33333vw;
	width: 4vw;
	height: 4vw;
	background: url(https://storage.jd.com/payment-assets/sdk/bank/CMBC.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: middle
}

.gosc-card-sell__arrow {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1.6vw;
	height: 2.66667vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_arrow.png) no-repeat;
	background-size: 100% 100%;
	vertical-align: top;
	transform: translate3d(0, -50%, 0)
}

.gosc-card-sell__paymethod {
	position: relative;
	padding: 5.06667vw 0;
	margin: 0 3.2vw
}

.gosc-card-sell__paymethod-body {
	display: flex
}

.gosc-card-sell__paymethod-body-title {
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000
}

.gosc-card-sell__paymethod-body-value {
	padding-right: 4.26667vw;
	text-align: right;
	flex: 1
}

.gosc-card-sell__paymethod-body-value-bankname {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	color: #000
}

.gosc-card-sell__paymethod-body-value-bankname>span {
	vertical-align: middle;
	display: inline-block
}

.gosc-card-sell__paymethod-body-value-noright {
	padding-right: 0
}

.gosc-card-sell__paymethod-body-subtitle {
	padding-top: 1.06667vw;
	margin-right: 4.26667vw;
	font-size: 3.2vw;
	font-family: PingFangSC-Regular;
	text-align: right;
	color: #999;
	line-height: 4.26667vw;
	font-weight: 400
}

.gosc-card-sell__paymethod-body-subtitle>span {
	color: #eb9654
}

.gosc-card-sell__paymethod-body-subtitle>i {
	color: #f53137;
	font-style: normal
}

.gosc-card-sell__paymethod-body-subtitle-noright {
	margin-right: 0
}

.gosc-card-sell__bottom {
	display: flex;
	align-items: center;
	padding: 4.26667vw 4.26667vw 10.66667vw
}

.gosc-card-sell__bottom-btn {
	position: relative;
	width: 100%
}

.gosc-card-sell__bottom-icon {
	margin-right: 3.2vw;
	width: 12.8vw;
	height: 12.8vw
}

.gosc-card-sell__bottom-icon img {
	width: 100%
}

.gosc-card-sell__order-header {
	position: relative;
	padding: 6.93333vw 5.33333vw 5.6vw;
	margin-top: -2.66667vw;
	background-color: #fff;
	border-top-right-radius: 2.66667vw;
	border-top-left-radius: 2.66667vw
}

.gosc-card-sell__order-title {
	line-height: 7.46667vw;
	font-size: 5.86667vw;
	font-family: PingFang SC;
	font-weight: 600;
	color: #000;
	text-shadow: 0 1.06667vw 3.2vw rgba(0, 17, 91, .08)
}

.gosc-card-sell__order-sub-title {
	margin-top: 2.13333vw;
	line-height: 5.33333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-card-sell__order-form {
	padding: 0 5.33333vw
}

.gosc-card-sell__couponcard {
	display: flex;
	align-items: center;
	margin-top: 2.66667vw;
	height: 14.66667vw;
	background-color: #fff
}

.gosc-card-sell__couponcard-wraper {
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 2.66667vw;
	margin: 0 3.2vw;
	flex: 1
}

.gosc-card-sell__couponcard-wraper-title {
	display: flex;
	align-items: center;
	height: 5.6vw
}

.gosc-card-sell__couponcard-wraper-title-text {
	height: 5.6vw;
	line-height: 5.6vw;
	font-size: 4vw;
	font-family: PingFang HK;
	font-weight: 400;
	color: #000
}

.gosc-card-sell__couponcard-wraper-tip {
	display: flex;
	align-items: center;
	padding: 0 1.06667vw;
	margin-left: 2.13333vw;
	height: 4.8vw;
	font-size: 2.93333vw;
	font-family: PingFang SC;
	color: #ef4034;
	background: rgba(255, 65, 68, .1);
	border-radius: .53333vw;
	font-weight: 400
}

.gosc-card-sell__couponcard-wraper-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #333;
	flex: 1;
	font-weight: 400
}

.gosc-card-sell__couponcard-wraper-content-righticon:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1.33333vw;
	height: 2.4vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/249835/4/25263/253/67407c4aFc8bc6832/4309b9e63dfc589d.png) no-repeat;
	background-size: contain
}

.gosc-card-sell__couponcard-wraper-err {
	display: flex;
	align-items: center
}

.gosc-card-sell__couponcard-wraper-err-title {
	font-size: 4vw;
	font-family: PingFang HK;
	font-weight: 400;
	color: #000
}

.gosc-card-sell__couponcard-wraper-err-text {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #ff4144
}

.gosc-card-sell__couponcard-wraper-err-btn {
	margin-left: 1.06667vw;
	width: 4.26667vw;
	height: 4.26667vw;
	background: url(https://img20.360buyimg.com/img/jfs/t1/276820/26/27226/546/6809ce45F2e4de338/f5a4a70f758a0796.png) no-repeat;
	background-size: contain
}

.gosc-card-sell__couponcard-wraper-err-loadingText {
	margin-left: auto;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #000
}

.gosc-card-sell__couponPop {
	position: relative;
	overflow: hidden;
	padding-bottom: 9.06667vw;
	width: 100%;
	background-color: #fff;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-card-sell__couponPop-header {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 13.86667vw;
	box-sizing: border-box;
	border-bottom: .5px solid rgba(0, 0, 0, .06)
}

.gosc-card-sell__couponPop-header span {
	font-size: 4.53333vw;
	font-family: PingFang SC;
	font-weight: 500;
	color: #000
}

.gosc-card-sell__couponPop-header-close {
	position: absolute;
	top: 1.06667vw;
	right: 1.06667vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/167214/7/52357/293/674054e4Fa697fcfc/48694d0dd15b6ac5.png) no-repeat;
	background-size: 100% 100%
}

.gosc-card-sell__couponPop-wrap {
	overflow: scroll;
	padding: 0 4.26667vw;
	max-height: 80vw
}

.gosc-card-sell__couponPop-list {
	position: relative;
	display: flex;
	justify-content: center;
	height: 21.86667vw;
	font-family: PingFang SC;
	box-sizing: border-box;
	flex-direction: column;
	border-bottom: .5px solid rgba(0, 0, 0, .06);
	font-weight: 400
}

.gosc-card-sell__couponPop-list-value {
	display: flex;
	align-items: center;
	height: 5.6vw;
	font-size: 4vw;
	font-family: PingFang SC;
	color: #eb9654;
	line-height: 5.6vw;
	font-weight: 400
}

.gosc-card-sell__couponPop-list-value-tip {
	display: inline-block;
	margin-left: 1.33333vw;
	width: 3.2vw;
	height: 3.2vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_tip_gray.png) no-repeat;
	background-size: contain
}

.gosc-card-sell__couponPop-list-date {
	margin-top: 1.06667vw;
	height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-card-sell__couponPop-list:before {
	position: absolute;
	top: 50%;
	right: 3.2vw;
	width: 5.33333vw;
	height: 5.33333vw;
	background: url(https://img13.360buyimg.com/img/jfs/t1/232621/30/31475/1395/675ae211Fc29128a1/9069ecccde369960.png) center center no-repeat;
	background-size: 100% 100%;
	content: "";
	transform: translate3d(0, -50%, 0)
}

.gosc-card-sell__couponPop-list-nouser {
	font-size: 4vw
}

.gosc-card-sell__couponPop-list-last {
	padding: 7.2vw 0;
	margin: 0 4.26667vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Medium;
	color: #333;
	line-height: 5.33333vw;
	font-weight: 500
}

.gosc-card-sell__couponPop-list-last:before {
	position: absolute;
	top: 50%;
	right: 3.2vw;
	width: 5.33333vw;
	height: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_unselect.png) center center no-repeat;
	background-size: 100% 100%;
	content: "";
	transform: translate3d(0, -50%, 0)
}

.gosc-card-sell__check-money-tiptext {
	overflow: hidden;
	white-space: normal;
	line-height: 4.53333vw;
	word-break: break-all
}

.couponPop-list-select {
	position: relative
}

.couponPop-list-select:before {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.couponPop-list-disabled div[class*=value] {
	color: #999
}

.couponPop-list-disabled:before {
	width: 4.53333vw;
	height: 4.53333vw;
	background: #d8d8d8;
	border-radius: 50%
}

:export {
	prefix: gosc
}

.gosc-sell-result {
	position: relative
}

.gosc-sell-result__header {
	position: relative;
	display: flex;
	align-items: center;
	padding: 8.53333vw 0 0 5.33333vw
}

.gosc-sell-result__header-icon {
	display: inline-block;
	width: 6.93333vw;
	height: 6.93333vw
}

.gosc-sell-result__header .icon-success {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_success.png);
	background-size: 100% 100%
}

.gosc-sell-result__header .icon-fail {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_fail.png);
	background-size: 100% 100%
}

.gosc-sell-result__header .icon-pending {
	background-image: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/buy_result_pending.png);
	background-size: 100% 100%
}

.gosc-sell-result__header-title {
	padding-left: 1.33333vw;
	font-size: 5.86667vw;
	font-family: PingFangSC-Semibold;
	color: #333;
	text-shadow: 0 2.13333vw 6.4vw rgba(0, 17, 91, .08);
	line-height: 7.46667vw;
	font-weight: 600
}

.gosc-sell-result__header-community-activit {
	line-height: 5.33333vw;
	display: flex;
	align-items: center;
	padding: 0 5.33333vw;
	margin-top: 1.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400
}

.gosc-sell-result__header-community-activit-mainTitle {
	margin-right: 2.66667vw
}

.gosc-sell-result__header-community-activit-subTitle {
	flex-shrink: 0;
	margin-right: 2.66667vw
}

.gosc-sell-result__header-community-activit-btn {
	flex-shrink: 0;
	margin-left: auto
}

.gosc-sell-result__header-community-activit-icon {
	margin-left: 1.33333vw;
	width: 1.6vw;
	height: 3.2vw;
	background: url(https://img14.360buyimg.com/img/jfs/t1/256283/11/11057/440/6784a504Fe22d8e70/17ac6359f16c5cf9.png) no-repeat;
	background-size: cover
}

.gosc-sell-result__switch {
	margin-top: 8vw;
	width: 100%
}

.gosc-sell-result__switch dl {
	display: flex;
	align-items: center;
	padding: 3.73333vw 0;
	margin: 0;
	width: 100%
}

.gosc-sell-result__switch dl dt {
	flex: 1;
	padding-left: 5.33333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold-tip.png) left center no-repeat;
	background-size: 3.73333vw 3.73333vw
}

.gosc-sell-result__switch dl dt h4 {
	margin: 0;
	font-size: 4.26667vw;
	color: #333;
	line-height: 6.13333vw
}

.gosc-sell-result__switch dl dt p {
	margin: 0;
	font-size: 2.93333vw;
	color: #999;
	line-height: 4vw
}

.gosc-sell-result__switch dl dd {
	flex-shrink: 0;
	margin: 0 0 0 1.33333vw
}

.gosc-sell-result__switch-btn {
	position: relative;
	width: 13.06667vw;
	height: 7.46667vw;
	background-color: rgba(120, 120, 128, .16);
	border-radius: 3.73333vw;
	cursor: pointer;
	transition: background-color .3s
}

.gosc-sell-result__switch-btn i {
	position: absolute;
	top: .53333vw;
	left: .53333vw;
	width: 6.4vw;
	height: 6.4vw;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 .8vw 1px rgba(0, 0, 0, .05);
	transition: transform .3s cubic-bezier(.3, 1.05, .4, 1.05)
}

.gosc-sell-result__switch-btn--on {
	background-color: #eb9654
}

.gosc-sell-result__switch-btn--on i {
	transform: translate(5.6vw)
}

.gosc-sell-result__detail {
	margin-top: 2.66667vw
}

.gosc-sell-result__detail dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2.66667vw 0 0;
	width: 100%
}

.gosc-sell-result__detail dl:first-child {
	margin: 0
}

.gosc-sell-result__detail dl dt {
	margin-right: 0;
	font-size: 3.73333vw;
	color: #333;
	line-height: 5.33333vw
}

.gosc-sell-result__detail dl dd {
	overflow: hidden;
	margin-left: 0;
	font-size: 3.73333vw;
	text-align: right;
	white-space: nowrap;
	color: #999;
	line-height: 5.33333vw
}

.gosc-sell-result__success {
	padding: 8vw 5.33333vw
}

.gosc-sell-result__pending {
	padding-top: 1.33333vw
}

.gosc-sell-result__pending-title {
	padding-left: 13.86667vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	color: #666;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-sell-result__pending-btn {
	margin: 8vw 9.06667vw;
	height: 13.33333vw;
	font-size: 4.26667vw;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 6.66667vw;
	line-height: 13.33333vw
}

.gosc-sell-result__fail {
	position: relative;
	padding: 0 0 6.4vw
}

.gosc-sell-result__fail-desc {
	padding: 1.33333vw 0 0 12.8vw;
	font-size: 3.73333vw;
	font-family: PingFangSC-Regular;
	color: #666;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-sell-result__step {
	position: relative;
	margin: 6.4vw 5.33333vw 0
}

.gosc-sell-result__step-item {
	position: relative;
	padding-bottom: 4.26667vw;
	padding-left: 7.46667vw
}

.gosc-sell-result__step-item dl {
	margin: 0
}

.gosc-sell-result__step-item dt {
	font-size: 3.73333vw;
	line-height: 5.33333vw;
	color: #aaa;
	font-weight: 500
}

.gosc-sell-result__step-item dd {
	margin: .8vw 0 0;
	font-size: 3.2vw;
	color: #aaa;
	line-height: 4.53333vw
}

.gosc-sell-result__step-item:last-child .gosc-card-loading__step-line {
	display: none
}

.gosc-sell-result__step-item--right dt,
.gosc-sell-result__step-item--loading dt {
	color: #333
}

.gosc-sell-result__step-item--right .gosc-card-loading__step-icon,
.gosc-sell-result__step-item--loading .gosc-card-loading__step-icon {
	font-size: 0;
	border-color: #eb9654
}

.gosc-sell-result__step-item--right .gosc-card-loading__step-line,
.gosc-sell-result__step-item--loading .gosc-card-loading__step-line {
	background-color: #eb9654
}

.gosc-sell-result__step-icon {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.33333vw;
	height: 5.33333vw;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 50%;
	box-sizing: border-box
}

.gosc-sell-result__step-right {
	width: 3.2vw;
	height: 3.2vw
}

.gosc-sell-result__step-right svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: #eb9654
}

.gosc-sell-result__step-num {
	font-size: 3.46667vw;
	color: #ccc;
	line-height: 4.8vw;
	font-style: normal
}

.gosc-sell-result__step-line {
	position: absolute;
	top: 5.33333vw;
	left: 2.53333vw;
	width: 1px;
	height: calc(100% - 5.33333vw);
	background-color: #ccc
}

.gosc-sell-result__bottom {
	margin-top: 10.66667vw
}

.gosc-sell-result__bottom-btn {
	padding: 0 7.2vw;
	margin-top: 5.33333vw
}

.gosc-sell-result__bottom-btn--flex {
	display: flex;
	justify-content: space-between
}

.gosc-sell-result__bottom-btn--flex button {
	width: 48%
}

.gosc-sell-result__bottom-cancel {
	padding: 4.26667vw 0;
	width: 100%;
	font-size: 3.46667vw;
	text-align: center;
	color: #666;
	line-height: 5.06667vw
}

.gosc-sell-result__success-order {
	padding: 0 5.33333vw
}

.gosc-sell-result__success-order-money {
	margin-top: 3.46667vw;
	line-height: 8vw;
	font-size: 6.66667vw;
	font-family: UDC105-Bold;
	font-weight: 400;
	color: #030303
}

.gosc-sell-result__success-order-money span {
	font-family: PingFang SC;
	font-weight: 700
}

.gosc-sell-result__success-order-step {
	padding: 5.33333vw 0;
	margin-top: 5.33333vw;
	border-top: 1px solid rgba(0, 0, 0, .06);
	border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.gosc-sell-result__success-order-step-item {
	display: flex
}

.gosc-sell-result__success-order-step-item-left {
	display: flex;
	align-items: center;
	margin-right: 2.13333vw;
	flex-direction: column
}

.gosc-sell-result__success-order-step-item-left-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.33333vw;
	height: 5.33333vw;
	font-size: 3.46667vw;
	font-family: JR;
	font-family: UDC105-Bold;
	text-align: center;
	color: #999;
	border: 1px solid #999;
	border-radius: 2.93333vw;
	line-height: 5.33333vw;
	font-weight: 400
}

.gosc-sell-result__success-order-step-item-left-icon span {
	display: block;
	width: 2.66667vw;
	height: 2.13333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/green_tick.png);
	background-size: 100% 100%
}

.gosc-sell-result__success-order-step-item-left-icon--active {
	border: 1px solid #3dc071
}

.gosc-sell-result__success-order-step-item-left-line {
	width: 1px;
	height: 8.8vw;
	background: #ccc
}

.gosc-sell-result__success-order-step-item-right-title {
	line-height: 5.33333vw;
	font-size: 3.73333vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-sell-result__success-order-step-item-right-title--active {
	color: #333
}

.gosc-sell-result__success-order-step-item-right-sub-title {
	margin-top: .8vw;
	line-height: 4.53333vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	font-weight: 400;
	color: #999
}

.gosc-sell-result__success-order-info {
	display: flex;
	justify-content: space-between;
	margin-top: 1.86667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-sell-result__success-order-info:last-child {
	margin-top: 1.86667vw
}

:export {
	prefix: gosc
}

.gosc-sell-gold__wrap {
	position: relative;
	width: 100%
}

.gosc-sell-gold__content {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 53.33333vw;
	background: #f4f3f8;
	border-radius: 2.66667vw 2.66667vw 0 0
}

.gosc-sell-gold__change {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-color: #f4f3f8;
	border-radius: 2.13333vw 2.13333vw 0 0
}

.gosc-sell-gold__change-header {
	position: relative;
	padding: 3.73333vw 11.73333vw;
	font-size: 4.8vw;
	font-family: PingFang SC;
	text-align: center;
	color: #333;
	line-height: 6.66667vw
}

.gosc-sell-gold__change-header span {
	font-weight: 500
}

.gosc-sell-gold__change-close {
	position: absolute;
	top: 50%;
	right: 0;
	left: 1.06667vw;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/back.png) no-repeat;
	background-size: 100% 100%;
	transform: translateY(-50%)
}

.gosc-sell-gold__change-bank {
	padding: 2.66667vw 3.2vw 10.66667vw;
	margin: 0;
	list-style: none
}

.gosc-sell-gold__change-bank li {
	align-items: center;
	padding: 3.73333vw 3.2vw;
	margin-bottom: 2.66667vw;
	background-color: #fff;
	border-radius: 1.06667vw;
	list-style: none
}

.gosc-sell-gold__change-bank li:after {
	border-bottom-width: 1px
}

.gosc-sell-gold__change-bank li:last-child {
	margin-bottom: 0
}

.gosc-sell-gold__change-list {
	padding: 0 4.26667vw 4.26667vw;
	margin: 0;
	list-style: none
}

.gosc-sell-gold__change-list li {
	display: flex;
	align-items: center;
	width: 100%;
	height: 18.66667vw;
	list-style: none
}

.gosc-sell-gold__change-list li:after {
	border-bottom-width: 1px
}

.gosc-sell-gold__change-wrap {
	position: relative;
	display: flex;
	align-items: center
}

.gosc-sell-gold__change-wrap:after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 4vw;
	height: 4vw;
	border: 1px solid #ddd;
	border-radius: 50%;
	content: "";
	transform: translate3d(0, -50%, 0)
}

.gosc-sell-gold__change .bank-select:after {
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/bank_selected.png) center center no-repeat;
	background-size: 100% 100%
}

.gosc-sell-gold__change-icon {
	margin-right: 1.33333vw;
	width: 5.33333vw;
	height: 5.33333vw;
	flex-shrink: 0
}

.gosc-sell-gold__change-icon img {
	display: block;
	width: 5.33333vw;
	height: 5.33333vw
}

.gosc-sell-gold__change-text {
	display: flex;
	overflow: hidden;
	margin: 0;
	font-size: 4vw;
	font-family: PingFang SC;
	flex: 1;
	line-height: 5.6vw
}

.gosc-sell-gold__change-text dt {
	font-weight: 500;
	color: #000
}

.gosc-sell-gold__change-text dd {
	margin-left: 2.66667vw;
	color: #666
}

.gosc-sell-gold__change-text dt,
.gosc-sell-gold__change-text dd {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.gosc-sell-gold__change-tip {
	margin-top: 1.06667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #eb9654;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-sell-gold__change-des {
	margin-top: 1.06667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #999;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-sell-gold__change-arrow {
	width: 3.73333vw;
	height: 3.73333vw;
	flex-shrink: 0;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%
}

.gosc-sell-gold__change-btns {
	display: flex;
	align-items: center;
	padding-top: 3.2vw
}

.gosc-sell-gold__change-btns span {
	padding: 0 3.2vw;
	margin-right: 2.66667vw;
	height: 6.66667vw;
	font-size: 3.2vw;
	font-family: PingFang SC;
	text-align: center;
	color: #eb9654;
	border: 1px solid rgb(235, 150, 84);
	border-radius: 3.46667vw;
	line-height: 6.66667vw;
	font-weight: 600
}

.gosc-sell-gold__change-line {
	margin: 3.73333vw 0;
	height: 1px;
	background: #eee
}

.gosc-sell-gold__change-bigRecharge {
	position: relative;
	font-size: 3.2vw;
	font-family: PingFang SC;
	color: #666;
	line-height: 4.53333vw;
	font-weight: 400
}

.gosc-sell-gold__change-bigRecharge:after {
	position: absolute;
	top: 0;
	right: 1px;
	display: block;
	width: 1.33333vw;
	height: 2.4vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_arrow_right.png) no-repeat;
	background-size: 100% 100%;
	content: "";
	transform: translateY(50%)
}

.gosc-sell-gold__result {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 53.33333vw;
	background: #f4f3f8 url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/gold-bg.png) top center no-repeat;
	background-size: 100% auto;
	border-radius: 2.66667vw 2.66667vw 0 0
}

.gosc-sell-gold__result-close {
	position: absolute;
	top: 2.13333vw;
	right: 0;
	z-index: 2;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close.png) no-repeat;
	background-size: 100% 100%
}

.gosc-sell-gold__close {
	position: absolute;
	top: 10.93333vw;
	right: 0;
	z-index: 2;
	width: 11.73333vw;
	height: 11.73333vw;
	background: url(https://caifu-h5.s3-cache-accelerate.cn-north-1.jdcloud-oss.com/gold/gold-support-components/images/gold_close_gray.png) no-repeat;
	background-size: 100% 100%
}
