hudong.scss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. page {
  2. background-color: #161616;
  3. }
  4. .page {
  5. background-color: #161616;
  6. }
  7. .topbg {
  8. }
  9. .topBody {
  10. width:750rpx;
  11. }
  12. .mainBody {
  13. width:750rpx;padding:1rpx 20rpx;display: flex;flex-direction: column;
  14. border-bottom: solid 2rpx #393939;
  15. .menu {
  16. display: flex;flex-direction: row;justify-content: space-between;padding:20rpx 0rpx 0rpx;
  17. .item {
  18. width:360rpx;border-radius: 18rpx;height:80rpx;display: flex;flex-direction:column;justify-content: center;align-items: center;
  19. margin:0 20rpx;color:#999999;
  20. .line {
  21. width: 36rpx;height: 8rpx;margin-top: 20rpx;
  22. background: #161616;
  23. border-radius: 4rpx 4rpx 4rpx 4rpx;
  24. }
  25. }
  26. .active {
  27. color:#fff;
  28. .line {
  29. width: 36rpx;height: 8rpx;margin-top: 20rpx;
  30. background: linear-gradient( 90deg, #FF5869 0%, #F83881 100%);
  31. border-radius: 4rpx 4rpx 4rpx 4rpx;
  32. }
  33. }
  34. }
  35. }
  36. .list_info {
  37. display: flex;flex-direction: column;justify-content: flex-start;align-items: center;color:#fff;
  38. width:750rpx;
  39. .item {
  40. width: 690rpx;height: 132rpx;margin-top: 10rpx;color:#fff;font-size: 28rpx;
  41. display: flex;flex-direction: row;justify-content: flex-start;align-items: center;
  42. .avator {
  43. width:110rpx;
  44. .icon {
  45. width:80rpx;height:80rpx;border-radius: 40rpx;
  46. }
  47. }
  48. .tit {
  49. width:420rpx;
  50. .name {
  51. font-size: 28rpx;
  52. }
  53. .desc {
  54. color:#999;font-size: 24rpx;
  55. }
  56. }
  57. .state {
  58. width:160rpx;font-size: 26rpx;font-weight: normal;text-align: right;
  59. .status_9 {
  60. color:#999999;
  61. }
  62. }
  63. }
  64. .line {
  65. width: 580rpx;height:2rpx;margin-bottom:20rpx;margin-left:110rpx;
  66. background: #393939;
  67. border-radius: 28rpx;font-size: 28rpx;
  68. display: flex;flex-direction: row;justify-content: space-between;align-items: center;
  69. }
  70. }
  71. .btn_submit {
  72. width: 660rpx;height: 96rpx;position: fixed;bottom:50rpx;left:45rpx;
  73. border: 2rpx solid #404040;
  74. border-radius: 28rpx;font-weight: bold;font-size: 32rpx;color: #FF2A95;
  75. display: flex;flex-direction: row;justify-content: center;align-items: center;
  76. }
  77. .blankHeight {
  78. height:300rpx;
  79. }