selectInstitutionsNature.html 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <style>
  2. body{
  3. font-family: "Microsoft Yahei", "微软雅黑";
  4. box-sizing: border-box;
  5. }
  6. .clearfix {
  7. clear: both;
  8. }
  9. .container{
  10. width: 1040px;
  11. margin: 0 auto;
  12. padding: 0;
  13. }
  14. .section{
  15. padding: 30px 20px 0 20px;
  16. width: 100%;
  17. overflow: hidden;
  18. text-align: center;
  19. margin: 0 auto;
  20. background: #fff;
  21. border: 1px solid #dcdcdc;
  22. }
  23. .instruction{
  24. padding-bottom: 20px;
  25. text-align: left;
  26. border-bottom: 2px solid #ef613b;
  27. }
  28. .instruction span{
  29. margin-right: 20px;
  30. font-size: 18px;
  31. color: #1e1e1e;
  32. }
  33. .instruction a{
  34. font-size: 16px;
  35. color: #005ae1;
  36. }
  37. .instruction a img{
  38. margin: -2px 5px 0 0;
  39. }
  40. .choose{
  41. text-align: center;
  42. }
  43. .choose p.choose-txt{
  44. margin: 36px 0 40px 0;
  45. font-size: 16px;
  46. color: #1e1e1e;
  47. }
  48. .choose .choose-about{
  49. margin-bottom: 140px;
  50. overflow: hidden;
  51. }
  52. .choose .choose-about .choose-item{
  53. float: left;
  54. padding: 0 17px;
  55. margin-right: 70px;
  56. width: 260px;
  57. height: 260px;
  58. border: #dcdcdc 1px solid;
  59. background: -webkit-linear-gradient(top, #fff 0%,#f5f5f5 100%);
  60. background: -o-linear-gradient(top, #fff 0%,#f5f5f5 100%);
  61. background: -ms-linear-gradient(top, #fff 0%,#f5f5f5 100%);
  62. background: linear-gradient(to bottom, #fff 0%,#f5f5f5 100%);
  63. }
  64. .choose .choose-about .choose-item:first-child {
  65. margin-left: 255px;
  66. }
  67. .choose .choose-about .choose-item:last-child {
  68. width: 240px;
  69. }
  70. .choose .choose-about .choose-item .img{
  71. height: 140px;
  72. }
  73. .choose .choose-about .choose-item .img img{
  74. margin: 30px 0 20px 0;
  75. width: 72px;
  76. height: 90px;
  77. }
  78. .choose .choose-about .choose-item p{
  79. margin-bottom: 20px;
  80. font-size: 16px;
  81. color: #1e1e1e;
  82. font-weight: bold;
  83. }
  84. .choose .choose-about .choose-item span{
  85. font-size: 13px;
  86. color: #787878;
  87. line-height: 22px;
  88. }
  89. </style>
  90. <!--主体内容-->
  91. <div class="content-wrapper" style="min-height: 924px;; z-index: 50;">
  92. <!-- Main content -->
  93. <section class="content">
  94. <div class="container">
  95. <div class="section">
  96. <div class="instruction"><span>身份说明</span><a href="projectProcessInstruction"><img src="static/images/instruction.png" alt=""/>项目发起流程说明</a></div>
  97. <div class="choose">
  98. <p class="choose-txt">请选择适合您的身份,完成以下注册和认证,以便快速发布公益项目。</p>
  99. <div class="choose-about">
  100. <div class="choose-item">
  101. <a ng-click="registerCharityCertification()">
  102. <div class="img">
  103. <img src="static/images/non-public.png" alt=""/>
  104. </div>
  105. <p>公益机构</p>
  106. <span>适合慈善组织(务公开募捐资格证书)、民办非企业单位、社会团体、企业等,不具备直接面向公众募捐的性质</span>
  107. </a>
  108. </div>
  109. <div class="choose-item">
  110. <a ng-click="registerPublicOfferingCertification()">
  111. <div class="img">
  112. <img src="static/images/public.png" alt=""/>
  113. </div>
  114. <p>慈善组织(公募)</p>
  115. <span>适合民证部批准,持有法人登记证书、公开募捐资格证书,具备向公众募捐集资金性质的公募基金会。</span>
  116. </a>
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. </section>
  123. </div>
  124. <script>
  125. $('.right-nav').on('click', 'span', function () {
  126. var index = $(this).index();
  127. $(this).addClass('active').siblings().removeClass('active');
  128. $('.right-list').eq(index).addClass('show').siblings().removeClass('show');
  129. });
  130. </script>