12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .content {
- text-align: center;
- background: #fff;
- width: 557rpx;
- height: 333rpx;
- position: absolute;
- top: 25%;
- right: 0;
- left: 0;
- margin: auto;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx;
- font-size: 28rpx;
- box-shadow: 0 5rpx 10rpx rgba(0, 0, 0, .4);
- }
- .img{
- width: 100%;
- height:150rpx ;
- }
- .content image{
- width: 125rpx;
- height: 115rpx;
- margin-top: 25rpx;
- }
- .ins {
- font-size: 24rpx;
- position: absolute;
- top: 20rpx;
- right: 20rpx;
- }
- .title {
- font-size: 32rpx;
- font-weight: 700;
- margin: 80rpx 40rpx 40rpx;
- }
- .btn-group {
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- width: 147rpx;
- height: 63rpx;
- margin: 20rpx 40rpx;
- background: var(--themeColor);
- border-radius: 30rpx;
- position: relative;
- top: 40rpx;
- }
- .makeSurePopup {
- text-align: center;
- color: #000;
- line-height: 63rpx;
- /* padding: 0 80rpx; */
-
- font-size: 28rpx;
- }
|