| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- .container {
- min-height: 100vh;
- box-sizing: border-box;
- background: linear-gradient(180deg, #b8c7ff 0%, #f8f9ff 100%);
- }
- .wrap {
- background-image: url('./images/icon-bg.png');
- background-repeat: no-repeat;
- background-size: 100% auto;
- min-height: 100vh;
- box-sizing: border-box;
- }
- .userWrap {
- padding: 36px 0 0 48px;
- display: flex;
- .user {
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- .avator {
- width: 80px;
- height: 80px;
- border-radius: 50%;
- overflow: hidden;
- background-color: #fff;
- padding: 2px;
- }
- .avator > img {
- display: flex;
- width: 100%;
- height: 100%;
- object-fit: cover;
- border-radius: 50%;
- }
- .tips {
- display: flex;
- justify-content: space-around;
- align-items: center;
- height: 24px;
- padding: 0 10px;
- background: linear-gradient(180deg, #ff598e 0%, #fd2d55 100%);
- border-radius: 22px;
- color: #fff;
- font-size: 12px;
- font-weight: bold;
- margin-top: -10px;
- img {
- width: 10px;
- height: 10px;
- margin-right: 7px;
- }
- }
- }
- }
- .titleWrap {
- padding: 26px;
- color: #ffffff;
- line-height: 33px;
- text-shadow: 0px 0px 4px rgba(23, 78, 255, 0.5);
- font-weight: 600;
- font-size: 24px;
- .liveUser {
- font-size: 18px;
- }
- }
- .content {
- background: rgba(255, 255, 255, 0.8);
- border-radius: 14px;
- margin: 0 16px;
- padding: 14px 18px;
- font-size: 16px;
- line-height: 22px;
- color: #333;
- .top {
- position: relative;
- padding-left: 14px;
- font-size: 16px;
- font-weight: 600;
- margin-bottom: 12px;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 12%;
- height: 70%;
- width: 4px;
- background-color: var(--van-primary-color);
- border-radius: 4px;
- }
- }
- .comentWrap {
- margin-top: 16px;
- background: linear-gradient(270deg, #baffe7 0%, #c0dcff 100%);
- border-radius: 10px;
- padding: 14px;
- display: flex;
- align-items: center;
- .contentAvator{
- width: 38px;
- height: 38px;
- padding: 1px;
- background-color: #fff;
- border-radius: 50%;
- margin-right: 10px;
- img{
- width: 100%;
- height: 100%;
- display: block;
- border-radius: 50%;
- }
- }
- .comentTitle{
- font-size: 15Px;
- font-weight: bold;
- }
- .comentDes{
- font-size: 12Px;
- }
- }
- }
- .wxpopup {
- width: 100%;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, 0.5);
- z-index: 9999;
- img {
- width: 88%;
- margin: 0 6%;
- }
- }
|