Authored by 郭成尧

style-adjust

... ... @@ -5,7 +5,7 @@
<div class="safe-check-form">
<div class="input-group">
<input name="verifyCode" type="number" placeholder="请输入验证码">
<button id="getVerifyCodeBtn" class="get-verify-code-btn disable">重新获取 (60)</button>
<button id="getVerifyCodeBtn" class="get-verify-code-btn disable">重新获取 (60)</button>
</div>
<div class="tip">{{message}}</div>
</div>
\ No newline at end of file
... ...
... ... @@ -145,7 +145,7 @@ class OrderEnsure extends Page {
$getVerifyCodeBtn.text('重新获取').removeClass('disable');
clearInterval(itime);
} else {
$getVerifyCodeBtn.text('重新获取 (' + count-- + ')');
$getVerifyCodeBtn.text('重新获取 (' + count-- + ')');
}
}, 1000);
}
... ...
... ... @@ -886,6 +886,7 @@
> .dialog-footer {
.dialog-right-btn {
color: #b0b0b0;
border-bottom-left-radius: 0;
}
.active {
... ...
... ... @@ -9,6 +9,7 @@ $title-font-color: #fff;
$couponRadius: 8px;
$fontColor: #444;
$fontGrayLight: #e0e0e0;
$border-radius: 25px;
.select-giftcard-page {
@extend padding-30;
... ... @@ -44,11 +45,11 @@ $fontGrayLight: #e0e0e0;
line-height: 88px;
background-color: $title-bg-color;
color: $title-font-color;
border-top-left-radius: 12.5px;
border-top-right-radius: 12.5px;
border-top-left-radius: $border-radius;
border-top-right-radius: $border-radius;
.balance > label {
margin-left: 80px;
margin-left: 30px;
font-size: 24px;
font-weight: 400;
}
... ... @@ -58,7 +59,7 @@ $fontGrayLight: #e0e0e0;
}
.logo {
margin-right: 20px;
margin-right: 30px;
.iconfont {
font-size: 36px;
... ... @@ -70,8 +71,8 @@ $fontGrayLight: #e0e0e0;
padding: 10px 30px;
height: 188px;
background-color: #fff;
border-bottom-left-radius: 12.5px;
border-bottom-right-radius: 12.5px;
border-bottom-left-radius: $border-radius;
border-bottom-right-radius: $border-radius;
font-size: 22px;
> .content {
... ...