| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- @import "../../scssCommon.scss";
- .main {
- margin-top: 0;
- }
- .introduce {
- overflow-x: hidden;
- overflow-y: hidden;
- margin: 0;
- width: 100vw;
- height: 100vh;
- position: relative;
- .topContent {
- width: 100%;
- height: pxtovw(169);
- background: url('../../../assets/img/other/money/intro_bg@2x.png') no-repeat;
- background-size: cover;
- box-sizing: border-box;
- padding: pxtovw(15);
- display: flex;
- flex-direction: column;
- justify-content: center;
- .title {
- height: pxtovw(37);
- font-size: pxtovw(26);
- font-weight: 600;
- text-align: left;
- color: #ffffff;
- line-height: pxtovw(37);
- letter-spacing: 0;
- }
- .desc {
- margin-top: pxtovw(2);
- height: pxtovw(17);
- font-size: pxtovw(12);
- font-weight: 400;
- text-align: left;
- color: #ffffff;
- line-height: pxtovw(17);
- letter-spacing: 0;
- }
- }
- .bodyIntro {
- box-sizing: border-box;
- padding: pxtovw(15);
- background-color: #fff;
- .desc {
- width: pxtovw(342);
- font-size: pxtovw(14);
- font-weight: 400;
- text-align: left;
- color: #333333;
- line-height: pxtovw(25);
- }
- &:first-child {
- align-items:center;
- }
- .step {
- display: flex;
- align-items: flex-start;
- &.step1 {
- margin-top: pxtovw(20);
- align-items:center;
- }
- &.step2 {
- margin-top: pxtovw(17);
- align-items:flex-start;
- }
- .iconStep {
- flex-shrink: 0;
- width: pxtovw(26);
- height: pxtovw(26);
- background-repeat: no-repeat;
- background-size: cover;
- }
- .icon1 {
- background-image: url('../../../assets/img/other/money/step1@2x.png');
- }
- .icon2 {
- background-image: url('../../../assets/img/other/money/step2@2x.png');
- }
- .stepDesc {
- margin-left: pxtovw(10);
- font-size: pxtovw(14);
- font-weight: 600;
- text-align: left;
- color: #222222;
- line-height: pxtovw(20);
- max-height: pxtovw(40);
- word-break: break-all;
- white-space: normal;
- }
- }
- .useBtn {
- margin: pxtovw(33) auto;
- width: pxtovw(345);
- height: pxtovw(44);
- background: #308eff;
- border-radius: pxtovw(4);
- box-shadow: 0px pxtovw(2) pxtovw(6) 0px rgba(48,142,255,0.3);
- display: flex;
- justify-content: center;
- align-items: center;
- p {
- height: pxtovw(21);
- font-size: pxtovw(15);
- font-weight: 500;
- text-align: center;
- color: #ffffff;
- line-height: pxtovw(21);
- }
- }
- }
- .connect {
- position: absolute;
- bottom: pxtovw(60);
- left: 50%;
- transform: translateX(-50%);
- height: pxtovw(18);
- font-size: pxtovw(13);
- font-weight: 400;
- text-align: center;
- color: #999999;
- line-height: pxtovw(18);
- width: fit-content;
- span {
- height: pxtovw(18);
- font-size: pxtovw(13);
- font-weight: 400;
- text-align: center;
- color: #308EFF;
- line-height: pxtovw(18);
- }
- }
- .bottomArea {
- position: absolute;
- bottom: 0;
- left: 0;
- height: pxtovw(50);
- }
- }
|