| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- button::after {
- border: none;
- background-color: none;
- }
- button {
- position: relative;
- display: block;
- margin-left: auto;
- margin-right: auto;
- padding-left: 0px;
- padding-right: 0px;
- box-sizing: border-box;
- text-decoration: none;
- line-height: 1.35;
- overflow: hidden;
- color: #666666;
- /* background-color: #fff; */
- background-color: rgba(255, 255, 255, 0) !important;
- width: 100%;
- height: 100%;
- }
- .btn-bg {
- width: 64px;
- height: 28px;
- background: linear-gradient(90deg, #CDA26E 0%, #DCB78A 100%);
- border-radius: 28px;
- text-align: center;
- line-height: 28px;
- margin-top: 10rpx;
- color: '#604320'
- }
- page {
- background: #F5F5F5;
- }
- .content {
- width: 100%;
- }
- .btn {
- font-size: 24rpx;
- /* width: 95%; */
- text-align: center;
- background: #FFFFFF;
- margin-top: 6rpx;
- }
- .head {
- /* width: 100%; */
- /* height: 200rpx; */
- display: flex;
- align-items: center;
- padding: 30rpx;
- border-radius: 16rpx;
- background-image: linear-gradient(#FEFBDA, #F7F7F7);
- }
- .head_image {}
- .head_image>image {
- width: 90rpx;
- height: 90rpx;
- border-radius: 50%
- }
- .head_name {
- margin-left: 10rpx;
- }
- .name {
- font-size: 38rpx;
- font-weight: bold;
- }
- .approve {
- position: absolute;
- top: 100rpx;
- font-size: 24rpx;
- color: #999999;
- }
- /* 列表 */
- .use_list {
- width: 100%;
- background: #ffffff;
- margin-top: 20rpx;
- }
- .list_box {
- width: 90%;
- margin: 0 auto;
- display: flex;
- height: 110rpx;
- }
- .box_left {
- flex: 1;
- display: flex;
- justify-content: left;
- align-items: center;
- }
- .box_right {
- flex: 1;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- color: #808080;
- }
- .use_name {
- margin-left: 30rpx;
- font-size: 32rpx;
- }
- .use_image image {
- width: 50rpx;
- height: 50rpx;
- }
- .center {
- width: 94%;
- /* line-height: 1.5; */
- background-color: #FFFFFF;
- border-radius: 18rpx;
- margin: 0 auto 0;
- display: flex;
- justify-content: space-between;
- }
- .header_text2 {
- font-size: 24rpx;
- font-weight: 500;
- color: #999999;
- margin-top: 10rpx;
- }
- .header_text4 {
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- }
|