123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- @import "./reset.css";
- body {
- font-family: PingFangSC-Semibold;
- font-weight: bold;
- /* IOS禁止微信调整字体大小 */
- -webkit-text-size-adjust: 100% !important;
- text-size-adjust: 100% !important;
- -moz-text-size-adjust: 100% !important;
- }
- .banner {
- width: 100%;
- height: 23.8125rem;
- }
- .banner>img {
- width: 100%;
- }
- .container {
- padding: 0 0.9375rem 1.5625rem;
- box-sizing: border-box;
- background: #3600A5;
- }
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 2.1875rem;
- position: relative;
- top: -3.3125rem;
- }
- .item:nth-child(4) {
- margin: 0;
- }
- .item-content {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: #663BF6;
- border: 1px solid #4979FF;
- border-radius: 0.625rem;
- box-sizing: border-box;
- padding: 1.25rem 1.4063rem 1.6875rem;
- }
- .item-content span {
- font-size: 1.1875rem;
- line-height: 1.6563rem;
- color: #ffffff;
- }
- .title {
- width: 15.3125rem;
- height: 2.6875rem;
- color: #ffffff;
- font-size: 1.25rem;
- line-height: 1.75rem;
- display: flex;
- justify-content: center;
- align-items: center;
- background: url("../img/title.png") no-repeat center/100%;
- margin-bottom: 0.625rem;
- }
- .img-wrap {
- margin-top: 0.9375rem;
- width: 18.75rem;
- box-sizing: border-box;
- border-radius: 0.3125rem;
- padding: 0.9375rem 1.25rem;
- background: #DCD1FF;
- }
- .img-wrap>img {
- width: 100%;
- }
- .bar {
- width: 100%;
- box-sizing: border-box;
- padding: 8px 15px;
- background: #ffffff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: fixed;
- bottom: 0;
- }
- .bar>img {
- width: 90px;
- height: 33px;
- }
- .bar>a {
- width: 6.875rem;
- height: 2.25rem;
- background-image: linear-gradient(90deg, #9C6CFA, #4979FF);
- border-radius: 1.25rem;
- color: #ffffff;
- display: flex;
- justify-content: center;
- align-items: center;
- text-decoration: none;
- font-size: 14px;
- }
- .iphoneX {
- display: none;
- width: 100%;
- height: 34px;
- }
|