1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .container {
- width: 100%;
- min-height: 100vh;
- padding: 50rpx 30rpx;
- border-radius: 40rpx 40rpx 10rpx 10rpx;
- background-color: white;
- .title {
- position: relative;
- margin-bottom: 20rpx;
- margin-left: 30rpx;
- font-size: 30rpx;
- font-weight: bold;
- color: #0F0F0F;
- }
- .title:before {
- position: absolute;
- content: '';
- left: -22rpx;
- top: 14rpx;
- width: 14rpx;
- height: 14rpx;
- background: #FF9D69;
- border-radius: 50%;
- }
- .text {
- font-size: 30rpx;
- color: #333;
- line-height: 60rpx;
- }
- .table {
- width: 620rpx;
- margin: 0 auto 26rpx;
- .header {
- margin-top: 10px;
- padding: 12rpx 0;
- background: #FF9D69;
- border: 1rpx solid #FF9D69;
- color: white;
- font-size: 22rpx;
- text-align: center;
- }
- .tr {
- display: flex;
- align-items: center;
- font-size: 26rpx;
- color: #1A1A1A;
- text-align: center;
- border: 1rpx solid #F6CFBA;
- border-top: none;
- view {
- padding: 12rpx 0;
- box-sizing: border-box;
- }
- .td1 {
- width: 170rpx;
- border-right: 1rpx solid #F6CFBA;
- }
- .td2 {
- flex: 1;
- border-right: 1rpx solid #F6CFBA;
- }
- .td3 {
- width: 200rpx;
- }
- }
- }
- .desc {
- margin-top: 12rpx;
- font-size: 28rpx;
- color: #333;
- }
- }
|