|
@@ -188,17 +188,84 @@
|
|
}
|
|
}
|
|
|
|
|
|
/*充值明细*/
|
|
/*充值明细*/
|
|
- .recharge-details{
|
|
|
|
|
|
+.recharge-details{
|
|
width: 100%;
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
margin-bottom: 10px;
|
|
|
|
+ position: relative;
|
|
background-color: white;
|
|
background-color: white;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.3);
|
|
border-top: 1px solid rgba(0, 0, 0, 0.3);
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
|
}
|
|
}
|
|
.recharge-details>div{
|
|
.recharge-details>div{
|
|
- line-height: 1.8rem;
|
|
|
|
padding-left: 15px;
|
|
padding-left: 15px;
|
|
|
|
+ line-height: 1.8rem;
|
|
}
|
|
}
|
|
.recharge-details>div:nth-child(1){
|
|
.recharge-details>div:nth-child(1){
|
|
border-bottom:1px solid rgba(0, 0, 0, 0.3);``
|
|
border-bottom:1px solid rgba(0, 0, 0, 0.3);``
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.recharge-details .extended{
|
|
|
|
+ height: 0px;
|
|
|
|
+ display: none;
|
|
|
|
+
|
|
|
|
+ -webkit-transition: all .25s;
|
|
|
|
+ -moz-transition: all .25s;
|
|
|
|
+ -ms-transition: all .25s;
|
|
|
|
+ -o-transition: all .25s;
|
|
|
|
+ transition: all .25s;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*箭头旋转*/
|
|
|
|
+.recharge-details .arrow{
|
|
|
|
+ position: relative;
|
|
|
|
+}
|
|
|
|
+.recharge-details .arrow:after{
|
|
|
|
+ position: absolute;
|
|
|
|
+ right: 15px;
|
|
|
|
+ top: 18px;
|
|
|
|
+ width: 0;
|
|
|
|
+ height: 0;
|
|
|
|
+ content: "";
|
|
|
|
+ border-width: 6px 6px 0 6px;
|
|
|
|
+ border-style: solid;
|
|
|
|
+ border-color: #fff transparent;
|
|
|
|
+
|
|
|
|
+ -webkit-transition: all .25s;
|
|
|
|
+ -moz-transition: all .25s;
|
|
|
|
+ -ms-transition: all .25s;
|
|
|
|
+ -o-transition: all .25s;
|
|
|
|
+ transition: all .25s;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.recharge-details .arrow:before {
|
|
|
|
+ position: absolute;
|
|
|
|
+ right: 13px;
|
|
|
|
+ top: 18px;
|
|
|
|
+ width: 0;
|
|
|
|
+ height: 0;
|
|
|
|
+ content: "";
|
|
|
|
+ border-width: 8px 8px 0 8px;
|
|
|
|
+ border-style: solid;
|
|
|
|
+ border-color: #333 transparent;
|
|
|
|
+ -webkit-transition: transform .25s;
|
|
|
|
+ -moz-transition: transform .25s;
|
|
|
|
+ -ms-transition: transform .25s;
|
|
|
|
+ -o-transition: transform .25s;
|
|
|
|
+ transition: transform .25s;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.recharge-details .arrow.active:after{
|
|
|
|
+ top: 20px;
|
|
|
|
+ -webkit-transform: rotate(180deg);
|
|
|
|
+ -moz-transform: rotate(180deg);
|
|
|
|
+ -ms-transform: rotate(180deg);
|
|
|
|
+ -o-transform: rotate(180deg);
|
|
|
|
+ transform: rotate(180deg);
|
|
|
|
+}
|
|
|
|
+.recharge-details .arrow.active:before{
|
|
|
|
+ -webkit-transform: rotate(180deg);
|
|
|
|
+ -moz-transform: rotate(180deg);
|
|
|
|
+ -ms-transform: rotate(180deg);
|
|
|
|
+ -o-transform: rotate(180deg);
|
|
|
|
+ transform: rotate(180deg);
|
|
|
|
+}
|