123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- .page{
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- background-color: #161616;
- }
- .logo{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 200rpx;
- image{
- width: 140rpx;
- height: 140rpx;
- }
- }
- .versions{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 80rpx;
- text{
- font-size: 26rpx;
- color: #ffffff;
- }
- }
- .code{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- image{
- width: 620rpx;
- }
- text{
- color: #ffffff;
- font-size: 26rpx;
- margin-top: 20rpx;
- }
- }
- .about-list{
- padding: 0 4%;
- background-color: #161616;
- border-radius: 20rpx;
- margin: 20rpx auto;
- .list{
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 80rpx;
- border-bottom: 2rpx solid #f6f6f6;
- .title{
- display: flex;
- align-items: center;
- text{
- font-size: 26rpx;
- color: #222222;
- }
- }
- .more{
- display: flex;
- align-items: center;
- text{
- font-size: 26rpx;
- color: #666666;
- }
- }
- }
- }
- .faq-list{
- padding: 0 4%;
- border-radius: 20rpx;
- margin: 20rpx auto;
- .list{
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- flex-direction: column;
- width: 100%;
- border-bottom: 2rpx solid #f6f6f6;
- padding-bottom: 20rpx;
- padding-top: 10rpx;
- .title{
- display: flex;
- align-items: center;
- text{
- font-size: 26rpx;
- line-height: 42rpx;
- color: #222222;
- }
- }
- .content{
- display: flex;
- align-items: center;
- padding-left: 40rpx;
- text{
- font-size: 26rpx;
- line-height: 42rpx;
- color: #666666;
- }
- }
- }
- }
- .xy-list{
- padding: 0 4%;
- border-radius: 20rpx;
- margin: 20rpx auto;
- .list{
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- flex-direction: column;
- width: 100%;
- border-bottom: 2rpx solid #f6f6f6;
- padding-bottom: 20rpx;
- padding-top: 10rpx;
- .content{
- display: flex;
- align-items: center;
- padding-left: 20rpx;
- text{
- font-size: 26rpx;
- line-height: 42rpx;
- color: #ffffff;
- }
- }
- }
- }
- .copyright{
- position: fixed;
- left: 0;
- bottom: 0;
- display: flex;
- flex-direction:column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 200rpx;
- text{
- font-size: 26rpx;
- color: #ffffff;
- margin-bottom: 10rpx;
- }
- }
|