123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* pages/partnerShare/partnerShare.wxss */
- .container{
- display: block;
- min-height: 100vh;
- background-color: #fff;
- }
- .mine_bg{
- display: block;
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 0;
- }
- .main_content{
- position: relative;
- }
- /* 用户信息 */
- .user_infor{
- padding: 70rpx 0 0 0;
- position: relative;
- z-index: 1;
- }
- .user_photo{
- display: block;
- width: 110rpx;
- height: 110rpx;
- margin: 0 auto;
- border-radius: 100%;
- }
- .user_name{
- font-size: 24rpx;
- line-height: 78rpx;
- color: #505050;
- text-align: center;
- }
- .partner_title{
- display: block;
- width: 100%;
- height: 94rpx;
- }
- .content_cont{
- position: relative;
- z-index: 1;
- }
- .content_intro{
- text-align: center;
- margin: 50rpx 0 0 0;
- }
- .content_intro_cont{
- display: inline-block;
- }
- .each_intro{
- font-size: 22rpx;
- line-height: 100rpx;
- color: #af9d77;
- border-bottom: 3px solid #fff;
- background-color: #fdf6ea;
- }
- .each_intro_title{
- background-color: #f9f0d7;
- }
- .each_intro_left{
- float: left;
- width: 232rpx;
- border-right: 2px solid #fff;
- }
- .each_intro_right{
- float: left;
- width: 412rpx;
- }
- .add_btn{
- width: 646rpx;
- height: 100rpx;
- font-size: 30rpx;
- line-height: 100rpx;
- text-align: center;
- color: #fff;
- background-color: #b4a078;
- margin: 24rpx auto 0;
- }
|