| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @import "/css/form2.wxss";
- .right-text{
- display: inline-block;
- text-align: right;
- width: 200rpx;
- font-size: 32rpx;
- color: rgba(0, 0, 0, .3);
- }
- .logo{
- width: 120rpx;
- height: 120rpx;
- border-radius: 8rpx;
- }
- .submit_but{
- margin-top:160rpx;
- }
- /* 选择合作方式 */
- .pattern-item-box{
- position:absolute;
- width: 100%;
- top: 65rpx;
- }
- .pattern-item{
- width: 100%;
- background-color: #ffffff;
- border: 2rpx solid #e8e8e8;
- border-radius: 8rpx;
- bottom: -70rpx;
- box-shadow: 0 0 8rpx 0 rgba(0, 0, 0, 0.1);
- }
- .pattern-item>view{
- line-height: 70rpx;
- text-align: center;
- color: rgba(0, 0, 0, 0.5);
- }
- .pattern-item::after{
- position: absolute;
- content: '';
- display: block;
- width: 15rpx;
- height: 15rpx;
- background-color:#fff;
- transform:rotate(45deg);
- border: 2rpx solid #e8e8e8;
- border-bottom: 0;
- border-right: 0;
- top: 0;
- margin-top: -9rpx;
- left: 75%;
- }
|