12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .xr-info {
- position: absolute;
- right: 0;
- top: 0;
- width: 200rpx;
- height: 160rpx;
- padding: 20rpx;
- background-color: #000;
- border-radius: 5px 0 0 5px;
- }
- .info-text {
- font-size: 20rpx;
- line-height: 30rpx;
- padding: 0;
- color: #fff;
- }
- .info-text.title {
- font-size: 24rpx;
- line-height: 40rpx;
- font-weight: bold;
- }
- .xr-control {
- position: absolute;
- left: 20rpx;
- width: 700rpx;
- height: 80rpx;
- margin-top: -100rpx;
- text-align: left;
- }
- .xr-control button {
- display: inline-block;
- font-size: 24rpx;
- background-color: #fff;
- border-radius: 10rpx;
- width: 160rpx;
- height: 80rpx;
- line-height: 80rpx;
- padding: 0;
- margin-right: 10rpx;
- border: 1px solid #000;
- }
- .xr-block {
- text-align: center;
- margin: 20rpx;
- }
- .xr-block button {
- display: inline-block;
- font-size: 30rpx;
- background-color: #fff;
- border-radius: 10rpx;
- width: 90%;
- height: 80rpx;
- line-height: 80rpx;
- padding: 0;
- margin-right: 10rpx;
- border: 1px solid #000;
- }
|