/* 基础样式 */
html,
body {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #544e4c;
    background: #f4f4f4;
}

a {
    color: #555555;
    text-decoration: none;
}

a:focus,
a:hover {
    color: #555555;
}

li {
    list-style: none;
}

* {
    box-sizing: border-box;
}

/* 布局容器 */
.app-container {
    width: 100%;
    margin: 0 auto;
}

/* 头部样式 */
.app-header {
    background: #fff;
}

.header-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 60px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-center {
    flex: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    padding: 5px;
}

.logo {
    display: inline-block;
    height: 46px;
    line-height: 46px;
    margin: 7px;
    cursor: pointer;
    background-image: url(logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.logo a {
    font-size: 31px;
    height: 28px;
    padding-left: 53px;
    color: #1092d4;
    letter-spacing: 4px;
}

.iconfont {
    display: block;
    font-size: 24px;
    line-height: 24px;
}

/* 主体内容 */
.app-main {
    width: 1200px;
    margin: 0 auto;
}

/* ICP查询区域 */
.icp-search-section {
    margin-top: 20px;
    padding: 23px 20px;
    height: 168px;
    background: url("../img/icp_mask.png") no-repeat top right #fff;
    background-size: auto 100%;
    border-radius: 4px;
    text-align: center;
}

.search-container {
    display: inline-block;
}

.icp-search-section h1 {
    font-size: 20px;
    font-weight: 500;
    color: #191a24;
    line-height: 22px;
    float: left;
    height: 48px;
    line-height: 48px;
    margin-right: 10px;
    margin-top: 18px;
}

.icp-search-section h1 i {
    margin-right: 7px;
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: -3px;
    background: url("../img/icp_icon.png") no-repeat center;
    background-size: 100%;
}

.search-box {
    float: left;
    margin-top: 18px;
}

.search-input-group {
    width: 760px;
    border-radius: 4px;
    overflow: hidden;
}

.domain-input {
    display: block;
    float: left;
    padding: 0 16px;
    width: 630px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    color: #333;
    border: 1px solid #017aff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: 0;
}

.search-button {
    float: left;
    display: block;
    width: 130px;
    height: 48px;
    font-size: 14px;
    color: #fff;
    background: #017aff;
    cursor: pointer;
    border-bottom-right-radius: 4px;
    border: none;
}

.search-button:hover {
    opacity: 0.9;
}

.search-note {
    margin-top: 16px;
    font-size: 14px;
    color: #98a3b7;
    text-align: left;
}

/* 信息展示区域 */
.section-title {
    margin-bottom: 20px;
    position: relative;
    padding-left: 13px;
    font-size: 20px;
    font-weight: 500;
    color: #191a24;
    line-height: 30px;
}

.section-title:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    width: 3px;
    height: 18px;
    background: #017aff;
}

.icp-info-section {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
}

.info-content {
    border: 1px solid #efefef;
    border-bottom: 0;
}

.info-row {
    display: flex;
    height: 48px;
    line-height: 48px;
    border-bottom: 1px solid #efefef;
}

.info-label {
    padding-right: 20px;
    width: 270px;
    height: 46px;
    text-align: right;
    font-size: 14px;
    color: #191a24;
    background-color: #fafcff;
    border-right: 1px solid #efefef;
}

.info-value {
    padding-left: 20px;
    width: 740px;
    height: 46px;
    font-size: 14px;
    color: #191a24;
}

.info-value.ok {
    color: #38cf44;
}

.info-value.error {
    color: red;
}

.info-value a {
    margin-right: 20px;
    color: #019aff;
}

.info-value a:hover {
    text-decoration: underline;
}

.line-through {
    text-decoration: line-through;
}

/* 工具简介区域 */
.icp-intro-section {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
}

.intro-content h3 {
    margin: 0 0 10px 0;
    font-weight: normal;
}

/* 工具列表 */
.tools-section {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tool-item {
    display: flex;
    align-items: center;
    padding: 20px;
    width: calc(25% - 15px);
    height: 78px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #f5f5f5;
    transition: all 0.3s;
}

.tool-item:hover {
    box-shadow: 0 10px 20px 1px rgba(0, 0, 0, 0.05);
}

.tool-icon {
    margin-right: 16px;
    width: 32px;
    height: 32px;
    background-size: 100%;
}

.icon-wangan {
    background-image: url("../img/tool_1.png");
}

.icon-whois {
    background-image: url("../img/tool_2.png");
}

.icon-icp {
    background-image: url("../img/tool_3.png");
}

.icon-weixin {
    background-image: url("../img/tool_4.png");
}

.tool-link {
    display: block;
    font-size: 14px;
    color: #191a24;
    line-height: 14px;
}

.tool-item:hover .tool-link {
    color: #017aff;
}

.tool-info p {
    margin-top: 10px;
    font-size: 12px;
    color: #98a3b7;
}

.tool-more {
    margin-left: auto;
    width: 18px;
    height: 18px;
    background: url("../img/jt_cur.png") no-repeat center;
    background-size: 100%;
    opacity: 0;
}

.tool-item:hover .tool-more {
    opacity: 1;
}

/* 资讯和域名列表 */
.news-section,
.recent-section {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
}

.news-list,
.domain-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.domain-list {
    margin-bottom: 40px;
}

.news-list li,
.domain-list li {
    margin-bottom: 16px;
    width: 280px;
}

.news-list li a,
.domain-list li a {
    display: block;
    font-size: 14px;
    color: #191a24;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s;
}

.news-list li:hover a,
.domain-list li:hover a {
    color: #017aff;
}
.wzd {
    color: red;
}


.app-footer {
    background: #fff;
}



.footer {
    font-size: 12px;
    margin-top: 40px;
}

.footer .copyright {
    background: #fff;
    padding: 10px 0;
    text-align: center;
    color: #666666;
    margin-bottom: 8px;
}
.footer .copyright p {
    line-height: 22px;
}

.footer .copyright p:first-child a {
    margin: 0 5px;
}
.footer .copyright a {
    color: #666666;
}

.footer .copyright p:first-child a:after {
    margin-left: 10px;
    content: '|';
}

.footer .copyright p:first-child a:last-child:after {
    content: '';
}

.text-center {
    text-align: center!important;
}

.fweblink {
    padding: 10px 0 40px;
    color: #999999;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
   
    width: 1200px;
    margin: 0 auto;

}
.fweblink a {
    color: inherit;
    margin: 1px 5px;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {

    .header-container,
    .app-main {
        width: 100%;
        padding: 0 15px;
    }

    .tool-item {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .search-input-group {
        width: 100%;
    }

    .domain-input {
        width: 70%;
    }

    .search-button {
        width: 30%;
    }

    .tool-item {
        width: 100%;
    }

    .news-list li,
    .domain-list li {
        width: 100%;
    }
}