html,
body {
    height: 100%;
    width: 100%;
    background: #f9f9f9;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    font-family: "å¾®è½¯é›…é»‘", serif;
    font-size: 14px;
}

fieldset,
img {
    border: 0;
}

:focus {
    outline: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var,
optgroup,
i {
    font-style: normal;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

*,
*:after,
*:before {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}

/* 排除链接元素的过渡效果，确保链接可以正常点击 */
a,
a:after,
a:before {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.body {
    margin: 0 auto;
    width: 1000px;
    overflow: hidden;
}

/*** å¤´éƒ¨ ***/
.header {
    width: 100%;
    margin: 0 auto;
}

.top {
    float: left;
    width: 320px;
    margin: 30px 0;
}

.logo {
    float: left;
    width: 100%;
}

.logo img {
    float: left;
    width: 100%;
}

.menu_icon {
    float: right;
    display: none;
    width: 38px;
    height: 38px;
    margin-right: 30px;
    margin-top: 20px;
    background: url("../images/menu.png") no-repeat;
    background-size: 100%;
    -webkit-animation: bounce-down 1.5s linear infinite;
    animation: bounce-down 1.5s linear infinite;
}

.slogan {
    float: left;
    font-size: 16px;
    color: #aaa;
}

.search {
    float: right;
    margin-top: 50px;
}

.search .key {
    float: left;
    width: 180px;
    height: 38px;
    border: 1px solid #46a4cd;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 10px;
}

.search .btn_key {
    float: left;
    margin-top: 0;
    width: 60px;
    height: 40px;
    border: none;
    background: #46a4cd;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.search .btn_key:hover {
    background: #388aae;
    color: #fff;
    cursor: pointer;
}

.menu {
    float: left;
    width: 100%;
    padding: 0;
    background: #46a4cd;
    border-radius: 5px;
}

.menu li {
    float: left;
}

.menu li a {
    float: left;
    position: relative;
    display: block;
    padding: 5px 20px;
    height: 30px;
    line-height: 30px;
    color: #fefefe;
    font-size: 16px;
}

.menu li a:hover {
    background: #2d8ab3;
    color: #fff;
}

.menu li a::after {
    content: '';
    position: absolute;
    right: 0;
    margin-top: 5px;
    width: 0;
    height: 20px;
    border-right: 1px solid #dedede;
}

.menu li:last-child a::after {
    border-right: 1px solid #fff;
}

.menu li.active a {
    background: #2d8ab3;
    color: #fff;
}

.position {
    float: left;
    width: 96%;
    color: #999;
    margin-top: 8px;
    padding: 5px 2%;
    border-radius: 5px;
}

.position a {
    display: inline;
    font-size: 14px;
    color: #999;
}

/**** å†…å®¹éƒ¨åˆ† ****/
.main {
    width: 100%;
    margin: 10px auto 0;
    border-radius: 5px;
    overflow: hidden;
}

.left {
    float: left;
    width: 74.5%;
}

.content {
    float: left;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.title {
    float: left;
    width: 90%;
    padding: 10px 0;
    font-size: 16px;
}

.title a {
    float: left;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.title::before {
    content: '';
    float: left;
    margin-left: -1px;
    margin-right: 5px;
    height: 20px;
    width: 5px;
    background: #04a4cc;
}

.thumb {
    float: left;
    margin: 10px 10px 0;
    width: 150px;
    overflow: hidden;
}

.thumb img {
    width: 150px;
    height: 100px;
    -webkit-transition: -webkit-transform .3s linear;
    -moz-transition: -moz-transform .3s linear;
    -o-transition: -o-transform .3s linear;
    transition: transform .3s linear
}

.article {
    float: left;
    width: 560px;
    margin: 10px 5px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.content:hover {
    background: #fafafa;
    border: 1px solid #0781a4;
}

.content:hover .thumb img {
    transition: All 0.7s ease;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.type_content {
    float: left;
    min-height: 500px;
    width: 96%;
    border: 1px solid #aaa;
    padding: 10px 2%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.tag {
    float: left;
    width: 80%;
    font-size: 12px;
    color: #999;
    padding: 5px;
    margin-bottom: 5px;
}

.tag span {
    float: left;
    margin-left: 3%;
}

.tag span a {
    color: #999;
}

.tag span a:hover {
    color: #666;
}

.more {
    position: absolute;
    right: 20px;
    bottom: -1px;
}

.more a {
    float: left;
    display: block;
    background: #04a4cc;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
}

.more a:hover {
    background: #0781a4;
}

.page {
    float: right;
    margin-bottom: 10px;
}

.page li {
    float: left;
    margin-left: 3px;
    background: #FFF;
    border-radius: 3px;
    overflow: hidden;
}

.page li a,
.page li span {
    float: left;
    display: inline-block;
    padding: 10px 15px;
}

.page li.active {
    background: #04a4cc;
    color: #fff;
}

.page li:hover a {
    background: #04a4cc;
    color: #fff;
}

.right {
    float: right;
    width: 24.5%;
}

.list_block {
    float: left;
    width: 99%;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.iGzw {
    float: left;
    width: 100%;
}

.iGzw li {
    float: left;
    width: 31.3333%;
    margin: 10px 1%;
}

.iGzw li a {
    background: #ececec;
    float: left;
    color: #696969;
    width: 100%;
    padding: 5px 0;
    display: inline-block;
    text-align: center;
    background-position: center;
    border-radius: 5px;
}

.iGzw li a:hover {
    background: #04a4cc;
    color: #fff;
}

.list {
    float: left;
    width: 100%;
    padding-bottom: 10px;
}

.list li {
    float: left;
    width: 90%;
    margin: 3px 0 0 10px;
    line-height: 1.5;
}

.list li a {
    color: #333;
    font-size: 14px;
}

.list li a:hover {
    color: #0781a4;
}

.ad-list,
.ad-list img {
    float: left;
    width: 100%;
}

.ad {
    float: left;
    width: 99.8%;
    border: 1px solid #dedede;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.ad img {
    float: left;
    color: #333;
}

.link {
    float: left;
    width: 97.8%;
    border: 1px solid #dedede;
    padding: 10px 1%;
    background: #fff;
    border-radius: 5px;
}

.link a {
    float: left;
    margin-left: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.link a:hover {
    color: #999;
}

.ifooter {
    float: left;
    width: 95.8%;
    text-align: center;
    border: 1px solid #dedede;
    padding: 10px 2%;
    border-radius: 5px;
    background: #fff;
}

/** æ–‡ç« å†…å®¹ **/

.wz {
    float: left;
    width: 100%;
    min-height: 500px;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    overflow: hidden;
}

.wz_title {
    float: left;
    width: 100%;
    font-size: 18px;
    text-align: center;
}

.wz_span {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 12px;
    margin: 10px 0;
}

.wz_body {
    float: left;
    width: 94%;
    margin-left: 3%;
    padding-top: 15px;
    line-height: 1.5;
    border-top: 1px dashed #dedede;
}

.language-markup,
pre[class*=language-] {
    position: relative;
    margin: 10px 0;
    padding: 15px 5px 15px;
    line-height: 20px;
    border: 1px solid #ddd;
    border-left-width: 6px;
    background-color: #F2F2F2;
    color: #333;
    font-size: 12px
}

.wz_tag {
    float: left;
    width: 94%;
    padding: 10px 3%;
    border-radius: 5px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.wz_tag span {
    float: left;
}

.wz_tag a {
    float: left;
    margin-left: 10px;
}

.pre_next {
    float: left;
    width: 100%;
    padding: 20px 0;
    border-radius: 5px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.pre {
    float: left;
    width: 100%;
}

.next {
    float: left;
    width: 100%;
}

.comments_list {
    float: left;
    width: 96%;
    padding: 10px 2%;
    background: #fff;
    border-radius: 5px;
}

.comments_list li {
    float: left;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #cccccc;
}

.comments_list li span {
    float: left;
    width: 100%;
}

.comments_list li a {
    float: left;
    margin-right: 10px;
    font-weight: bold;
}

.comments_list li i {
    float: left;
    color: #a9a9a9;
}

.comments_list li p {
    float: left;
    width: 98%;
    margin-left: 1%;
    margin-top: 5px;
    line-height: 1.6;
}

.comments {
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 5px;
}

.comments h1 {
    float: left;
    width: 96%;
    margin-left: 2%;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc
}

.contact {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.contact h1 {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc
}

.layui-form-item .layui-input-inline {
    width: 375px;
}

/**
  å¿ƒæƒ…éšç¬”
  */
.mood {
    padding: 15px 0;
}

.mood:hover {
    background: #f0f0f0;
}

.mood_content {
    float: left;
    width: 90%;
    margin-left: 25px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/** ç­‰äºŽæˆ–å°äºŽ1000px **/
@media screen and (max-width: 1000px) {
    .body {
        width: auto;
        max-width: 100%;
    }

    .top {
        margin: 10px 0;
        width: 60%;
    }

    .left {
        width: 100%;
    }

    .right {
        display: none;
    }

    .menu_icon {
        display: block;
    }

    .menu_line {
        float: left;
        width: 100%;
        height: 5px;
        background: #46a4cd;
        border-radius: 2px;
        display: inline-block;
    }

    .menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100% - 90px);
        background: #FFF;
        z-index: 5;
        overflow: hidden;
    }

    .menu>li {
        float: left;
        display: block;
        width: 95%;
        border-bottom: 1px solid #ddd;
        padding: 0;
    }

    .menu>li>a {
        display: inline-block;
        font-size: 18px;
        color: #000;
    }

    .menu>li>a:after {
        content: "";
        border-right: none;
    }

    .h_menu .menu_icon {
        background: url(../images/close.png) no-repeat center center;
        background-size: 100%;
    }

    .h_menu .menu {
        left: 0;
    }

    .logo {
        width: 70%;
    }

    .slogan {
        font-size: 0.8rem;
    }

    .search {
        display: none;
    }

    .thumb {
        width: 20%;
        overflow: hidden;
    }

    .thumb img {
        width: 100%;
        min-height: 80px;
        max-height: 100px;
    }

    .article {
        width: 73%;
    }

    .layui-form-item .layui-input-inline {
        width: 68%;
    }
}