/* 通用 */
html{
    font-size: 14px;
}
body {
    margin: 0;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
li {
    list-style: none;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}
.fa-badge-rim, .fa-border, .fa-colla-content, .fa-colla-item, .fa-collapse, .fa-elem-field, .fa-form-pane .fa-form-item[pane], .fa-form-pane .fa-form-label, .fa-input, .fa-input-split, .fa-panel, .fa-quote-nm, .fa-select, .fa-tab-bar, .fa-tab-card, .fa-tab-title, .fa-tab-title .fa-this:after, .fa-textarea {
    border-color: #eee;
}
.fa-btn, .fa-input,  .fa-textarea, .fa-upload-button {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
}

.fa-select{
    outline: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    cursor: pointer;
}
input,
textarea {
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /* Firefox */
    -moz-box-sizing: border-box;
}

button {
    cursor: pointer;
}



/* 按钮 */
.btn {
    display: inline-block;
    vertical-align: middle;
    line-height: 32px;
    border: 1px solid transparent;
    padding: 0 6px;
    background-color: #009a61;
    color: #f5f5f5;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border-radius: 2px;
    transition: opacity ease-in-out .3s;
}

.btn-red {
    background-color: #db6060;
    color: #f5f5f5;
}

.btn-purple {
    background-color: #7065cd;
    color: #f5f5f5;
}
.btn-green{
    background-color: #00ab40 !important;
    color: #f5f5f5;
}

.fa-btn{
    display: inline-block;
    vertical-align: middle;
    height: 38px;
    line-height: 36px;
    border: 1px solid transparent;
    padding: 0 18px;
    background-color: #009a61;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fa-btn-red{
    background-color: #ff2929;
    color: #f5f5f5;
}
.fa-btn-yellow{
    background-color: #ff7029;
    color: #f5f5f5;
}
.fa-btn-black{
    background-color: #434343;
    color: #f5f5f5;
}
.fa-btn:hover {
    opacity: .8;
    filter: alpha(opacity=80);
    color: #fff;
}
/* 输入框 */
.fa-input{
    height: 34px;
    color: #434343;
}
/* 文本框 */
.fa-textarea{
    font-family: auto;
    position: relative;
    min-height: 100px;
    height: auto;
    line-height: 20px;
    padding: 6px 10px;
    resize: vertical;
    display: block;
    width: 100%;
    line-height: 38px\9;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    color: rgba(0, 0, 0, .85);
    border-radius: 2px;
    transition: all .3s;
    box-sizing: border-box;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-sizing: border-box;
    border-color: #eee;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* 输入框文本框 */
.fa-input, .fa-textarea {
    display: block;
    width: 100%;
    padding-left: 10px;
}
.fa-input, .fa-select, .fa-textarea {
    height: 38px;
    line-height: 1.3;
    line-height: 38px\9;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    color: rgba(0,0,0,.85);
    border-radius: 2px;
}
.fa-select:hover,
.fa-input:hover,
.fa-textarea:hover {
    border-color: #d2d2d2 !important;
}

.fa-select:focus,
.fa-input:focus,
.fa-textarea:focus {
    border-color: #16b777 !important;
    box-shadow: 0 0 0 3px rgba(22, 183, 119, .08);
}

.pb200{
    padding-bottom: 14.28rem;
}
/* 主题结束 */
.btn-disabled {
    background-color: #fbfbfb !important;
    color: #d2d2d2 !important;
    cursor: not-allowed !important;
    opacity: 1;
    border: 1px solid #eee;
}

.btn:hover {
    opacity: 0.9;
}

/* 首页 */
.ff-inner .h-card {
    padding: 10px;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
}

.ff-inner .h-card  .h-card-head{
    border-bottom: 1px solid #f0f0f0;
    padding: 0 0 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ff-inner .h-card .h-card-head a{
    color: #848589;
}
.ff-inner .h-card .h-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 !important;
}

/* 顶部导航 */
.ff-topnav {
    background-color: #363636;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.ff-topnav ul {
    margin: 0 10px;
}

.ff-topnav li {
    padding: 4px;
}

.ff-topnav a {
    color: #ccc;
}

.ff-topnav-right {
    display: flex;
    justify-content: space-between;
}

/* 搜索 */
.ff-search {
    display: flex;
    justify-content: center;
}

.ff-search .w {
    display: flex;
    justify-content: center;
}

.ff-search ul {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    padding: 30px 10px;
    width: 100%;
}

.ff-search ul span {
    font-size: 28px;
    color: #009a61;
    margin-left: 10px;
}

.ff-search ul a {
    display: flex;
}

.ff-search ul img {
    width: 42px;
    height: 42px;
}

.ff-search input {
    border: 0px;
    color: #0c0d0f;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 5px;
    padding: 0 10px;
    width: 400px;
    height: 45px;
    border: 1px solid #eee;
}

.ff-search input:focus {
    border: 1px solid #eee;
    color: #0c0d0f;
    background-color: rgba(223, 212, 212, 0.05);
}

.ff-search button {
    border: 0px;
    position: absolute;
    right: 6px;
    height: 80%;
    width: 50px;
    border-radius: 5px;
    color: #009a61;
}

.ff-search .left {
    grid-column: span 4;
    display: flex;
}

.ff-search .right {
    grid-column: span 8;
    display: flex;
    position: relative;
    align-items: center;
}

.ff-search .right form {
    display: flex;
    position: relative;
    align-items: center;
}

/* body区域布局 */
.ff-inner {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.ff-inner .w {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 0;
}

.w {
    width: 1200px;
}

/* 中间导航 */



.ff-tabs {

    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;

}



.ff-tabs .w ul {
    display: flex;
    justify-content: start;
    padding: 5px 10px 0 10px;
}

.ff-tabs li {
    list-style-type: none;
    margin-bottom: -1px;
    display: inline-block;
    font-size: 15px;
}

.ff-tabs a {
    line-height: 31px;
    padding: 0 14px;
    color: #009a61;
}

.ff-tabs li.active {
    background: #fff;
    border-radius: 3px 3px 0 0;
    border-top: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    border-left: 1px solid #d2d2d2;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: 0;
    background: #fff;
    z-index: 1;
    border-bottom: 1px solid #d2d2d2;
    box-shadow: 0px 1px 7px 0px #848589;
}

.fixed .w {
    background: unset !important;
    display: flex;
    justify-content: start;
    border-bottom: unset !important;
}

/* 在线工具 */

.ff-inner .tools {
    grid-column: span 8;
}

.ff-inner .tools ul {
    grid-column: span 8;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.ff-inner .tools li {
    grid-column: span 3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 4px;
    border: 1px solid #fafafa;
}

.ff-inner .tools li:hover {
    border-color: #009a61;
    transition: all 0.3s ease-in-out;
}

.ff-inner .tools .h-item a{
    color: #009a61;
    padding: 20px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ff-inner .tools img {
    width: 50px;
    height: 50px;
    margin-bottom: 4px;
}

/* 天气预报 */

.ff-inner .weather {
    grid-column: span 4;
}

/* 友情链接 */

.ff-inner .links {
    grid-column: span 12;
}

.ff-inner .links span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 !important;

}

.ff-inner .links ul {
    display: flex;
    margin-top: 10px;
}

.ff-inner .links li {
    padding: 0 30px 0 0;
}

.ff-inner .links a {
    color: #009a61;
}

/* 底部备案 */
.ff-footer {
    display: flex;
    justify-content: center;

}

.ff-footer .w {
    padding: 10px;
    text-align: center;
}

.ff-footer a {
    color: #009a61;
}


/* tool页面 */

/* 分类 */
.ff-inner .classify {
    grid-column: span 12;
    display: flex;
    gap: 16px;
}
.ff-inner .classify .classify-scroll{
    display: flex;
    gap: 16px;
    padding: 10px;
}

.ff-inner .classify a {
    display: block;
    margin: 0 6px;
    color: #666;
    font-size: 15px;
    white-space: nowrap;
}

.ff-inner .classify .active {
    color: #009a61;
    border-bottom: 2px solid #009a61;
}

/* 工具列表 */
.ff-inner .t-tools a {
    display: inline-block;
}

.ff-inner .t-tools {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.ff-inner .t-tools .item {
    grid-column: span 3;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
}

.ff-inner .t-tools .item-bg {
    width: 100%;
    height: 50px;
    position: absolute;
    filter: blur(6px) saturate(10);
    z-index: -1;
    opacity: 0.09;
    background: rgba(0, 0, 0, .12);
    overflow: hidden;
}

.ff-inner .t-tools .item-bg-w {
    width: 100%;
    height: 100%;
    transform: scale(2);
    border-radius: 0 0 60px 60px;
    filter: blur(6px) saturate(10);

}

.ff-inner .t-tools .item-bg img {
    position: absolute;
    width: 100%;
    bottom: 0;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cGF0aCBkPSJNMTAwIDBDMjAgMCAwIDIwIDAgMTAwczIwIDEwMCAxMDAgMTAwIDEwMC0yMCAxMDAtMTAwUzE4MCAwIDEwMCAweiIvPjwvc3ZnPg==);
}

.ff-inner .t-tools .item-inner {
    grid-column: span 3;
    padding: 10px;
    border-radius: 3px;

}

.ff-inner .t-tools .item:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .2);
    transition: box-shadow .3s ease-in-out;
}

.ff-inner .t-tools .item-hd {
    display: flex;
    justify-content: space-between;
}

.ff-inner .t-tools .item-hd-left {
    display: flex;
}

.ff-inner .t-tools .item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
}

.ff-inner .t-tools .item-cover {
    width: 50px;
    height: 50px;
}

.ff-inner .t-tools .item-bd {
    margin-top: 8px;
    padding: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #444;
}

.ff-inner .t-tools .item-ft {
    display: flex;
    justify-content: space-between;
}

.ff-inner .t-tools .item-hd-right a,
.ff-inner .t-tools .item-btn,
.ff-inner .t-tools .item-title {
    color: #333;
}

.ff-inner .t-tools .item-cover img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.ff-inner .t-tools .item-record {
    display: flex;
    align-items: center;
    cursor: pointer;

}

.ff-inner .t-tools .item-record:hover .item-record-icon {
    background-position: 0 -16px;
}

.ff-inner .t-tools .item-record-icon {
    width: 16px;
    height: 16px;
    background: url('/static/icon/214712uufjXSiNu1KLwW_16x48.png') 0 0 no-repeat;
    ;
    display: inline-block;
    -webkit-transition-property: background-position;
    -webkit-transition-duration: .5s;
    -moz-transition-property: background-position;
    -moz-transition-duration: .5s;
    transition-property: background-position;
    transition-duration: .5s;
}

.ff-inner .t-tools .item-recard-btn {
    padding: 2px 0 0 4px;
}

.ff-inner .t-tools .item-recard-btn:hover {
    padding: 2px 0 0 4px;

}

.ff-inner .t-tools .item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.ff-inner .t-tools .item-btn {
    border-bottom: 2px solid #fff;
    -webkit-transition-property: border;
    -webkit-transition-duration: .5s;
    -moz-transition-property: border;
    -moz-transition-duration: .5s;
    transition-property: border;
    transition-duration: .5s;
}

.ff-inner .t-tools .item-btn:hover {
    border-bottom: 2px solid #009a61;

}

.ff-inner .t-tools .item-link {
    color: #999;
}


/* 工具内容页 */
.ff-inner .tool-content {
    grid-column: span 9;
    padding: 10px;
}

/* 工具面包屑 */

.ff-inner .tool-content .breadcrumb a {
    color: #009a61;
}
.ff-inner .tool-content .breadcrumb span {
    color:#5f5f5f;
}

/* 工具页简介/说明 */
.tool-row .title,.tool-content h1{
    font-size: 1.04rem;
    color: #444;
}
.tool-row {
    background: #fafafa;
    padding: 10px;
    border-radius: 5px;
}
.tool-row .text {
    color: #5f5f5f;
}


/* 工具页侧边 */
.ff-inner .tool-side {
    grid-column: span 3;
}

.ff-inner .tool-side .item-record {
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #d2d2d2;
    padding: 10px;
    border-radius: 3px;
    margin-top: 10px;
    user-select: none;

}



.ff-inner .tool-side .item-recard-btn {
    line-height: 0;
    margin-left: 5px;
}

.ff-inner .tool-side input {
    letter-spacing: 0.5px;
    background-color: rgba(0, 0, 0, .05);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0 40px 0 8px;
    margin: 0;
    font-size: 14px;
    color: #0c0d0f;
    height: 32px;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
}

.ff-inner .tool-side input:focus {
    background-color: #fff;
    border: 1px solid #d2d2d2;
}

.ff-inner .tool-side button {
    border: 0;
    background: #fff;
    padding: 5px 10px;
    line-height: 0;
    border-radius: 4px;
    position: absolute;
    right: 5px;
    top: 3px;
}

.ff-inner .tool-side button:hover {
    background: #f0f0f0;
}

.ff-inner .tool-side .share-input {
    position: relative;
}

.ff-inner .tool-side .side-share {
    margin-top: 10px;
}

.ff-inner .tool-side .side-share img {
    cursor: pointer;
    width: 22px;
    margin-right: 4px;
}

.ff-inner .tool-side .item-record-icon {
    width: 16px;
    height: 16px;
    background: url('/static/icon/214712uufjXSiNu1KLwW_16x48.png') 0 0 no-repeat;
    ;
    display: inline-block;
    -webkit-transition-property: background-position;
    -webkit-transition-duration: .5s;
    -moz-transition-property: background-position;
    -moz-transition-duration: .5s;
    transition-property: background-position;
    transition-duration: .5s;
}
.ff-inner .item-record .record-sc {
    background-position: 0 0;
}
.ff-inner .item-record .record-qxsc {
    background-position: 0 -32px;
}
.ff-tabs .w {

    background: #f5f5f5;
    display: flex;
    justify-content: start;
    border-bottom: 1px solid #d2d2d2;
}
.hide {
    display: none ;
}
/* meiti */

@media screen and (max-width: 1200px) {
    .w {
        width: 1000px;
    }

    .ff-inner .tools li {
        grid-column: span 4;
    }

    .ff-inner .t-tools .item {
        grid-column: span 4;
    }
}

@media screen and (max-width: 1001px) {
    .w {
        width: 800px;
    }

    .ff-inner .t-tools .item {
        grid-column: span 6;
    }

    .ff-inner .tool-content {
        grid-column: span 12;
    }

    .ff-inner .tool-side {
        display: none;
    }

}

@media screen and (max-width: 801px) {
    .w {
        width: 100%;
    }

    .ff-inner .tools li {
        grid-column: span 6;
    }

    .ff-inner {
        margin-top: 0;
    }

    .ff-inner .tools {
        grid-column: span 12;
    }

    .ff-inner .weather {
        grid-column: span 12;
    }

    .ff-search ul span {
        display: none;
    }

    .ff-search input {
        width: 100%;
    }

    .ff-search .left {
        grid-column: span 1;
    }

    .ff-search .right {
        grid-column: span 11;
    }

    .ff-search .right form {
        width: 100%;
    }

    .ff-inner .links,
    .ff-inner .tools,
    .ff-inner .weather {
        border: none;
    }

    .ff-inner .t-tools .item {
        grid-column: span 12;
    }

    .ff-inner .t-tools {
        margin: 0 10px;
    }

    .ff-tabs {
        display: none;
    }

    .ff-search ul {
        padding: 12px 10px;
    }
    .ff-inner .classify .classify-scroll{
        overflow: scroll;
    }


}