| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /* 盒子和头部标题 */
- .mr10 {
- margin-right: 10upx;
- }
- .public_con {
- background-color: #fff;
- box-shadow: 0px 0px 40upx 0px rgba(0, 0, 0, 0.06);
- border-radius: 24upx;
- margin-bottom: 30upx;
- overflow: hidden;
- }
- .public_con_nav {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 36upx;
- font-weight: 500;
- position: relative;
- padding: 0 30upx;
- height: 110upx;
- }
- .public_con_nav_name {
- font-size: 32upx;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- flex-shrink: 0;
- line-height: 1.4em;
- }
- .public_con_nav_tit {
- display: flex;
- align-items: center;
- line-height: 1.4em;
- }
- .public_line {
- width: 6upx;
- height: 32upx;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- margin: auto 0;
- }
- .public_info_list {
- padding: 0 30upx;
- display: inline-block;
- width: 100%;
- position: relative;
- background-color: #fff;
- }
- .public_info_item {
- display: flex;
- margin: 34upx 0;
- }
- .public_info_tit {
- width: 220upx;
- font-size: 28upx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: rgba(85, 85, 85, 1);
- line-height: 40upx;
- flex-shrink: 0;
- }
- .public_info_val {
- font-size: 28upx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- max-width: 400upx;
- align-items: flex-start;
- line-height: 40upx;
- word-break: break-all;
- }
- .public_info_foot {
- height: 110upx;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .public_icon {
- width: 50upx;
- height: 50upx;
- position: absolute;
- top: 0upx;
- bottom: 0;
- left: 24upx;
- margin: auto 0;
- }
|