@charset "utf-8";

.banner {
    width: 100%;
    max-width: 1920px;
    min-width: 1200px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.banner img {
    position: absolute;
    width: 1920px;
    height: 450px;
    left: 50%;
    margin-left: -960px;
}

.wiki {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
}
.wiki .center {
    padding-top: 40px;
}
.layui-tab {
    margin: 0;
}
.layui-tab-title {
    border: none;
    text-align: center;
}
.layui-tab-title li {
    font-size: 16px;
    border: 1px solid #ededed;
    border-radius: 3px;
    margin: 0 10px;
    min-width: 105px;
}
.layui-tab-title li:hover {
    color: #4793f7;
}
.layui-tab-title .layui-this {
    background: #4793f7;
    color: #fff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 2px 7px #91befa;
}
.layui-tab-title .layui-this:hover {
    color: #fff;
}
.layui-tab-title .layui-this:after {
    border: none;
}
.layui-tab-content {
    padding: 10px 0 0;
}
.wiki_list li {
    border-bottom: 1px solid #d9d9d9;
    padding: 34px 0;
}
.wiki_list li:last-child {
    border-bottom: none;
}
.wiki_list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wiki_list li a .pic {
    width: 500px;
    height: 236px;
    overflow: hidden;
}
.wiki_list li a .pic img {
    width: 100%;
    min-height: 100%;
}
.wiki_list li a .text {
    flex: 1;
    margin-left: 30px;
    overflow: hidden;
    color: #333;
}
.wiki_list li a .text .title {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wiki_list li a .text .desc {
    line-height: 28px;
    height: 56px;
    overflow: hidden;
}
.wiki_list li a .text .date {
    font-size: 18px;
    color: #808080;
}
.wiki_list li a .text .enter {
    color: #2577e3;
}
.wiki_list li a:hover .text .title {
    color: #4793f7;
}
.wiki_list li a .pic:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
}
#pages {
    padding: 20px 0 60px;
    text-align: center;
}
.layui-laypage {
    margin: 0;
}
.layui-laypage a:hover {
    color: #2577e3;
}


.wiki_detail {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
}
.wiki_detail .center {
    padding: 40px 0 100px;
}
.wiki_detail .content {
    padding: 20px 160px 35px;
    border: 1px solid #d9d9d9;
    text-align: center;
    color: #333;
}
.wiki_detail .content .c_header {
    display: inline-block;
    padding: 0 60px 10px;
    border-bottom: 1px solid #e6e6e6;
}
.wiki_detail .content .title {
    font-size: 20px;
    color: #2577e3;
}
.wiki_detail .content .date {
    font-size: 16px;
    color: #808080;
    margin-top: 10px;
}
.wiki_detail .content .c_main {
    padding-top: 35px;
}
.wiki_detail .content .c_main img {
    max-width: 100%;
}
.wiki_detail .content .c_main p {
    line-height: 2;
}
.wiki_detail .content .goBack {
    height: 32px;
    line-height: 32px;
    color: #333;
    border: 1px solid #808080;
    border-radius: 3px;
    box-shadow: 0 2px 7px #d9d9d9;
}