|
@@ -40,6 +40,7 @@
|
|
|
/>
|
|
|
<span class="verify-code-accept">
|
|
|
<el-button
|
|
|
+ type="primary"
|
|
|
@click="showHMVerify"
|
|
|
:disabled="countDownNumer"
|
|
|
:loading="getVerifyCodeLoading"
|
|
@@ -253,6 +254,32 @@ const clearInputVal = (type) => {
|
|
|
margin-top: 15px;
|
|
|
border-radius: 2px;
|
|
|
|
|
|
+ input::placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
+ ::-webkit-input-placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 使用webkit内核的浏览器 */
|
|
|
+ :-moz-placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Firefox版本19+ */
|
|
|
+ :-ms-input-placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
&:first-child {
|
|
|
margin-top: 0;
|
|
|
}
|
|
@@ -280,7 +307,6 @@ const clearInputVal = (type) => {
|
|
|
padding: 0 44px 0 60px;
|
|
|
width: 326px;
|
|
|
}
|
|
|
-
|
|
|
&.code {
|
|
|
.input {
|
|
|
padding-right: 10px;
|
|
@@ -318,6 +344,32 @@ const clearInputVal = (type) => {
|
|
|
height: 40px;
|
|
|
margin-top: 10px;
|
|
|
|
|
|
+ input::placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
+ ::-webkit-input-placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 使用webkit内核的浏览器 */
|
|
|
+ :-moz-placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Firefox版本19+ */
|
|
|
+ :-ms-input-placeholder {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(40,46,48,0.6);
|
|
|
+ }
|
|
|
+
|
|
|
&-icon {
|
|
|
width: 50px;
|
|
|
display: flex;
|
|
@@ -350,15 +402,16 @@ const clearInputVal = (type) => {
|
|
|
.el-button {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
- color: #666;
|
|
|
- background: #f8f8f8;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #FFFFFF;
|
|
|
+ background: $colorMain;
|
|
|
border-left: none;
|
|
|
border-radius: 0;
|
|
|
font-size: 12px;
|
|
|
|
|
|
&:hover {
|
|
|
- border-color: #e8e8e8;
|
|
|
- color: $colorMain;
|
|
|
+ // border-color: #e8e8e8;
|
|
|
+ // color: $colorMain;
|
|
|
}
|
|
|
}
|
|
|
}
|