@charset "utf-8";

/* reset css*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
}

body,
button,
input,
select,
textarea {
    font-size: 14px !important;
    line-height: 1.5;
    outline: 0;
}

* {
    font-family: "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

code,
kbd,
pre,
samp,
tt {
    font-family: "Courier New", Courier, monospace;
}

small {
    font-size: 12px;
}

ul,
ol {
    list-style: none;
}

abbr[title],
acronym[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

q:before,
q:after {
    content: '';
}

legend {
    color: #000;
}

fieldset,
img {
    border: none;
    vertical-align: middle;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    border: none;
    height: 1px;
}

html {
    overflow-y: scroll;
    font-size: 100px;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

h1 {
    font-size: 18px;
    font-weight: 400;
}

h2 {
    font-size: 16px;
    font-weight: 400;
}

h3 {
    font-size: 14px;
    font-weight: 400;
}

h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 400;
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #666;
    outline: none;
    cursor: pointer;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
    color: #3ca5f6
}

.yahei {
    font-family: 'Microsoft Yahei', '微软雅黑';
}

.clearfix:after {
    content: "\200B";
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    *zoom: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
    -webkit-font-smoothing: antialiased;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999;
    -webkit-font-smoothing: antialiased;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999;
    -webkit-font-smoothing: antialiased;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999;
    -webkit-font-smoothing: antialiased;
}

.container {
    /* width: 1180px;
    margin: 0 auto; */
    display: flex;
    justify-content: center;
}

.wrap {
    padding-top: 82px;
}

.prim {
    color: #ff7e00 !important;
}

.hide {
    display: none !important;
}

.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

.bgc {
    background-color: #fff;
}

.content {
    /* float: left; */
    width: 860px;
}

.sidebar {
    float: right;
    width: 300px;
}

.mt15 {
    margin-top: 63px;
}

.mt20 {
    margin-top: 20px;
}

.mb15 {
    margin-bottom: 15px;
}

/* header */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border: 0;
    background-color: #fff;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .1);
    z-index: 999;
}

.header-logo {
    float: left;
    width: 150px;
    overflow: hidden;
}

.header-logo a {
    height: 62px;
    width: 150px;
    margin: 0;
    padding: 0;
    transition: all .3s ease-out 0s;
    line-height: 1;
    vertical-align: middle;
    display: table-cell;
}

.header-logo a img {
    max-height: 35px;
}

.header-menu {
    float: left;
    width: auto;
    height: 62px;
}

.header-menu .menu-item {
    float: left;
    position: relative;
    z-index: 9999;
    padding: 0 20px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.header-menu .menu-item:hover {
    background-color: #f2f2f2;
}

.dropdown-menu {
    position: absolute;
    z-index: 99999;
    left: 0;
    top: 62px;
    right: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .3);
    border-radius: 5px;
    min-width: 900px; /* 更改宽度以适应九列 */
    margin: 0;
    padding: 10px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.header-menu .menu-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.header-menu .menu-item .active {
    color: #3ca5f6;
}

.dropdown-menu:before,
.dropdown-menu:after {
    position: absolute;
    z-index: 99999;
    left: 20px;
    top: -10px;
    content: '';
    width: 0;
    height: 0;
    border: 5px solid transparent;
}

.dropdown-menu:before {
    border-bottom-color: #ccc;
}

.dropdown-menu:after {
    border-bottom-color: #fff;
    left: 21px; /* 调整位置以覆盖前一个伪元素 */
}

.dropdown-menu .grid-container {
    display: grid;
    grid-template-columns: repeat(9, 1fr); /* 9列 */
    gap: 10px; /* 列间距 */
}

.dropdown-menu .grid-item {
    padding: 10px;
    min-height: 30px;
    line-height: 30px;
    text-align: center;
    list-style: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
    border-right: 1px solid #ccc;
}

.dropdown-menu .grid-item:hover {
    background-color: #ccc;
}

/* index */
.main-list {
    padding: 0 15px;
    background-color: #fff;
}

.main-list-head {
    height: 45px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.main-list-head li {
    float: left;
    height: 43px;
    line-height: 48px;
    margin: 0 10px 0 0;
    padding: 0 15px;
    border-bottom: 2px solid #fff;
    position: relative;
    cursor: pointer;
}

.main-list-head li:after {
    position: absolute;
    top: 14px;
    right: -6px;
    content: "";
    width: 1px;
    height: 16px;
    background: #efefef
}

.main-list-head li:last-child:after {
    display: none;
}

.main-list-head li.active {
    border-bottom-color: #3ca5f6;
}

.main-list-head h1 {
    height: 45px;
    line-height: 50px;
    padding: 0;
    font-size: 20px;
    display: inline-block;
}

.main-list-head h1 em {
    color: #3ca5f6;
}

.main-list-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.item-img {
    float: left;
    width: 245px;
    height: 153px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
}

.item-img img {
    width: 100%;
    transition: all .3s ease-out 0s;
    vertical-align: top;
}

.item-img .light {
    cursor: pointer;
    position: absolute;
    left: -500px;
    top: 0;
    width: 245px;
    height: 153px;
    background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    transform: skewx(-25deg);
    -o-transform: skewx(-25deg);
    -moz-transform: skewx(-25deg);
    -webkit-transform: skewx(-25deg);
    z-index: 999;
}

.item-img:hover .light {
    left: 500px;
    -moz-transition: 1.5s;
    -o-transition: 1.5s;
    -webkit-transition: 1.5s;
    transition: 1.5s
}

.item-cont {
    float: right;
    width: 565px;
    overflow: hidden;
}

.item-cont h2 {
    display: block;
    height: 28px;
    line-height: 28px;
}

.item-cont h2 a {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-decoration: none;
}

.item-cont h2 a:hover,
.item-extend a:hover {
    color: #3ca5f6;
}

.item-intro {
    height: 44px;
    line-height: 22px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    margin: 10px 0;
}

.item-extend {
    padding: 5px 0;
    margin-top: 35px;
    overflow: hidden;
}

.item-extend span {
    display: inline-block;
    color: #999;
    margin-right: 15px;
}

.item-extend span i {
    font-size: 14px;
}

.item-extend a {
    color: #999;
}

/* 侧边栏区块 */
.sidebar-block {
    background-color: #fff;
    padding: 15px;
}

.sidebar-block h3 {
    display: block;
    height: 20px;
    line-height: 20px;
    font-weight: 400;
    border-left: 3px solid #3ca5f6;
    font-size: 16px;
    padding-left: 8px;
}

.hot-tags {
    padding: 10px 0;
}

.hot-tags a {
    display: inline-block;
    padding: 0 5px;
    border: 1px solid #ccc;
    font-size: 12px;
    border-radius: 3px;
    margin: 3px;
    height: 20px;
    line-height: 20px;
}

.hot-tags a:hover {
    background-color: #3ca5f6;
    color: #fff;
    border-color: #3ca5f6
}

/* 友情链接 */
.link-box {
    background-color: #fff;
    padding: 15px;
}

.link-box h3 {
    display: block;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

.link-list {
    overflow: hidden;
    padding: 10px 0 0;
}

.link-list li {
    float: left;
    margin: 3px 6px 3px 0;
}

/* 定位 */
.position {
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    color: #eee;
    padding: 0 20px;
}

.position i,
.position a {
    color: #999 !important;
}

.main-list-head .position {
    line-height: 50px;
}


/* 分页 */
.pages {
    display: block;
    overflow: hidden;
    padding: 20px 0;
    text-align: center;
    background-color: #fff;
}

.pagination {
    display: inline-block;
    overflow: hidden;
}

.pagination li {
    display: inline-block;
    margin: 0 3px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 3px 12px;
    font-size: 16px;
    background-color: #f2f2f2;
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, .05);
    color: #999;
    border-radius: 3px;
}

.pagination li.active span,
.pagination li:hover span,
.pagination li a:hover {
    background-color: #3ca5f6;
    color: #fff;
}

.pagination li.disabled span,
.pagination li.disabled:hover span {
    background-color: #f2f2f2;
    color: #999;
}

/* 详情 */
.detail-box {
    padding: 20px;
    overflow: hidden;
}

.detail-box h1 {
    font-size: 24px;
    padding: 20px 0;
}

.detail-head {
    color: #999;
    padding: 10px 0;
}

.detail-head span {
    display: inline-block;
    margin-right: 10px;
}

.detail-content {
    padding: 20px 0;
}

.detail-content img {
    max-width: 100%;
}

.the-end,
.statement {
    display: block;
    padding: 10px 0;
    text-align: center;
    color: #bbb;
    font-size: 18px;
}

.the-end strong {
    color: #000;
}

.statement {
    font-size: 12px;
}

.detail-page {
    display: block;
    overflow: hidden;
    padding: 30px 20px;
}

.detail-page a {
    line-height: 25px;
    width: 42%;
    overflow: hidden;
    background-color: #f3f3f3;
    padding: 15px 3%;
    border-radius: 5px;
}

.detail-page a span {
    display: block;
    width: 100%;
    line-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}

.detail-page a .title {
    margin-bottom: 25px;
}

.detail-page a span i {
    float: right;
}

.widget-box {
    background-color: #fff;
    overflow: hidden;
    padding: 15px;
}

.widget-box h3 {
    display: block;
    height: 20px;
    line-height: 20px;
    font-weight: 400;
    border-left: 3px solid #3ca5f6;
    font-size: 16px;
    padding-left: 8px;
}

.widget-box .style1 {}

.widget-box .style1 li {
    padding: 15px 0 0 0;
    overflow: hidden;
}

.widget-box .style1 li img {
    float: left;
    max-width: 100px;
    clear: both;
    max-height: 63px;
    border-radius: 3px;
}

.widget-box .style1 li .item-content {
    float: right;
    width: 160px;
}

.widget-box .style1 li .item-content p {
    display: block;
    line-height: 20px;
}

.widget-box .style1 li .item-content p.item-title {
    height: 43px;
    overflow: hidden;
}

.widget-box .style1 li .item-content p.item-time {
    color: #999;
}

/* footer */
.footer {
    width: 100%;
    background-color: #2d3237;
    color: ##5f676f;
    padding: 35px 0;
}