12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- Page {
- background-color: black;
- }
- .view {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- display: flex;
- }
- .border {
- position: fixed;
- }
- /* button-view */
- .button-view-bg,
- .button-view-bg-X {
- width: 100%;
- position: fixed;
- bottom: 0;
- background-color: black;
- display: flex;
- }
- .button-view-bg {
- height: 316rpx;
- }
- .button-view-bg-X {
- height: 384rpx;
- }
- .button-view {
- width: 100%;
- height: 316rpx;
- display: flex;
- }
- .button-view>image {
- width: 148rpx;
- height: 148rpx;
- margin: auto auto;
- }
- .button-view>view:first-child,
- .button-view>view:last-child {
- font-family: PingFangSC-Regular;
- font-size: 32rpx;
- color: #FFFFFF;
- width: 128rpx;
- height: 128rpx;
- text-align: center;
- line-height: 128rpx;
- }
- .button-view>view:first-child {
- margin: auto 0 auto 48rpx;
- }
- .button-view>view:last-child {
- margin: auto 48rpx auto 0;
- }
|