123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /**app.wxss**/
- page {
- color: #212121;
- width: 750rpx;
- height: 100vh;
- font-weight: 400;
- }
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- }
- button {
- background: initial;
- }
- button:focus{
- outline: 0;
- }
- button::after{
- border: none;
- }
- page {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- font-weight: 400;
- width: 750rpx;
- height: 100vh;
- font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,Helvetica,Segoe UI,Arial,Roboto,PingFang SC,miui,Hiragino Sans GB,Microsoft Yahei,sans-serif;
- }
- .userinfo, .uploader, .tunnel {
- margin-top: 40rpx;
- height: 140rpx;
- width: 100%;
- background: #fff;
- border: 1px solid rgba(0, 0, 0, 0.1);
- border-left: none;
- border-right: none;
- display: flex;
- flex-direction: row;
- align-items: center;
- transition: all 300ms ease;
- }
- .userinfo-avatar {
- width: 100rpx;
- height: 100rpx;
- margin: 20rpx;
- border-radius: 50%;
- background-size: cover;
- background-color: white;
- }
- .userinfo-avatar:after {
- border: none;
- }
- .userinfo-nickname {
- font-size: 32rpx;
- color: #007aff;
- background-color: white;
- background-size: cover;
- }
- .userinfo-nickname::after {
- border: none;
- }
- .uploader, .tunnel {
- height: auto;
- padding: 0 0 0 40rpx;
- flex-direction: column;
- align-items: flex-start;
- box-sizing: border-box;
- }
- .uploader-text, .tunnel-text {
- width: 100%;
- line-height: 52px;
- font-size: 34rpx;
- color: #007aff;
- }
- .uploader-container {
- width: 100%;
- height: 400rpx;
- padding: 20rpx 20rpx 20rpx 0;
- display: flex;
- align-content: center;
- justify-content: center;
- box-sizing: border-box;
- border-top: 1px solid rgba(0, 0, 0, 0.1);
- }
- .uploader-image {
- width: 100%;
- height: 360rpx;
- }
- .tunnel {
- padding: 0 0 0 40rpx;
- }
- .tunnel-text {
- position: relative;
- color: #222;
- display: flex;
- flex-direction: row;
- align-content: center;
- justify-content: space-between;
- box-sizing: border-box;
- border-top: 1px solid rgba(0, 0, 0, 0.1);
- }
- .tunnel-text:first-child {
- border-top: none;
- }
- .tunnel-switch {
- position: absolute;
- right: 20rpx;
- top: -2rpx;
- }
- .disable {
- color: #888;
- }
- .service {
- position: fixed;
- right: 40rpx;
- bottom: 40rpx;
- width: 140rpx;
- height: 140rpx;
- border-radius: 50%;
- background: linear-gradient(#007aff, #0063ce);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
- display: flex;
- align-content: center;
- justify-content: center;
- transition: all 300ms ease;
- }
- .service-button {
- position: absolute;
- top: 40rpx;
- }
- .service:active {
- box-shadow: none;
- }
- .request-text {
- padding: 20rpx 0;
- font-size: 24rpx;
- line-height: 36rpx;
- word-break: break-all;
- }
- .headImg {
- width: 730rpx;
- height: 243rpx;
- display: block;
- margin-right: auto;
- margin-left: auto;
- border-radius: 22.5rpx;
- }
|