123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- }
- .content {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .content > scroll-view {
- width: 100%;
- height: 100%;
- background-color: #ffffff;
- }
- .content .head {
- width: 100%;
- height: 200rpx;
- background: #738DA7;
- box-sizing: border-box;
- padding: 46rpx 0 0 52rpx;
- color: #ffffff;
- display: flex;
- flex-direction: column;
- font-size: 38rpx;
- }
- .content .head > text:last-child {
- font-size: 30rpx;
- margin-top: 20rpx;
- }
- .content .body {
- box-sizing: border-box;
- padding: 62rpx 0 0 52rpx;
- }
- .content .body > .item {
- display: flex;
- padding-bottom: 60rpx;
- margin-bottom: 6rpx;
- box-sizing: border-box;
- padding-left: 80rpx;
- position: relative;
- }
- .content .body > .item > view:first-child {
- display: flex;
- flex-direction: column;
- }
- .content .body > .item > .detail {
- font-size: 32rpx;
- color: #3296FB;
- margin-left: 40rpx;
- }
- .content .imgBox{
- position: absolute;
- top: 0;
- left: 0;
- width: 40rpx;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .content .body > .item .image-current {
- width: 40rpx;
- height: 40rpx;
- left: 0;
- }
- .content .body > .item .image {
- width: 16rpx;
- height: 16rpx;
- left: 12rpx;
- }
- .content .body > .item .image-start {
- width: 24rpx;
- height: 24rpx;
- left: 8rpx;
- }
- .content .body > .item .imageLine {
- flex: 1;
- width: 4rpx;
- margin-top: 6rpx;
- }
- .content .body > .item > view:first-child > text:first-child {
- font-size: 32rpx;
- color: #808080;
- margin-bottom: 12rpx;
- }
- .content .body > .item > view:first-child > text:last-child {
- font-size: 26rpx;
- color: #999999;
- }
- .content > .footer {
- width: 100%;
- position: fixed;
- bottom: 0;
- z-index: 999;
- background: #ffffff;
- box-sizing: border-box;
- padding: 0 32rpx;
- }
- .content > .footer > .tips {
- width: 100%;
- font-size: 28rpx;
- color: #666666;
- text-align: justify;
- margin-bottom: 42rpx;
- }
- .content > .footer > .tips > .line {
- position: relative;
- left: -32rpx;
- width: 750rpx;
- height: 2rpx;
- background: #eeeeee;
- transform: scaleY(0.5);
- margin-bottom: 38rpx;
- }
- .content > .footer > .btn,.content > .footer > .btn-X {
- height: 90rpx;
- text-align: center;
- line-height: 90rpx;
- color: #ffffff;
- font-size: 32rpx;
- background: #3296FB;
- border-radius: 45rpx;
- }
- .btn-X{
- margin-bottom: 68rpx;
- }
|