12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page {
- height: 100%;
- }
- .content {
- width: 750rpx;
- height: 100%;
- background-color: #f8f6f6;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .content .box {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .content .box .img {
- height: 181rpx;
- width: 180rpx;
- }
- .content .box .img image {
- height: 181rpx;
- width: 180rpx;
- }
- .content .box .info {
- margin-top: 67rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .content .box .info .succeed {
- color: #333;
- font-size: 32rpx;
- }
- .content .box .info .wait {
- color: #707070;
- font-size: 28rpx;
- margin-top: 18rpx;
- }
- .content .box button {
- width: 464rpx;
- height: 77rpx;
- background-color: #cb3f33;
- border-radius: 38px;
- color: #FFFFFF;
- font-size: 34rpx;
- margin-top: 48rpx;
- }
|