1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /**index.wxss**/
- .userinfo {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: #aaa;
- /* background-color: blue; */
- width: 100%;
- height: 70vh;
- }
- .userinfo video{
- width: 100%;
- height: 70vh;
- }
- .container_video {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
- .usermotto .motto{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .usermotto .title{
- font-size: 18px;
- margin-top: 40rpx;
- font-weight: 600;
- }
- .usermotto .cont{
- font-size: 14px;
- margin-top: 40rpx;
- font-weight: 400;
- color: #A1A1A1;
- }
- .red{
- color: #ff0000;
- }
- .usermotto .btn{
- width: 80vw;
- background-color: var(--globleColor);
- font-size: 14px;
- border-radius: 24rpx;
- /* padding: 24rpx; */
- bottom: 40rpx;
- color: #FFF;
- margin-top: 100rpx;
- }
|