notice-membership-vip.vue 2.5 KB
<template>
  <view class="notice-page">
    <view class="notice-body">
      <view class="notice-content">
        欢迎您申请成为中国跆拳道协会(以下简称中国跆协)会员,请确保本次申请是经过您本人或监护人授权同意后的自愿行为,请您务必仔细阅读本入会须知。
      </view>
      <view class="notice-item">一、中国跆协会员分为个人会员和单位会员。</view>
      <view class="notice-item">
        二、成为本协会会员条件:遵守中国跆协章程和协会各项规章制度及相关决议,按期交纳会费,积极支持和参与中国跆拳道事业发展的社会各届人士或地方跆拳道协会、俱乐部、培训机构等,均可自愿申请成为中国跆协会员。
      </view>
      <view class="notice-item">三、个人会员为在中国工作和生活的跆拳道爱好者,16 周岁以下应有监护人协助申请,会员须为中国公民。</view>
      <view class="notice-item">四、会员入会需向所在区域内中国跆协单位会员提出入会申请,并按程序报中国跆协批准,按规定交纳会费。</view>
      <view class="notice-item">五、会员享有《中国跆拳道协会会员管理办法》规定的会员权利。</view>
      <view class="notice-item">六、会员应履行《中国跆拳道协会会员管理办法》规定的会员义务。</view>
      <view class="notice-item">七、凡中国跆协会员,须按照《中国跆拳道协会会员会费标准(2021 版)》按时交纳年度会费。</view>
      <view class="notice-item">八、会员行为违反《中国跆拳道协会会员管理办法》中规定的,按照相关处罚规定进行处理。</view>
      <view class="notice-item">九、其它会员相关内容请查看《中国跆拳道协会章程》《中国跆拳道协会会员管理办法》。</view>
    </view>
  </view>
</template>

<script setup>
</script>

<style lang="scss" scoped>
.notice-page {
  min-height: 100vh;
  background: #f7f7f7;
}

.notice-header {
  background: #fff;
  padding: 30rpx;
  text-align: center;
  border-bottom: 1rpx solid #eee;
}

.notice-title {
  font-size: 34rpx;
  font-weight: 600;
  color: #333;
}

.notice-body {
  padding: 30rpx;
  background: #fff;
  margin: 20rpx;
  border-radius: 12rpx;
}

.notice-content {
  font-size: 28rpx;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20rpx;
}

.notice-item {
  font-size: 28rpx;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20rpx;
  text-indent: 2em;
}
</style>