|
@@ -0,0 +1,133 @@
|
|
|
+
|
|
|
+.resetPhone-box {
|
|
|
+ width: 100%;
|
|
|
+ min-height: 100vh;
|
|
|
+ background-color: rgb(31, 31, 31);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
+.main {
|
|
|
+ background-color: #1f1f1f;
|
|
|
+ padding: .72rem .18rem 0;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.main .title {
|
|
|
+ font-size: .18rem;
|
|
|
+ padding: 0 .45rem;
|
|
|
+}
|
|
|
+
|
|
|
+.main .title h2 {
|
|
|
+ color: #fcde26;
|
|
|
+ text-align: center;
|
|
|
+ line-height: .22rem;
|
|
|
+}
|
|
|
+
|
|
|
+.main .title div {
|
|
|
+ color: #fff;
|
|
|
+ font-size: .12rem;
|
|
|
+ text-align: center;
|
|
|
+ margin: .06rem 0;
|
|
|
+ line-height: .2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.main .phoneInput {
|
|
|
+ width: 100%;
|
|
|
+ height: auto;
|
|
|
+ background-color: #494949;
|
|
|
+ border-radius: 4px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-top: 0.2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.main .phoneInput .after {
|
|
|
+ margin-left: .1rem;
|
|
|
+ font-size: .14rem;
|
|
|
+ color: #868686;
|
|
|
+}
|
|
|
+
|
|
|
+.main .phoneInput input {
|
|
|
+ padding-left: .14rem;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.main input {
|
|
|
+ flex: 1;
|
|
|
+ background-color: #494949;
|
|
|
+ height: .48rem;
|
|
|
+ color: #868686;
|
|
|
+ font-size: .14rem;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+.main input::placeholder{
|
|
|
+ color: #868686;
|
|
|
+}
|
|
|
+
|
|
|
+.main .btnContent {
|
|
|
+ margin: .29rem 0 .19rem;
|
|
|
+}
|
|
|
+
|
|
|
+.button {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: .44rem;
|
|
|
+ background: -webkit-gradient(linear, left top, left bottom, from(#ff9323), to(#ff6a01));
|
|
|
+ background: -webkit-linear-gradient(top, #ff9323, #ff6a01);
|
|
|
+ background: -o-linear-gradient(top, #ff9323, #ff6a01);
|
|
|
+ background: linear-gradient(180deg, #ff9323, #ff6a01);
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ line-height: .44rem;
|
|
|
+ font-size: .14rem;
|
|
|
+ border-radius: 4px;
|
|
|
+ cursor: not-allowed;
|
|
|
+ opacity: .4;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.button.active {
|
|
|
+ background: -webkit-gradient(linear, left top, left bottom, from(#ff9323), to(#ff6a01));
|
|
|
+ background: -webkit-linear-gradient(top, #ff9323, #ff6a01);
|
|
|
+ background: -o-linear-gradient(top, #ff9323, #ff6a01);
|
|
|
+ background: linear-gradient(180deg, #ff9323, #ff6a01);
|
|
|
+ cursor: pointer;
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.footer-box {
|
|
|
+ width: 100%;
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: end;
|
|
|
+}
|
|
|
+
|
|
|
+.footer-box .text {
|
|
|
+ height: .81rem;
|
|
|
+ background-color: #131212;
|
|
|
+ color: #7d7d7d;
|
|
|
+ font-size: .12rem;
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -ms-flex-align: center;
|
|
|
+ align-items: center;
|
|
|
+ -webkit-box-pack: justify;
|
|
|
+ -ms-flex-pack: justify;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0 .36rem;
|
|
|
+}
|
|
|
+
|
|
|
+.footer-box .text .iconfont {
|
|
|
+ color: #e53535;
|
|
|
+ font-size: .2rem;
|
|
|
+}
|