apply.wxss 964 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .gcs-box {
  2. padding-bottom: 100rpx;
  3. background-color: #fff;
  4. }
  5. .gcs-box .card {
  6. position: relative;
  7. background: #fff;
  8. }
  9. .card-header {
  10. display: flex;
  11. padding: 30rpx;
  12. box-shadow: 0 0 40rpx rgba(0, 0, 0, 0.1);
  13. }
  14. .card-header .title {
  15. flex: 1;
  16. color: #f75451;
  17. font-size: 30rpx;
  18. font-weight: bold;
  19. }
  20. .bot-line {
  21. width: 100%;
  22. height: 1rpx;
  23. border-bottom: 1rpx solid #f5f5f5;
  24. transition: 200ms all ease-in-out;
  25. }
  26. .bot-line.focus {
  27. border-bottom: 2rpx solid #f75451;
  28. }
  29. .info-item {
  30. margin-top: 54rpx;
  31. }
  32. .info-item .item-title {
  33. font-size: 22rpx;
  34. color: #7593b4;
  35. margin-bottom: 15rpx;
  36. }
  37. .info-item .item-content {
  38. font-size: 26rpx;
  39. color: #000;
  40. }
  41. .card-body {
  42. padding: 0 36rpx;
  43. }
  44. .edit-btn button {
  45. background-color: #f75451;
  46. text-align: center;
  47. line-height: 90rpx;
  48. margin: 80rpx 36rpx;
  49. color: #fff;
  50. border-radius: 6rpx;
  51. font-size: 38rpx;
  52. font-weight: bold;
  53. }
  54. .edit-btn button::after {
  55. border: 0;
  56. }