| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- .cancel-voyage {
- width: 100vw;
- height: 80rpx;
- background: rgba(255, 100, 47, 0.15);
- text-align: center;
- line-height: 80rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FF6E38;
- position: fixed;
- top: 0;
- z-index: 100;
- }
- .tabsview {
- height: 80rpx;
- line-height: 84rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #9199A3;
- }
- .current-tab {
- color: #363F4A;
- border-bottom: 6rpx solid #0089FD;
- font-size: 32rpx;
- }
- .scroll {
- width: 100vw;
- background: #FFFFFF;
- border-radius: 12rpx;
- height: calc(100vh - 410rpx);
- font-size: 28rpx;
- color: #222;
- padding-bottom: 50rpx;
- background: #FFFFFF;
- border-radius: 12rpx;
- padding: 40rpx 30rpx;
- }
- .line {
- margin-bottom: 20rpx;
- }
- .line-full-item {
- display: flex;
- align-items: center;
- }
- .line-full-title {
- width: 240rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #BDC2C8;
- }
- .line-text {
- flex: 1;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #6C6C6C;
- }
- .mask {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 101;
- background: rgba(0, 0, 0, 0.4);
- }
- .mask>view {
- width: 640rpx;
- height: 362rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- position: fixed;
- top: 358rpx;
- left: calc(50vw - 320rpx);
- }
- picker,
- .d-input {
- border: 1rpx solid grey;
- padding: 0rpx 10rpx;
- }
- .upload {
- width: 60%;
- height: 100rpx;
- text-align: center;
- line-height: 100rpx;
- border: 1px solid grey;
- margin: 3vw auto;
- }
- .ship-owner-title {
- width: 300rpx;
- text-align: center;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #20252E;
- margin: 40rpx auto;
- }
- .btns {
- height: 113rpx;
- border-bottom-left-radius: 10rpx;
- border-bottom-right-radius: 10rpx;
- border-top: 1rpx solid rgba(0, 0, 0, 0.25);
- margin-top: 50rpx;
- }
- .btn {
- width: 50%;
- line-height: 100rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #0089FD;
- text-align: center;
- }
- .btn-1 {
- color: #20252E;
- height: 102rpx;
- border-right: 1rpx solid rgba(0, 0, 0, 0.25);
- }
|