123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- .bgWhite {
- background-color: #fff;
- background: url('./images/downBg.png') no-repeat center;
- background-size: cover;
- .wall {
- height: 60px;
- }
- .container {
- width: 1200px;
- margin: 0 auto;
- padding: 127px 0 122px;
- display: flex;
- flex-direction: row;
- // align-items: center;
- justify-content: space-between;
- .imgWrap {
- position: relative;
- .finch {
- width: 200px;
- height: 250px;
- position: absolute;
- bottom: -32px;
- left: -126px;
- }
- .demo {
- width: 427px;
- }
- }
- .textWrap {
- h4 {
- font-size: 32px;
- font-weight: 600;
- color: #333333;
- line-height: 45px;
- margin-bottom: 24px;
- }
- .subtitle {
- font-size: 18px;
- font-weight: 400;
- color: #666666;
- line-height: 25px;
- margin-bottom: 7px;
- .dot {
- display: inline-block;
- width: 14px;
- height: 14px;
- background: #2dc7aa;
- border: 4px solid #e0f7f3;
- border-radius: 50%;
- margin-right: 10px;
- }
- }
- .codeList {
- display: flex;
- flex-direction: row;
- margin-top: 60px;
- .codeItem {
- background-color: #fff;
- box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
- border-radius: 14px;
- margin-right: 40px;
- h5 {
- color: #333;
- font-size: 20px;
- margin-bottom: 16px;
- font-weight: 500;
- line-height: 28px;
- text-align: center;
- }
- padding: 20px 42px;
- .code {
- width: 140px;
- height: 140px;
- background-color: #666;
- }
- .iconWrap {
- display: flex;
- flex-direction: row;
- align-items: center;
- .iconItem {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-top: 16px;
- font-size: 12px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 17px;
- img {
- width: 20px;
- height: 20px;
- margin-right: 5px;
- }
- }
- }
- }
- }
- }
- }
- }
|