* {
    margin: 0;
    padding: 0;
}

/* 通配符 删除浏览器默认值 */
ul {
    list-style: none; /* 取消项目符号样式 */
}

body {
    overflow-x: hidden;
    background-color: rgba(250, 250, 250, 1);
    font-family: 'Helvetica Neue', 'Helvetica', 'Microsoft Yahei', sans-serif; /* 字体集 */
}

canvas {
    border-radius: 0 0 20% 20%;
    background: transparent;
}

@media (min-width: 601px) {
    /* >=601的设备*/
    .top_info {
        width: 100%;
        height: 600px;
        position: relative;

    }

    .top_info:after {
        /* background-color: #2aae67; */
        /*
        background: #16222A;
        background: -webkit-linear-gradient(to right, #000000, #000000);
        background: linear-gradient(to right, #000000, #000000);
        */
        background: #2980B9; /* fallback for old browsers */
        background: -webkit-linear-gradient(to top, #FFFFFF, #6DD5FA, #2980B9); /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to top, #FFFFFF, #6DD5FA, #2980B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

        content: '';
        width: 160%;
        height: 650px;
        position: absolute;
        left: -30%;
        top: 0;
        z-index: -1;
        border-radius: 0 0 50% 50%;
    }

    .top_info .top-text {
        height: 130px;
        width: 620px;
        margin-top: 40px;
        margin-right: auto;
        margin-left: auto;
        /* font-size: 0.87em; */
        font-size: 16px;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: yellow;
        line-height: 32px;
        color: white;
        padding-top: 18px;
        text-align: justify;
        /* font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
        font-family: "PingFang SC", "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Helvetica, Arial, Verdana, sans-serif;

    }

    .top_info .round_div_all {
        height: 120px;
        width: 820px;
        margin-right: auto;
        margin-left: auto;
        padding-top: 5px;
        display: -webkit-flex; /* 定义内部为弹性布局 */
        display: flex; /* 定义内部为弹性布局 */
        /*flex-wrap: wrap; */ /* 让弹性盒元素在需要的时候拆列 */
        flex-wrap: nowrap;
        justify-content: space-around; /* （横轴）方向上均匀排列每个元素 */
    }

    .mian01 {
        width: 850px;
        margin-top: 40px;
        margin-right: auto;
        margin-left: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        overflow: hidden; /* 防止塌陷 */
        display: -webkit-flex; /* 定义内部为弹性布局 */
        display: flex; /* 定义内部为弹性布局 */
        flex-wrap: wrap; /* 让弹性盒元素在需要的时候拆列 */
        justify-content: space-around; /* （横轴）方向上均匀排列每个元素 */
    }

    .square_div {
        float: left;
        height: 160px;
        width: 180px;
        margin-top: 30px;
        border-radius: 6px;
        background-color: #ffffff;
        box-shadow: 0px 0px 5px 5px rgba(152, 152, 152, 0.07); /* 设置一个阴影 颜色 透明度 */
        /*cursor: pointer;    /*鼠标在此处的效果为“小手”样式 */
        margin-right: auto;
        margin-left: auto;

    }

    .arch {
        position: fixed;
        width: 300px;
        left: 5%;
        bottom: 5%;
        cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAzElEQVRYR+2X0Q6AIAhF5f8/2jYXZkwEjNSVvVUjDpcrGgT7FUkI2D9xRfQETwNIiWO85wfINfQUEyxBG2ArsLwC0jioGt5zFcwF4OYDPi/mBYKm4t0U8ATgRm3ThFoAqkhNgWkA0jJLvaOVSs7j3qMnSgXWBMiWPXe94QqMBMBc1VZIvaTu5u5pQewq0EqNZvIEMCmxAawK0DNkay9QmfFNAJUXfgGgUkLaE7j/h8fnASkxHTz0DGIBMCnBeeM7AArpUd3mz2x3C7wADglA8BcWMZhZAAAAAElFTkSuQmCC) 14 0, pointer;
    }

    .arch-title {
        /* text-align: center; */
        color: black;
        display: block;
        font-weight: bold;
        margin: 7% 0;
    }

    .arch-img svg {
        width: 70px;
        height: auto;

    }

    .arch-img {
        animation: moveAnimation 5s infinite;
        -webkit-animation: moveAnimation 5s infinite;
    }

    @keyframes moveAnimation {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(100px);
            -webkit-transform: translateX(100px);
            -moz-transform: translateX(100px);
            -ms-transform: translateX(100px);
            -o-transform: translateX(100px);
        }
    }


}


@media (max-width: 600px) {
    /*响应式 <=600的设备使用如下css样式表 */
    .top_info {
        width: 100%;
        height: 750px;
        /* background-color: #2aae67; */
        /*
        background: #16222A;
        background: -webkit-linear-gradient(to right, #3A6073, #16222A);
        background: linear-gradient(to right, #3A6073, #16222A);
        */

        background: #2980B9; /* fallback for old browsers */
        background: -webkit-linear-gradient(to top, #FFFFFF, #6DD5FA, #2980B9); /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to top, #FFFFFF, #6DD5FA, #2980B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

        border-bottom-left-radius: 60% 15%;
        border-bottom-right-radius: 60% 15%;
    }

    .top_info .top-text {
        height: 130px;
        width: 80%;
        margin-top: 40px;
        margin-right: auto;
        margin-left: auto;
        font-size: 0.87em;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: #f2f2f2;
        line-height: 32px;
        color: #f2f2f2;
        padding-top: 18px;
        text-align: justify;

    }

    .top_info .round_div_all {
        width: 80%;
        margin-right: auto;
        margin-left: auto;
        padding-top: 40px;
        display: -webkit-flex; /* 定义内部为弹性布局 */
        display: flex; /* 定义内部为弹性布局 */
        flex-wrap: wrap; /* 让弹性盒元素在需要的时候拆列 */
        justify-content: space-around; /* （横轴）方向上均匀排列每个元素 */
    }


    .mian01 {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
        overflow: hidden; /* 防止塌陷 */
        display: -webkit-flex; /* 定义内部为弹性布局 */
        display: flex; /* 定义内部为弹性布局 */
        flex-wrap: wrap; /* 让弹性盒元素在需要的时候拆列 */
        justify-content: space-around; /* （横轴）方向上均匀排列每个元素 */
    }

    .square_div {
        float: left;
        height: 142px;
        width: 160px;
        margin-top: 30px;
        border-radius: 6px;
        background-color: #ffffff;
        box-shadow: 0px 0px 5px 5px rgba(152, 152, 152, 0.07); /* 设置一个阴影 颜色 透明度 */
        /*cursor: pointer;   /* 鼠标在此处的效果为“小手”样式 */
        margin-right: auto;
        margin-left: auto;
    }

    .side {
        display: none;
    }

    .arch {
        display: none;
    }
}

.top_info .medal img {
    float: left;
    margin-top: 0%;
    margin-left: 13%;
    width: 7%;
}

.top_info .medal img:hover {
    -webkit-animation: scaleDraw 1s;
}

.top_info .logo {
    height: 64px;
    width: 200px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 120px;
    /* z-index: 999; */
    z-index: 3;
}


.top_info .follow {
    /*width: 37%;*/
    float: right;
    width: 80px;
    /* top: 6%; */
    /* font-weight: bold; */
    padding-left: 5px;
    /* margin: 0 30% 0 60%; */
    margin: -9% 0 0 0;
    /* z-index: 999; */
    z-index: 3;
    border-style: dashed;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: greenyellow;
    border-right-color: transparent;
    animation: animated-border 1.5s infinite;
    -webkit-animation: animated-border 1.5s infinite;
}

.top_info .follow:hover {
    /*width: 37%;*/
    width: 80px;
    /* top: 6%; */
    padding-left: 5px;
    margin: -9% 0 0 0;
    /* z-index: 999; */
    z-index: 3;
    color: yellow;
    border-style: dashed;
    border-top-color: greenyellow;
    border-bottom-color: greenyellow;
    border-left-color: greenyellow;
    border-right-color: greenyellow;
    animation: animated-border-hover 1.5s infinite;
    -webkit-animation: animated-border-hover 0.7s infinite;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAzElEQVRYR+2X0Q6AIAhF5f8/2jYXZkwEjNSVvVUjDpcrGgT7FUkI2D9xRfQETwNIiWO85wfINfQUEyxBG2ArsLwC0jioGt5zFcwF4OYDPi/mBYKm4t0U8ATgRm3ThFoAqkhNgWkA0jJLvaOVSs7j3qMnSgXWBMiWPXe94QqMBMBc1VZIvaTu5u5pQewq0EqNZvIEMCmxAawK0DNkay9QmfFNAJUXfgGgUkLaE7j/h8fnASkxHTz0DGIBMCnBeeM7AArpUd3mz2x3C7wADglA8BcWMZhZAAAAAElFTkSuQmCC) 14 0, pointer;

}


.top_info .bird {
    /* float: left; */
    width: 40%;
    margin: -10% 0 0 0;
    z-index: 3;
}

.top_info .bird .pigeon {
    transition: transform 0.6s ease;
    -webkit-transition: transform 0.6s ease;
    -moz-transition: transform 0.6s ease;
    -ms-transition: transform 0.6s ease;
    -o-transition: transform 0.6s ease;
}


.top_info .bird:hover .pigeon {
    transform: translateX(300%);
    -webkit-transform: translateX(300%);
    -moz-transform: translateX(300%);
    -ms-transform: translateX(300%);
    -o-transform: translateX(300%);
}


@keyframes animated-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes animated-border-hover {
    0% {
        box-shadow: 0 0 0 0 rgba(119, 247, 77, 0.9);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes scaleDraw {
    0% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1.5);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.2);
    }
    60% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.emailme a:link {
    color: blue;
}

.top_info .logo img:hover {
    -webkit-animation: scaleDraw 1s;

}

/*noinspection ALL*/
.top_info .logo img:hover {
    transform: scaleDraw 1s;
}

.top_info .round_div_all .round_div {
    float: left;
    height: 110px;
    width: 110px;
    margin-top: 30px;
    border-radius: 50%;
    border-style: dashed;
    /* background-color: #f4f4f4; */
    border-top-color: beige;
    border-bottom-color: deeppink;
    border-left-color: transparent;
    border-right-color: transparent;
    /* background: #E8CBC0;
    background: -webkit-linear-gradient(to right, #636FA4, #E8CBC0);
    background: linear-gradient(to right, #636FA4, #E8CBC0);  */

    /*cursor: pointer;   /* 鼠标在此处的效果为“小手”样式 */
    margin-left: 25px;
    margin-right: 25px;
}

.top_info .round_div_all .round_div:hover {
    border-radius: 30%;
    border-top-color: deeppink;
    border-bottom-color: deeppink;
    border-left-color: deeppink;
    border-right-color: deeppink;

    transition-duration: 0.4s; /* 缩放的过渡时间 */
}

.top_info .round_div_all .round_div .r-s01 {
    height: 40px;
    width: 40px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
}

.top_info .round_div_all .round_div .r-s02 {
    height: 25px;
    width: 90px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.8em;
    font-weight: bold;
    color: #000000;
    text-align: center;
}

.square_div:hover {
    -webkit-transform: scale(1.11, 1.11);
    -moz-transform: scale(1.11, 1.11);
    -transform: scale(1.11, 1.11);
    transition-duration: 0.5s; /* 缩放的过渡时间 */
}

.square_div .s-s01 {
    height: 43px;
    width: 43px;
    margin-top: 38px;
    margin-right: auto;
    margin-left: auto;
}

.square_div .s-s02 {
    height: 25px;
    width: 120px;
    margin-top: 18px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.9em;
    color: #1a1a1a;
    text-align: center;
}

.square_div.offline {
    background-color: #cfcfcf !important;
    pointer-events: none;
}

.square_div.no-hover:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -transform: none;
    transition: none;
}

.down {
    /*background-color: #ffffff;*/
    text-align: center;
    height: 50px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    /*margin-top: 40px;*/
}

.f82 {
    font-size: 12px;
    color: #4c4c4c;
    line-height: 28px;
    letter-spacing: 1px;
}

.f75 {
    font-size: 0.75px;
    color: #a0a2a0;
    line-height: 30px;
    letter-spacing: 1px;
}


a:link {
    color: #ffffff;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    text-decoration: none;
    color: #ececec;
}

a:active {
    text-decoration: none;
}

#domain {
    cursor: pointer;
}

#domain:hover {
    cursor: pointer;
    text-decoration: underline;
}

/* nes.css ↓*/

html {
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABFklEQVRYR9WXURLDIAhE6/0PbSdOtUpcd1Gnpv1KGpTHBpCE1/cXq+vrMph7dGvXZTtpfW10DCA5jrH1H0Jhs5E0hnZdCR+vb5S8Nn8mQCeS9BdSalYJqMBjAGzq59xAESN7VFVUgV8AZB/dZBR7QTFDCqGquvUBVVoEtgIwpQRzmANSFHgWQKExHdIrPeuMvQNDarXe6nC/AutgV3JW+6bgqQLeV8FekRtgV+ToDKEKnACYKsfZjjkam7a0ZpYTytwmgainpC3HvwBocgKOxqRjehoR9DFKNFYtOwCGYCszobeCbl26N6yyQ6g8X/Wex/rBPsNEV6qAMaJPMynIHQCoSqS9JSMmwef51LflTgCRszU7DvAGiV6mHWfsaVUAAAAASUVORK5CYII=), auto;
}

label {
    cursor: inherit;
}

a {
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAzElEQVRYR+2X0Q6AIAhF5f8/2jYXZkwEjNSVvVUjDpcrGgT7FUkI2D9xRfQETwNIiWO85wfINfQUEyxBG2ArsLwC0jioGt5zFcwF4OYDPi/mBYKm4t0U8ATgRm3ThFoAqkhNgWkA0jJLvaOVSs7j3qMnSgXWBMiWPXe94QqMBMBc1VZIvaTu5u5pQewq0EqNZvIEMCmxAawK0DNkay9QmfFNAJUXfgGgUkLaE7j/h8fnASkxHTz0DGIBMCnBeeM7AArpUd3mz2x3C7wADglA8BcWMZhZAAAAAElFTkSuQmCC) 14 0, pointer;
}

/* nes.css ↑ */


/* domain list table*/
.container button {
    width: 280px;
    height: 40px;
    margin: 35px auto 40px auto;
    border: none;
    background: linear-gradient(-200deg, #fac0e7, #aac2ee);
    color: #fff;
    font-weight: bold;
    letter-spacing: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.container button:hover {
    background: linear-gradient(-200deg, #aac2ee, #fac0e7);
    background-position-x: -280px;
}

.domain-logo {
    float: right;
    font-size: larger;
    font-weight: bold;
}

.domain-logo a:link {
    color: blue;
    font-style: italic;
}

.domain-logo a:link:hover {
    color: blue;
    text-decoration: underline overline #FF3028;
    font-style: italic;
}

.domain-hightlight {
    color: black;
    font-size: inherit;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: chartreuse;
}


.kms-area a:link {
    color: dodgerblue;
    font-weight: bold;
}

.kms-area a:hover {
    color: dodgerblue;
    text-decoration: underline overline yellowgreen;
    font-style: italic;
    font-weight: bold;
}


/* dialog close button*/
button:hover {
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAzElEQVRYR+2X0Q6AIAhF5f8/2jYXZkwEjNSVvVUjDpcrGgT7FUkI2D9xRfQETwNIiWO85wfINfQUEyxBG2ArsLwC0jioGt5zFcwF4OYDPi/mBYKm4t0U8ATgRm3ThFoAqkhNgWkA0jJLvaOVSs7j3qMnSgXWBMiWPXe94QqMBMBc1VZIvaTu5u5pQewq0EqNZvIEMCmxAawK0DNkay9QmfFNAJUXfgGgUkLaE7j/h8fnASkxHTz0DGIBMCnBeeM7AArpUd3mz2x3C7wADglA8BcWMZhZAAAAAElFTkSuQmCC) 14 0, pointer;
}


.rotating-flash::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: repeating-conic-gradient(from var(--a), #45f3ff 0%, #45f3ff 5%, transparent 5%, transparent 40%, #45f3ff 50%);*/
    animation: animate 4s linear infinite;
    animation-delay: -1s;
    border-radius: 60px;
    z-index: -999;
}

.rotating-flash::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: #fafafaff;
    border-radius: 15px;
    border: 6px solid #fafafaff;
    z-index: -999;
}

.rotating-flash {
    position: relative;
    z-index: -999;
    /*width: 100%;*/
    /*height: 100%;*/
    /*
    background: repeating-conic-gradient(from var(--a), #ff2770 0%,#ff2770 5%,transparent 5%,transparent 40%,#ff2770 50%);
      */
    background: repeating-conic-gradient(from var(--a), #45f3ff 0%, #45f3ff 5%, transparent 5%, transparent 40%, #45f3ff 50%);
    animation: animate 7s linear infinite;
    border-radius: 20px;
    margin: 0 25% 0;
    padding: 7px;
}

/*noinspection ALL*/
@property --a {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@keyframes animate {
    0% {
        --a: 0deg;
    }
    100% {
        --a: 360deg;

    }
}

.ui-dialog .ui-dialog-titlebar-close {
    top: 30%;
    width: 50%;
    height: 95%;
    background: #6DD5FA;
}


.ui-button:hover {
    background: lightgreen;
}