|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /* pages/exchange/index.wxss */
-
- .exchange {
- width: 100%;
- height: 100%;
- background: #f8f8fa;
- }
- .exchangeBox{
- margin-top: -45rpx;
- }
- .radian{
- width: 100%;
- height: 100rpx;
- border-radius: 0 0 100rpx 100rpx;
- background-color: #52A0FD;
- }
-
- .footer {
- width: 710rpx;
- height: 126rpx;
- line-height: 126rpx;
- display: flex;
- background: #fff;
- border-radius: 20rpx;
- margin: 100rpx auto 0;
- box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
- }
- .footerYt{
- width: 710rpx;
- height: 126rpx;
- line-height: 126rpx;
- display: flex;
- background: #fff;
- border-radius: 20rpx;
- margin: 30rpx auto 0;
- box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
- }
- .footer text {
- margin-left: 31rpx;
- font-size: 30rpx;
- }
- .footer input{
- width: 460rpx;
- margin-left: 40rpx;
- height: 126rpx;
- line-height: 126rpx;
- font-size: 30rpx;
- text-align: right;
- }
- .section {
- width: 710rpx;
- /* height: 176rpx; */
- margin-top: 8%;
- background: #fff;
- display: flex;
- flex-direction: column;
- border: 1px solid #eaeaea;
- border-radius: 18rpx;
- margin: auto;
- }
-
- .section view {
- position: relative;
- width: 92%;
- height: 88rpx;
- line-height: 88rpx;
- display: flex;
- justify-content: space-between;
- padding: 0 4%;
- /* border-bottom: 1px solid #f5f5f5; */
- }
-
- .section view text {
- font-size: 30rpx;
- color: #999999;
- letter-spacing: 1.16rpx;
- }
-
- .section view text:nth-child(2) {
- font-size: 28rpx;
- color: #000;
- letter-spacing: 1.16rpx;
- text-align: right;
- }
- button{
- width: 710rpx;
- height: 94rpx;
- margin-top: 88rpx;
- color: #FFF;
- font-size: 36rpx;
- background-color: #52A0FD;
- box-shadow:0px 10px 22px 2px rgba(82,160,253,0.51);
- }
- .img {
- margin-top: -60rpx;
- display: block;
- width: 100%;
- }
-
|