<template>
|
<div class="myview">
|
<header>
|
<div class="header-title">
|
域名隐私保护服务暂停通知
|
</div>
|
<div class="header-time">
|
2018-05-25 14:19:20
|
</div>
|
</header>
|
<main>
|
<div class="main-head"> 尊敬的客户:您好!</div>
|
<div class="main-content">
|
根据ICANN(互联网名称与数字地址分配机构)《通用顶级域名注册数据临时政策细则(Temporary Specification for gTLD Registration Data)》和欧盟通用数据保护条例(GDPR)合规要求,自2018年5月25日起,阿里云的域名WHOIS信息公开查询结果中将不再显示域名注册人/注册机构的名称,以及域名注册人/注册机构、管理联系人和技术联系人的联系信息。
|
</div>
|
<div class="main-footer">
|
鉴于以上调整措施生效后,域名注册信息将默认得到保护,阿里云域名隐私保护服务将自2018年5月25日起暂停服务。
|
</div>
|
</main>
|
</div>
|
</template>
|
<style lang="scss" scoped>
|
.myview{
|
color: #4b9bb7;
|
header{
|
line-height: 100px;
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
.header-title{
|
font-weight: 650;
|
font-size: 20px;
|
line-height: 60px;
|
}
|
.header-time{
|
line-height: 20px;
|
}
|
padding-bottom: 20px;
|
border-bottom: 1px solid #4b9bb7;
|
}
|
main{
|
padding: 30px 50px;
|
line-height: 100px;
|
.main-head{
|
line-height: 40px;
|
}
|
.main-content{
|
line-height: 30px;
|
}
|
.main-footer{
|
line-height: 30px;
|
}
|
}
|
}
|
</style>
|