figure {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.right-main {
    width: 310px;
    flex-shrink: 0;
    margin-left: 15px;
}

.right-main .title {
    line-height: 45px;
    border-bottom: 1px solid #f8f8f8;
    padding: 0 15px !important;
    text-align: center;
    font-size: 14px !important;
}

/**
侧边导航
 */
.left-nav {
    float: left;
    width: 170px;
    flex-shrink: 0;
}

.left-nav .title {
    line-height: 55px;
    border-bottom: 1px solid #f8f8f8;
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
}

.left-nav .title i {
    padding-right: 10px;
}

.left-nav ul {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f8f8f8;
    margin-bottom: -1px;
}

.left-nav ul li {
    width: 100%;
    text-align: center;
}

.left-nav ul li a {
    display: block;
    color: #666666;
    line-height: 3;
    font-size: 13px;
    border-bottom: 1px solid #f8f8f8;
    position: relative;
}

.left-nav ul li a:hover, .left-nav ul li.active a {
    font-weight: bold;
    border-left: 4px solid #5291fc;
    color: #232323;
}

.left-nav ul li.active a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid #eff3f566;
    border-left: 10px solid #ffffff;
    border-bottom: 10px solid #eff3f566;
}


/**
PageSpeed
 */
.page-speed-main {
    background-color: rgba(66, 133, 244, .8);
}

.page-speed-main > .title {
    text-align: center;
    line-height: 4 !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    color: #ffffff;
}

.page-speed-main > .form > .layui-form {
    width: 800px;
    margin: 10px auto 40px;
    display: flex;
    position: relative;
    left: 50px;
}

.page-speed-main .layui-input {
    border-radius: 3px 0 0 3px;
    border-right: none;
}

.page-speed-main .layui-btn {
    border-radius: 0 3px 3px 0;
}

.page-speed-main .speed-content {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
}

.page-speed-main .speed-content .scorescale {
    display: inline-flex;
    margin: 12px auto 12px auto;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    padding: 8px 8px;
}

.page-speed-main .speed-content .scorescale > .range {
    display: flex;
    align-items: center;
    margin: 0 12px;
    white-space: nowrap;
}

.page-speed-main .speed-content .scorescale > .range::before {
    content: '';
    width: 18px;
    height: 6px;
    border-radius: 10px;
    display: block;
    margin-right: 10px;
}

.page-speed-main .speed-content .wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    padding: 8px;
    --transition-length: 1s;
    contain: content;
    will-change: opacity;
    --gauge-circle-size: 120px;
    --score-number-font-size: 42px;
    margin: 24px 0 12px 0;
}

.page-speed-main .speed-content .svg-wrapper {
    position: relative;
    height: 120px;
}

.page-speed-main .speed-content .wrapper .gauge {
    stroke-linecap: round;
    height: 120px;
    width: 120px;
}

.page-speed-main .speed-content .wrapper .gauge-base {
    opacity: 0.1;
}

.page-speed-main .speed-content .wrapper .gauge-arc {
    fill: none;
    transform-origin: 50% 50%;
    animation: load-gauge 1s ease forwards;
    animation-delay: 250ms;
}

.page-speed-main .speed-content .wrapper .gauge__percentage {
    width: 100%;
    height: 120px;
    position: absolute;
    font-size: calc(120px * 0.34 + 1.3px);
    line-height: 0;
    text-align: center;
    top: calc(8px + 120px / 2);
}

@keyframes load-gauge {
    from {
        stroke-dasharray: 0, 351.858;
    }
}

.page-speed-main .speed-content .range--fail::before {
    background-color: #ff4e42;
}

.page-speed-main .speed-content .wrapper--fail {
    color: #ff4e42;
    fill: #ff4e42;
    stroke: #ff4e42;
}

.page-speed-main .speed-content .range--average::before {
    background-color: #ffa400;
}

.page-speed-main .speed-content .wrapper--average {
    color: #ffa400;
    fill: #ffa400;
    stroke: #ffa400;
}

.page-speed-main .speed-content .range--pass::before {
    background-color: #0cce6b;
}

.page-speed-main .speed-content .wrapper--pass {
    color: #0cce6b;
    fill: #0cce6b;
    stroke: #0cce6b;
}

.page-speed-main .speed-content .audit-group {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    clear: both;
    justify-content: space-between;
    margin: 20px auto 0;
    border-right: 1px solid #f5f5f5;
}

.page-speed-main .speed-content .audit-group .item {
    width: 33.334%;
    flex-shrink: 0;
    text-align: left;
    border: 1px solid #f5f5f5;
    margin-bottom: -1px;
    margin-right: -1px;
    padding: 15px;
    box-sizing: border-box;
    height: auto;
    border-right: none;

}

.page-speed-main .speed-content .audit-group .item .name {
    line-height: 2.5;
    font-size: 16px;
}

.page-speed-main .speed-content .audit-group .item .name span {
    float: right;
}

.page-speed-main .speed-content .audit-group .item .desc {
    font-size: 12px;
    line-height: 1.8;
    color: #888888;
}

.page-speed-main .speed-content .metric--pass span {
    color: #0cce6b;
}

.page-speed-main .speed-content .metric--average span {
    color: #ffa400;
}

.page-speed-main .speed-content .metric--fail span {
    color: #ff4e42;
}

.page-speed-main .speed-content .audit-group .item .name::before {
    content: '';
    position: relative;
    width: 10px;
    height: 10px;
    display: block;
    margin: 15px 12px 0 4px;
    float: left;
}

.page-speed-main .speed-content .metric--pass::before {
    background-color: #0cce6b;
    border-radius: 50%;
}

.page-speed-main .speed-content .metric--average::before {
    background-color: #ffa400;
}

.page-speed-main .speed-content .metric--fail::before {
    border-left: calc(10px / 2) solid transparent;
    border-right: calc(10px / 2) solid transparent;
    border-bottom: 10px solid #ff4e42;
    width: auto !important;
    margin-top: 5px !important;
}

.page-speed-main .speed-content .screenshot-thumbnails {
    display: flex;
    width: 85%;
    margin: 30px auto 0;
    justify-content: space-between;
    clear: both;
}

.page-speed-main .speed-content .screenshot-thumbnails .img {
    width: 9%;
    border: 1px solid #f5f5f5;
}

.page-speed-main .speed-content .screenshot-thumbnails img {
    width: 100%;
}

.page-speed-main .audit-group-list {
    width: 85%;
    margin: 30px auto 0;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page-speed-main .audit-group-list .item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    padding-left: 15px !important;
    background-color: #ffffff;
}

.page-speed-main .audit-group-list .item b {
    padding: 0 6px;
}

.page-speed-main .audit-group-list .item em::before {
    content: '';
    position: relative;
    width: 10px;
    height: 10px;
    display: block;
    margin: 16px 12px 0 4px;
    float: left;
}

.layui-colla-content, .layui-colla-item, .layui-collapse {
    border-color: #f5f5f5;
}

.page-speed-main .audit-group-list .item .layui-colla-icon {
    right: 15px;
    left: unset;
}

.page-speed-main .audit-group-list .layui-colla-content {
    text-align: left;
}

.page-speed-main .audit-group-list .metric--pass em::before {
    background-color: #0cce6b;
    border-radius: 50%;
}

.page-speed-main .audit-group-list .metric--average em::before {
    background-color: #ffa400;
}

.page-speed-main .audit-group-list .metric--fail em::before {
    border-left: calc(10px / 2) solid transparent;
    border-right: calc(10px / 2) solid transparent;
    border-bottom: 10px solid #ff4e42;
    width: auto !important;
    margin-top: 5px !important;
}

/**
中间列表主体
 */
.center-main {
    margin-left: 15px;
    width: 100%;
}

.center-main .title {
    text-align: center;
    font-size: 20px;
    padding: 17px 0;
    border-bottom: 1px #f5f5f5 solid;
}

.details .content {
    width: 100%;
    text-align: left;
    padding: 25px;
    box-sizing: border-box;
    min-height: 600px;
    font-size: 14px;
    word-wrap: break-word;
    overflow: hidden;
    position: relative;
}

.details .content p,
.details .content h1,
.details .content h2,
.details .content h3,
.details .content h4,
.details .content h5 {
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
}

.details .content p *,
.details .content h1 *,
.details .content h2 *,
.details .content h3 *,
.details .content h4 *,
.details .content h5 * {
    line-height: 1.8;
}

.details .content h1 {
    font-size: 20px;
    line-height: 2;
    font-weight: bold;
}

.details .content h2 {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #f1f1f1;
    padding-left: 15px;
    line-height: 2.2;
}

.details .content h2:after, .details .content h3:after {
    content: " ";
    height: 100%;
    left: 0;
    width: 4px;
    background-color: #5291fc;
    position: absolute;
}

.details .content h3 {
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
    padding-left: 15px;
}

.details .content h4 {
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}

.details .content h5 {
    font-size: 12px;
    line-height: 2;
}

.details .content ul,
.details .content ol {
    padding-left: 28px;
    line-height: 2;
    margin: 14px 0;
}

.details .content li {
    list-style: unset !important;
}

.details .content img {
    cursor: pointer;
    height: auto !important;
    margin: 0 auto;
    text-align: center;
    display: block;
    max-width: 100%;
}

.details .content img.clicked {
    box-shadow: 1px 1px 10px #999;
}

.details .content table.clicked {
    box-shadow: 1px 1px 10px #999;
}

.details .content pre code {
    line-height: 1.5;
}

.details .content:focus {
    outline: none;
}

.details .content blockquote {
    display: block;
    border-left: 8px solid #d0e5f2;
    padding: 10px 15px;
    margin: 10px 0;
    line-height: 1.4;
    font-size: 100%;
    background-color: #f1f1f1;
}

.details .content blockquote p {
    margin-bottom: 0;
}

.details .content table {
    border: none;
    border-collapse: collapse;
    width: 100%;
}

.details .content table thead {
    background-color: #f1f1f1;
}

.details .content table td,
.details .content table th {
    border: 1px solid #999;
    padding: 3px 5px;
    min-width: 50px;
    height: 20px;
    word-break: break-all;
}

.details .content p:last-child {
    display: unset;
}


.ck-content .image.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.ck-content .image.image_resized img {
    width: 100%;
}

.ck-content .image.image_resized > figcaption {
    display: block;
}

.ck-content code {
    background-color: hsla(0, 0%, 78%, 0.3);
    padding: .15em;
    border-radius: 2px;
}

.ck-content .image {
    display: table;
    clear: both;
    text-align: center;
    margin: 1em auto;
}

.ck-content .image > img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 50px;
}

.ck-content .image-style-side,
.ck-content .image-style-align-left,
.ck-content .image-style-align-center,
.ck-content .image-style-align-right {
    max-width: 50%;
}

.ck-content .image-style-side {
    float: right;
    margin-left: var(--ck-image-style-spacing);
}

.ck-content .image-style-align-left {
    float: left;
    margin-right: var(--ck-image-style-spacing);
}

.ck-content .image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}

.ck-content .image-style-align-right {
    float: right;
    margin-left: var(--ck-image-style-spacing);
}

.ck-content .page-break {
    position: relative;
    clear: both;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck-content .page-break::after {
    content: '';
    position: absolute;
    border-bottom: 2px dashed hsl(0, 0%, 77%);
    width: 100%;
}

.ck-content .page-break__label {
    position: relative;
    z-index: 1;
    padding: .3em .6em;
    display: block;
    text-transform: uppercase;
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    font-family: Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
    font-size: 0.75em;
    font-weight: bold;
    color: hsl(0, 0%, 20%);
    background: #fff;
    box-shadow: 2px 2px 1px hsla(0, 0%, 0%, 0.15);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ck-content blockquote {
    overflow: hidden;
    padding-right: 1.5em;
    padding-left: 1.5em;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    border-left: solid 5px hsl(0, 0%, 80%);
}

.ck-content[dir="rtl"] blockquote {
    border-left: 0;
    border-right: solid 5px hsl(0, 0%, 80%);
}

.ck-content .media {
    clear: both;
    margin: 1em 0;
    display: block;
    min-width: 15em;
}

.ck-content .table {
    margin: 1em auto;
    display: table;
}

.ck-content .table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double hsl(0, 0%, 70%);
}

.ck-content .table table td,
.ck-content .table table th {
    min-width: 2em;
    padding: .4em;
    border-color: hsl(0, 0%, 75%);
}

.ck-content .table table th {
    font-weight: bold;
    background: hsla(0, 0%, 0%, 5%);
}

.ck-content .todo-list {
    list-style: none;
}

.ck-content .todo-list li {
    margin-bottom: 5px;
}

.ck-content .todo-list li .todo-list {
    margin-top: 5px;
}

.ck-content .todo-list .todo-list__label > input {
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    width: var(--ck-todo-list-checkmark-size);
    height: var(--ck-todo-list-checkmark-size);
    vertical-align: middle;
    border: 0;
    left: -25px;
    margin-right: -15px;
    right: 0;
    margin-left: 0;
}

.ck-content .todo-list .todo-list__label > input::before {
    display: block;
    position: absolute;
    box-sizing: border-box;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid hsl(0, 0%, 20%);
    border-radius: 2px;
    transition: 250ms ease-in-out box-shadow, 250ms ease-in-out background, 250ms ease-in-out border;
}

.ck-content .todo-list .todo-list__label > input::after {
    display: block;
    position: absolute;
    box-sizing: content-box;
    pointer-events: none;
    content: '';
    left: calc(var(--ck-todo-list-checkmark-size) / 3);
    top: calc(var(--ck-todo-list-checkmark-size) / 5.3);
    width: calc(var(--ck-todo-list-checkmark-size) / 5.3);
    height: calc(var(--ck-todo-list-checkmark-size) / 2.6);
    border-style: solid;
    border-color: transparent;
    border-width: 0 calc(var(--ck-todo-list-checkmark-size) / 8) calc(var(--ck-todo-list-checkmark-size) / 8) 0;
    transform: rotate(45deg);
}

.ck-content .todo-list .todo-list__label > input[checked]::before {
    background: hsl(126, 64%, 41%);
    border-color: hsl(126, 64%, 41%);
}

.ck-content .todo-list .todo-list__label > input[checked]::after {
    border-color: hsl(0, 0%, 100%);
}

.ck-content .todo-list .todo-list__label .todo-list__label__description {
    vertical-align: middle;
}

.ck-content .image > figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: hsl(0, 0%, 20%);
    background-color: hsl(0, 0%, 97%);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;
    margin: 0 auto;
}

.ck-content .marker-yellow {
    background-color: var(--ck-highlight-marker-yellow);
}

.ck-content .marker-green {
    background-color: var(--ck-highlight-marker-green);
}

.ck-content .marker-pink {
    background-color: var(--ck-highlight-marker-pink);
}

.ck-content .marker-blue {
    background-color: var(--ck-highlight-marker-blue);
}

.ck-content .pen-red {
    color: var(--ck-highlight-pen-red);
    background-color: transparent;
}

.ck-content .pen-green {
    color: var(--ck-highlight-pen-green);
    background-color: transparent;
}

.ck-content hr {
    border-width: 1px 0 0;
    border-style: solid;
    border-color: hsl(0, 0%, 37%);
    margin: 0;
}

.ck-content pre {
    padding: 1em;
    color: #353535;
    background: hsla(0, 0%, 78%, 0.3);
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    text-align: left;
    direction: ltr;
    tab-size: 4;
    white-space: pre-wrap;
    font-style: normal;
    min-width: 200px;
}

.ck-content pre code {
    background: unset;
    padding: 0;
    border-radius: 0;
}

@media print {
    .ck-content .page-break {
        padding: 0;
    }

    .ck-content .page-break::after {
        display: none;
    }
}

/**
友情链接
 */

.link-list {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
}

.link-list .item {
    -ms-flex: 0 0 23%;
    flex: 0 0 23%;
    max-width: 23%;
    margin: 1%;
    display: flex;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 10px -2px rgba(158, 158, 158, 0.2);
    box-shadow: 0px 0px 10px -2px rgba(158, 158, 158, 0.2);
}

.link-list .item a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.link-list .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    flex-shrink: 0;
    margin-right: 15px;
}

.link-list .icon img {
    width: 100%;
    height: 100%;
}

.link-list .main-right {
    flex: 1 1 auto !important;
}

.link-list .main-right a {
    font-size: 14px;
    line-height: 1.5;
}

.link-list .info {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
    color: #888888;
}


/**
工具
 */
.tools-content {

}

.tools-content .title {
    padding: 20px 0;
    font-size: 20px;
}

.tools-content #tools_content {
    max-width: 580px;
    margin: 20px auto;
}

.tools-content .pages-ip-content {
    padding: 20px 0;
    display: block;
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 2px;
    border: 1px #efefef solid;
    color: #5FB878;
}

.tools-content .pages-ip-content em {
    font-size: 12px;
    color: #777;
    padding-right: 10px;
}

.tools-content .pages-ip-content p {
    margin: 10px auto;
    word-wrap: break-word;
    text-indent: 30px;
}

.tools-content .link-title {
    font-size: 14px;
    line-height: 2;
    margin-top: 40px;
}

.tools-content .links-pages {
    padding: 0 !important;
    overflow: hidden;
    border-top: 1px #efefef solid;
    border-left: 1px #efefef solid;
    margin-bottom: 0 !important;
}

.tools-content .links-pages li {
    float: left;
    width: 20%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-bottom: 1px #efefef solid;
    font-size: 14px;
    border-right: 1px #efefef solid;
    margin-left: -1px;
    list-style: none !important;
}

.tools-content .links-pages a:hover {
    color: #FF5E52;
}

.tools-content .links-pages a {
    color: #45B6F7;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    margin: 0 10px;
}


/**
网站地图
 */

.sitemap {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.sitemap a {
    display: inherit;
    align-items: center;
    height: 100%;
}

.sitemap a:hover {
    background-color: #5291fc95;
    color: #ffffff;
}

.sitemap .item-list {
    display: flex;
    list-style: none;
    width: 100%;
}

.sitemap .item-list > .item-list {
    flex-wrap: wrap;
}

.sitemap .samll-list {
    border-left: 1px solid #f5f5f5;
}

.sitemap .item-list .item, .title-big {
    width: 20%;
    border: 1px solid #f5f5f5;
    line-height: 2.6;
    text-align: center;
    margin-bottom: -1px;
    margin-right: -1px;
    border-left: none;
}

.item-list.samll-list > .item-list > .item {
    width: 20% !important;
}

.item-list.samll-list .title-small {
    display: inline-grid;
    align-items: center;
}

.sitemap .item-li {
    float: left;
    width: 16.6667% !important;
    box-sizing: border-box;
}

.sitemap .item-li .title-small {
    width: 100% !important;
}

.sitemap .title-big {
    text-align: left;
    width: 100%;
    text-indent: 20px;
    border-left: 1px solid #f5f5f5;
    clear: both;
    border-top: 2px solid #5291fc !important;
    position: relative;
    z-index: 100;
    font-size: 14px;
    font-weight: 600;
    line-height: 3.6;
}

/**
IPV6查询
 */
.ipv6_table {
    line-height: 40px;
    font-size: 12px;
    text-align: center;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid #f0f1f2;
}

.ipv6_table .ipv6-title {
    font-size: 13px;
    text-align: left;
    padding: 8px 18px;
}

.ipv6_table .body {
    display: flex;
    justify-content: space-between;
    text-align: center;
    color: #333;
}

.ipv6_table .body .th,
.ipv6_table .body .td {
    width: 100%;
    overflow: hidden;
}

.ipv6_table a {
    color: #128bff;
}

.ipv6_table i.icu {
    font-size: 17px;
}

.ipv6_table .td {
    padding: 10px 0;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ipv6_table .td > * {
    width: 100%;
}

.ipv6_table .td > em {
    display: contents;
    word-break: break-all;
}

.ipv6_table .td:nth-child(1),
.ipv6_table .td:nth-child(3),
.ipv6_table .td:nth-child(4),
.ipv6_table .td:nth-child(6),
.ipv6_table .td:nth-child(7),
.ipv6_table .th:nth-child(1),
.ipv6_table .th:nth-child(3),
.ipv6_table .th:nth-child(4),
.ipv6_table .th:nth-child(6),
.ipv6_table .th:nth-child(7) {
    width: 10%;
    flex-shrink: 0;
}

.copy-ipv6-code {
    margin-top: 35px;
}

.copy-ipv6-code .ipv6-title {
    font-size: 12px;
    text-align: left;
    line-height: 30px;
    padding: 8px 18px;
    border-top: 1px solid #f0f1f2;
    border-left: 1px solid #f0f1f2;
    border-right: 1px solid #f0f1f2;
}

.copy-ipv6-code .ipv6-title img {
    height: 30px !important;
    display: inline;
    float: right;
}

.copy-ipv6-code textarea {
    border-color: #f0f1f2 !important;
    resize: none;
    min-height: 75px;
    overflow: hidden;
}

.ipv6-list {
    margin-top: 30px;
    border: 1px solid #f0f1f2;
    overflow: hidden;
    border-bottom: 0;
    border-right: 0;
}

.ipv6-list .ipv6-title {
    font-size: 12px;
    text-align: left;
    line-height: 30px;
    padding: 8px 18px;
    border-bottom: 1px solid #f0f1f2;
    border-right: 1px solid #f0f1f2;
}

.ipv6-list ul {
    padding: 0 !important;
    margin: 0 !important;
}

.tools-content .ipv6-list ul li {
    float: left;
    width: 33.333333%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-bottom: 1px #efefef solid;
    font-size: 14px;
    border-right: 1px #efefef solid;
    margin-left: -1px;
    list-style: none !important;
    overflow: hidden;
}

.tools-content .ipv6-list ul li:nth-child(5n) {
    #border-right: 0;
}

.ipv6-list ul a:hover {
    color: #FF5E52;
}

.ipv6-list ul a {
    color: #45B6F7;
}

.domain-whois {
    width: 100%;
    margin: 40px auto 10px;
}

.domain-whois ul {
    border: 1px solid #f1f1f1;
    padding: 0 !important;
    margin: 0 !important;
    background-color: #fdfdfd;
    border-bottom: none !important;
}

.domain-whois li {
    list-style: none !important;
    display: flex;
    border-bottom: 1px solid #f1f1f1;
    padding: 10px;
}

.domain-whois li span {
    margin-bottom: 0 !important;
}

.domain-whois li span:nth-child(1) {
    text-align: right;
    min-width: 150px;
    flex-shrink: 0;
    margin-right: 30px;
}