| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .detail_header {
- background-color: #fff;
- width: 750px;
- padding: 40px;
- padding-bottom: 20px;
- display: flex;
- flex-direction: row;
- box-sizing: border-box;
- min-height: 100vh;
- }
- html page {
- background-color: #fff;
- }
- .detail_header_header {
- margin-right: 24px;
- width: 74px;
- height: 74px;
- border-radius: 37px;
- }
- .detail_header_content {
- display: flex;
- flex-direction: column;
- flex: 1;
- }
- .detail_nickname {
- color: #5C7099;
- font-weight: bold;
- font-size: 34px;
- line-height: 42px;
- margin-bottom: 24px;
- }
- .add_note {
- background-color: #f5f5f5;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- height: 112px;
- padding-bottom: constant(safe-area-inset-bottom);
- /* 兼容 iOS < 11.2 */
- padding-bottom: env(safe-area-inset-bottom);
- font-size: 26px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #5C7099;
- }
- .publish_bg {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.9);
- box-sizing: border-box;
- padding-left: 72px;
- padding-right: 72px;
- display: flex;
- flex-direction: column;
- }
- .time {
- color: #5C7099;
- margin-bottom: 30px;
- }
- .toolbar2 {
- height: 172px;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding-left: 72px;
- padding-right: 72px;
- margin-left: -72px;
- margin-right: -72px;
- box-sizing: border-box;
- // margin-bottom: constant(safe-area-inset-bottom);
- // margin-bottom: env(safe-area-inset-bottom);
- }
- .album {
- width: 72px;
- height: 72px;
- margin-right: 48px;
- }
- .btn {
- display: flex;
- color: #fff;
- width: 128px;
- height: 72px;
- border-radius: 18px;
- align-items: center;
- justify-content: center;
- }
- .detail_time {
- color: #5C7099;
- margin-top: 10px;
- }
- .myTextarea {
- line-height: 72px;
- font-size: 48px;
- // width: 606px;
- margin-left: -10px;
- width: 630px;
- color: #fff;
- }
- .share_btn_bg {
- position: relative;
- width: 80px;
- height: 40px;
- }
- .share_icon_bg {
- width: 80px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .share_btn {
- position: absolute;
- opacity: 0;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- }
- .no_data_bg2{
- display: flex;
- flex-direction: column;
- // width: '100%';
- // height: '100%';
- align-items: center;
- justify-content: center;
- }
|