12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* pages/link/index.wxss */
- .link {
- width: 100vw;
- padding: 30rpx;
- }
- .step {
- background: #FCEDE3;
- padding: 30rpx 50rpx;
- display: flex;
- margin-bottom: 20rpx;
- }
- .item1 {
- flex: 1;
- text-align: center;
- position: relative;
- }
- .item1 image {
- width: 60rpx;
- height: 60rpx;
- }
- .info {
- color: #999;
- }
- .info image {
- width: 40rpx;
- height: 40rpx;
- vertical-align: middle;
- }
- .item1 text {
- display: block;
- color: #F86B38;
- font-size: 22rpx;
- }
- .item1::after {
- content: ">";
- color: #F86B38;
- position: absolute;
- top: 50%;
- transform: translate(0,-70%);
- right: -10%;
- font-size: 22rpx;
- }
- .item1:last-child::after {
- content: "";
- }
- textarea {
- width: calc(100% - 40rpx);
- background: #fff;
- border: 1rpx solid #D6E4EF;
- padding: 20rpx;
- }
- .btn {
- margin-top: 20rpx;
- display: flex;
- text-align: center;
- column-gap: 95rpx;
- }
- .button {
- flex: 1;
- border: 2rpx solid #2662FF;
- color: #2662FF;
- background: #fff;
- font-size: 26rpx;
- margin: 0 10rpx;
- height: 70rpx;
- line-height: 70rpx;
- border-radius: 12rpx;
- font-size: 32rpx;
- }
- .item {
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #fff;
- padding: 20rpx;
- font-size: 30rpx;
- border-bottom: 2rpx solid #EDEDED;
- }
- .start {
- display: block;
- width: 80%;
- height: 80rpx;
- line-height: 80rpx;
- margin: 50rpx auto;
- background: #2662FF;
- color: #fff;
- border-radius: 50rpx;
- text-align: center;
- font-size: 32rpx;
- }
|