addArticle.scss 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. page {
  2. background-color: #161616;
  3. }
  4. .page {
  5. background-color: #161616;
  6. }
  7. .topbg {
  8. }
  9. .topBody {
  10. width:750rpx;
  11. }
  12. .header {
  13. display: flex;
  14. flex-direction: row;
  15. justify-content: space-between;
  16. align-items: center;
  17. width: 750rpx;height: 180rpx;
  18. padding-top: calc(var(--status-bar-height) + 10rpx);
  19. .left {
  20. display: flex;flex-direction: row;
  21. justify-content: flex-start;padding-left: 20rpx;
  22. width:140rpx;
  23. image {
  24. width:40rpx;transform: scaleX(-1);
  25. }
  26. }
  27. .title {
  28. color:#fff;font-size: 32rpx;
  29. }
  30. .right {
  31. width:140rpx;margin-right: 20rpx;
  32. .btn {
  33. width: 132rpx;
  34. height: 64rpx;
  35. background: linear-gradient( 267deg, #FF2A95 0%, #FF5967 100%);
  36. border-radius: 16rpx 16rpx 16rpx 16rpx;
  37. font-size: 28rpx;
  38. color: #FFFFFF;
  39. display: flex;flex-direction: row;justify-content: center;align-items: center;
  40. }
  41. }
  42. }
  43. .list_info {
  44. display: flex;flex-direction: column;justify-content: flex-start;align-items: center;color:#fff;
  45. width:750rpx;
  46. .area {
  47. width:690rpx;padding:20rpx 0;
  48. }
  49. .tips {
  50. width:690rpx;display: flex;flex-direction: row;justify-content: space-between;align-items: flex-start;
  51. font-weight: 400;font-size: 28rpx;color: #FE2D56;
  52. }
  53. .item_tag {
  54. display: flex;flex-direction: row;justify-content: flex-start;align-items: center;
  55. flex-wrap: wrap;width: 690rpx;
  56. .tag {
  57. width:218rpx;height:218rpx;position: relative;
  58. border-radius: 20rpx;margin-right: 12rpx;margin-bottom: 12rpx;
  59. display: flex;flex-direction: row;justify-content: center;align-items: center;
  60. .close {
  61. width:48rpx;height:48rpx;margin-left:10rpx;position: absolute;right:10rpx;top:10rpx;
  62. }
  63. .logo {
  64. width:218rpx;height:218rpx;border-radius: 28rpx;
  65. }
  66. }
  67. .tagAdd {
  68. width:218rpx;height:218rpx;position: relative;
  69. border-radius: 20rpx;margin-right: 12rpx;margin-bottom: 12rpx;
  70. border: 2rpx dotted #404040;
  71. display: flex;flex-direction: row;justify-content: center;align-items: center;
  72. .add {
  73. width:50rpx;height:50rpx;
  74. }
  75. }
  76. }
  77. }
  78. .btn_submit {
  79. width: 660rpx;height: 96rpx;position: fixed;bottom:50rpx;left:45rpx;
  80. background: linear-gradient( 142deg, #FF5967 0%, #FF2A95 100%);
  81. border-radius: 28rpx;font-weight: bold;font-size: 32rpx;color: #FFFFFF;
  82. display: flex;flex-direction: row;justify-content: center;align-items: center;
  83. }
  84. .blankHeight {
  85. height:300rpx;
  86. }