123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /* pages/wx_authority/wx_authority.wxss */
- /* page{
- background: #F3A010;
- } */
- .bg {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- /* .logo {
- text-align: center;
- padding:0;
- margin: 0;
- } */
- .logo{
- position:absolute;
- top:0;
- left:0;
- width:100%;
- height:100%;
- padding:0;
- margin: 0;
- }
- .content {
- /* position: fixed;
- top: 0;
- left: 0; */
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-
- }
- .button {
- width: 392rpx;
- height: 104rpx;
- background: transparent;
- cursor: pointer;
- position: fixed;
- bottom: 60rpx;
- margin: 0;
- padding: 0;
- }
- .button-img{
- width: 392rpx;
- height: 104rpx;
- }
- button::after{
- border: none;
- }
- .button-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 463rpx;
- height: 96rpx;
- }
- .button-text {
- font-size: 36rpx;
- color: #fff;
- margin-top: 20rpx;
- text-align: center
- }
- .no{
- text-align: center;
- margin-top: 40%;
- font-size: 36rpx;
- color: #BFBFBF;
- }
- .noImg{
- width: 551rpx;
- height: 400rpx;
- }
- .deal{
- margin-top: 73rpx;
- color: #7C819D;
- font-size: 24rpx;
- text-align: center;
- }
- .deal-item{
- display: inline-block;
- text-decoration: underline;
- }
- radio .wx-radio-input{
- border-radius: 50%;
- width: 26rpx;
- height: 26rpx;
- border: 1rpx solid #FF6465;
- }
- /* 选中后的 背景样式 */
- radio .wx-radio-input.wx-radio-input-checked{
- border: none;
- background: #FF6465;
- }
- /* 选中后的 对勾样式 */
- radio .wx-radio-input.wx-radio-input-checked::before{
- border-radius: 50%;
- width: 26rpx;
- height: 26rpx;
- line-height: 26rpx;
- text-align: center;
- font-size:20rpx; /* 对勾大小 */
- color:#fff;
- background: #FF6465;
- transform:translate(-50%, -50%) scale(1);
- -webkit-transform:translate(-50%, -50%) scale(1);
- }
|