123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- .operateData {
- width: 100vw;
- min-height: 100vh;
- background-color: rgb(247, 247, 247);
- padding: 32rpx;
- padding-bottom: 50rpx;
- box-sizing: border-box;
- .operate-box {
- width: 100%;
- padding: 4rpx 0 32rpx 0;
- height: 304rpx;
- border-radius: 16rpx;
- box-sizing: border-box;
- background: linear-gradient(115deg, #fe4b1e 0%, #fb8857 100%);
- @include flex(center, null);
- flex-wrap: wrap;
- .operate-item {
- margin-left: 32rpx;
- width: 310rpx;
- height: 104rpx;
- position: relative;
- padding-left: 48rpx;
- padding-top: 12rpx;
- box-sizing: border-box;
- margin-top: 32rpx;
- .item-icon {
- position: absolute;
- left: 4rpx;
- top: 8rpx;
- }
- .item-text {
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- text {
- &:nth-of-type(1) {
- color: rgba(255, 255, 255, 0.8);
- font-size: 24rpx;
- font-weight: 500;
- }
- &:nth-of-type(2) {
- color: #ffffff;
- font-size: 28rpx;
- font-weight: 900;
- }
- }
- }
- &.border {
- border-right: 2rpx solid rgba(255, 255, 255, 0.2);
- }
- }
- }
- .list-container {
- margin-top: 32rpx;
- .list-title {
- margin-bottom: 24rpx;
- color: rgba(0, 0, 0, 0.9);
- font-size: 32rpx;
- font-weight: 600;
- }
- .list-box {
- width: 100%;
- height: 362rpx;
- padding: 32rpx;
- box-sizing: border-box;
- background-color: #ffffff;
- border-radius: 32rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- .custom-container {
- margin-top: 32rpx;
- .custom-title {
- margin-bottom: 24rpx;
- color: rgba(0, 0, 0, 0.9);
- font-size: 32rpx;
- font-weight: 600;
- }
- .custom-list{
- .item{
- margin-top: 16rpx;
- width: 100%;
- height: 484rpx;
- padding: 0 32rpx;
- box-sizing: border-box;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- .item-top{
- padding: 24rpx 0;
- display: flex;
- justify-content: center;
- flex-direction: column;
- gap: 16rpx;
- border-bottom: 2rpx solid #EEEEEE;
- text{
- height: 44rpx;
- line-height: 44rpx;
- &:nth-of-type(1){
- font-size: 32rpx;
- color: rgba(0, 0, 0, 0.9);
- font-weight: 600;
- }
- &:nth-of-type(2){
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.26);
- }
- }
- }
- .item-bottom{
- width: 100%;
- padding-top: 8rpx;
- padding-bottom: 32rpx;
- box-sizing: border-box;
- .text-box{
- height: 44rpx;
- line-height: 44rpx;
- margin-top: 16rpx;
- @include flex(flex-start,null,32rpx);
- text{
- &:nth-of-type(1){
- width: 176rpx;
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.4);
- }
- &:nth-of-type(2){
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.9);
- }
- }
- }
- }
- }
- }
- }
- }
|