12345678910111213141516171819202122232425262728293031323334 |
- .gd-public{
- position:fixed;
- top:100rpx;
- z-index:10;
- width:204rpx;
- height:92rpx;
- text-align:center;
- line-height:92rpx;
- box-shadow: #aaa 0px 1px 5px 0px;
- background:#fff;
- }
- .gd-circle{
- display:inline-block;
- width:50rpx;
- height:50rpx;
- text-align:center;
- line-height:50rpx;
- border-radius:50%;
- border:2rpx solid #00af66;
- margin-right:20rpx;
- }
- .gd-left{
- left:0;
- border-radius:0 20rpx 20rpx 0;
- }
- .gd-right{
- right:0;
- border-radius:20rpx 0rpx 0rpx 20rpx;
- font-weight: bold;
- color:#000;
- }
- .gd-img{
- width:100%;
- }
|