| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- page {
- font-family: PingFangSC-Medium, PingFang SC;
- background-color: #F5F5F5;
- padding-bottom: 121rpx;
- }
- /* 主题信息 */
- .content {
- background: #fff;
- margin: 20rpx 0;
- }
- .header {
- height: 116rpx;
- font-size: 34rpx;
- /* font-weight: 500; */
- padding: 0 30rpx;
- box-sizing: border-box;
- border-bottom: 1rpx solid #F5F5F5;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .check-jianli {
- color: #0177FF;
- font-size: 30rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .check-jianli image {
- width: 17rpx;
- height: 29rpx;
- margin-left: 15rpx;
- }
- .info {
- height: 280rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1rpx solid #F5F5F5;
- }
- .touxiang {
- height: 200rpx;
- width: 200rpx;
- border: 2px solid rgba(238, 238, 238, 1);
- box-sizing: border-box;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 45rpx;
- }
- .touxiang image {
- width: 178rpx;
- height: 178rpx;
- border-radius: 50%;
- }
- .info-content {
- flex: 1;
- height: 65%;
- color: #666;
- font-size: 30rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .nickname {
- font-size: 48rpx;
- color: #000;
- }
- .idcrad {
- height: 116rpx;
- padding: 0 30rpx;
- color: #666666;
- font-size: 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- border-bottom: 1rpx solid #F5F5F5;
- }
- .authentication {
- color: #000;
- }
- .authentication-img {
- width: 92rpx;
- height: 32rpx;
- }
- .choose {
- height: 116rpx;
- display: flex;
- padding: 0 30rpx;
- box-sizing: border-box;
- align-items: center;
- justify-content: space-between;
- }
- .leftinfo {
- color: #666666;
- font-size: 30rpx;
- }
- .radio-content {
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- .radio-content image {
- width: 40rpx;
- height: 40rpx;
- }
- .radio {
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- width: 100%;
- opacity: 0;
- }
- /* btn */
- .fixed-footer {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- }
- .btn-group {
- height: 124rpx;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .button {
- height: 88rpx;
- width: 690rpx;
- color: #fff;
- font-size: 34rpx;
- background: #0177FF;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- .button button {
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- width: 100%;
- opacity: 0;
- }
- /* 提示信息 */
- .start-message {
- color: #000;
- font-size: 34rpx;
- padding: 20rpx 30rpx;
- }
|