123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- .soldier-component .cert-detail-component {
- overflow: hidden;
- position: relative;
- padding: 24rpx 24rpx 0 24rpx;
- background-size: cover;
- background-color: #fff;
- background-repeat: no-repeat;
- background-position: center;
- }
- .soldier-component .cert-detail-component .loading-container-center {
- display: flex;
- align-items: center;
- justify-content: center;
- min-height: 400rpx;
- }
- .soldier-component .cert-detail-component .cert-detail-component-header {
- display: flex;
- margin-bottom: 48rpx;
- }
- .soldier-component .cert-detail-component .cert-detail-component-header .cert-icon {
- width: 54rpx;
- height: 54rpx;
- border-radius: 50%;
- margin-right: 24rpx;
- background-color: #fff;
- overflow: hidden;
- }
- .soldier-component .cert-detail-component .cert-detail-component-header .cert-icon image {
- width: 100%;
- height: 100%;
- }
- .soldier-component .cert-detail-component .cert-detail-component-header .cert-detail-name {
- flex: 1;
- font-size: 34rpx;
- color: #fff;
- line-height: 48rpx;
- font-weight: 800;
- }
- .soldier-component .cert-detail-component .cert-detail-content {
- display: flex;
- margin-bottom: 158rpx;
- }
- .soldier-component .cert-detail-component .cert-detail-content .cert-avatar {
- width: 150rpx;
- height: 190rpx;
- margin-right: 24rpx;
- background-color: #fff;
- border-radius: 8rpx;
- overflow: hidden;
- }
- .soldier-component .cert-detail-component .cert-detail-content .cert-avatar image {
- width: 100%;
- height: 100%;
- display: block;
- }
- .soldier-component .cert-detail-component .cert-detail-content .cert-info-content {
- flex: 1;
- overflow: hidden;
- }
- .soldier-component .cert-detail-component .cert-detail-content .cert-info-row {
- display: flex;
- line-height: 32rpx;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .soldier-component .cert-detail-component .cert-detail-content .cert-info-row:last-child {
- margin-bottom: 0;
- }
- .soldier-component .cert-detail-component .cert-detail-content .cert-info-label {
- width: 128rpx;
- text-align: right;
- font-size: 24rpx;
- color: rgba(255, 255, 255, 0.8);
- }
- .soldier-component .cert-detail-component .cert-detail-content .cert-info-value {
- flex: 1;
- font-size: 24rpx;
- color: #fff;
- font-weight: 800;
- }
- .soldier-component .cert-detail-component .view-button {
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 2;
- height: 108rpx;
- position: absolute;
- display: flex;
- background-color: rgba(0, 0, 0, 0.1);
- }
- .soldier-component .cert-detail-component .view-button .view-button-item {
- flex: 1;
- position: relative;
- }
- .soldier-component .cert-detail-component .view-button .view-button-item::after {
- content: '';
- display: block;
- width: 1px;
- height: 44rpx;
- background: #fff;
- position: absolute;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- .soldier-component .cert-detail-component .view-button .view-button-item:last-child::after {
- display: none;
- }
- .soldier-component .cert-detail-component .view-button .view-button-item-inner {
- display: flex;
- height: 100%;
- font-size: 30rpx;
- color: #fff;
- align-items: center;
- justify-content: center;
- }
- .soldier-component .cert-detail-component .view-button .qr-image {
- width: 38rpx;
- height: 38rpx;
- margin-right: 20rpx;
- }
- .soldier-component .cert-detail-component .view-button .qr-image image {
- width: 100%;
- height: 100%;
- }
|