|
@@ -1,27 +1,42 @@
|
|
|
.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;
|
|
|
-
|
|
|
- &.active {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 0.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);
|
|
|
- cursor: pointer;
|
|
|
- opacity: 1;
|
|
|
- }
|
|
|
-}
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 0.44rem;
|
|
|
+ font-size: 0.14rem;
|
|
|
+ border-radius: 4px;
|
|
|
+ cursor: not-allowed;
|
|
|
+ opacity: 0.4;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+
|
|
|
+ &.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;
|
|
|
+ }
|
|
|
+ &.deposit {
|
|
|
+ background-image: -webkit-gradient(
|
|
|
+ linear,
|
|
|
+ left top,
|
|
|
+ left bottom,
|
|
|
+ from(#0fb9d2),
|
|
|
+ to(#0852d3)
|
|
|
+ );
|
|
|
+ background-image: -webkit-linear-gradient(top, #0fb9d2, #0852d3);
|
|
|
+ background-image: -o-linear-gradient(top, #0fb9d2, #0852d3);
|
|
|
+ background-image: linear-gradient(180deg, #0fb9d2, #024bc9) !important;
|
|
|
+ box-shadow: 0 0 0.1rem #0fb9d2 inset;
|
|
|
+ cursor: pointer;
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+}
|