“dzb”
2022-10-11 387e8b0743240de72425e5b5c5709d629ace9aa4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<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">
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;根据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>