123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /* 导航栏 */
- .nav {
- background-color: #101010;
- z-index: 3;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- /* height: 10%; */
- height: .88rem;
- display: flex;
- }
- .back{
- position: absolute;
- left: 0;
- top: 0;
- z-index: 3;
- width: 10%;
- height: .88rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .back img {
- width: .18rem;
- }
- /* 页面标题 */
- .pageTitle {
- height: .88rem;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #000;
- }
- .pageTitle img {
- width: 1.6rem;
- height: .8rem;
- }
- .comment {
- padding: 1rem .26rem;
- }
- .commentTitle {
- color: #EAEAEA;
- font-size: .38rem;
- }
- .commentList {
- }
- .commentContent {
- margin-top: .3rem;
- }
- .commentUser {
- display: flex;
- align-items: center;
- }
- .background {
- background-color: #1C1A1B;
- height: .48rem;
- }
- .commentUserImg {
- width: .4rem;
- height: .44rem;
- }
- .commentUserName {
- margin-left: .2rem;
- color: #CCCCCC;
- }
- .commentTime {
- margin-left: .2rem;
- color: #CCCCCC;
- font-size: .24rem;
- }
- .commentText {
- margin-top: .2rem;
- color: #CCCCCC;
- font-size: .28rem;
- }
- .commentBox {
- margin-top: .2rem;
- padding: .3rem;
- background-color: #2f2f2f;
- height: 1.4rem;
- }
- textarea {
- background-color: #2f2f2f;
- border: none;
- outline: none;
- resize: none;
- height: 100%;
- line-height: 100%;
- width: 100%;
- color: #fff;
- }
- .accountAndSend {
- margin-top: .3rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .account {
- display: flex;
- align-items: center;
- }
- .userImg {
- width: .4rem;
- height: 0.44rem;
- }
- .userName {
- color: #CCCCCC;
- margin-left: .2rem;
- }
- .sendBtn {
- width: 2.6rem;
- height: .88rem;
- line-height: .88rem;
- text-align: center;
- background-color: #CE5C2A;
- border-radius: .16rem;
- color: #EAEAEA;
- font-size: .32rem;
- }
|