#app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    color: #555;
}

* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}

img {
    display: block;
}

textarea {
    outline: none;
}

input {
    border: none;
}

[v-cloak] {
    display: none;
}


/* Header */

.header-bg {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 0 9.5px 0.5px rgb(49 87 163 / 13%);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 10px 0;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.header-logo img {
    height: 40px
}

.header-nav .el-link {
    padding: 0 10px;
}

@media(max-width: 1100px) {
    .header-box {
        display: initial;
    }
    .header-logo {
        text-align: center;
        padding-bottom: 10px;
    }
    .header-logo img {
        height: 32px;
    }
    .header-nav {
        display: flex;
        justify-content: space-around;
    }
    .header-nav .el-link {
        padding: 0;
    }
}


/* 导读 */

.take-box {
    max-width: 1100px;
    margin: auto;
    border: dodgerblue solid 1px;
    box-sizing: border-box;
    padding: 20px 0;
}

.take-box p {
    font-size: 18px;
    text-indent: 2em;
    line-height: 30px;
    padding: 0 20px;
}

.take-box p:not(:first-child) {
    margin-top: 10px;
}

.take-box strong {
    font-weight: bold;
}

@media(max-width: 1100px) {
    .take-box p {
        font-size: 14px;
        line-height: 20px;
    }
}


/* 置顶头条 */

.headlines {
    max-width: 1100px;
    margin: 20px auto;
}

.headlines li {
    text-align: center;
}

.headlines .el-link {
    display: inline-block;
    width: 100%;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    line-height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.headlines .el-link:hover {
    color: dodgerblue;
}

@media(max-width: 1100px) {
    .headlines {
        width: 90%;
        margin: 20px auto 0 auto;
    }
    .headlines li {
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .headlines .el-link {
        font-size: 16px;
    }
}


/* Banner */

.banner-box {
    position: relative;
    margin-top: 60px;
}

.banner-box img {
    width: 100%;
}

.banner-middle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 1000px;
    height: 300px;
    position: absolute;
    top: 40px;
    left: calc(50% - 600px);
}

.banner-title {
    flex: 0 0 100%;
}

.banner-title span {
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

.banner-takeaway {
    width: 500px;
    margin: auto;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    padding: 20px;
}

.banner-takeaway a,
.banner-takeaway p {
    color: #fff;
    line-height: 30px;
}

.banner-takeaway .el-link {
    color: #eee;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

@media(max-width: 1100px) {
    .banner-box {
        height: 350px;
        overflow: hidden;
        margin-top: 82px;
    }
    .banner-box img {
        width: auto;
        height: 100%;
        position: absolute;
        left: calc(50% - 640px);
    }
    .banner-middle {
        width: 90%;
        height: 80%;
        top: 10%;
        left: 5%;
    }
    .banner-title span {
        font-size: 20px;
        text-shadow: 5px 2px 6px #fff;
    }
    .banner-takeaway {
        background: rgba(0, 0, 0, .75);
    }
    .banner-takeaway a,
    .banner-takeaway p {
        line-height: 24px;
    }
}


/* 内容盒子 */

.content-box {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}


/* 左边布局 */

.left-box {
    flex: 1;
}


/* 导航菜单 */

#app .el-menu--horizontal>.el-menu-item {
    font-weight: bold;
    height: 40px;
    line-height: 40px;
}

#app .el-menu--horizontal>.el-menu-item.is-active {
    color: #fff;
    background: #409eff;
}

@media(max-width: 1100px) {
    .content-box {
        display: initial;
    }
    .left-box {
        width: 90%;
        margin: auto;
    }
    #app .el-menu--horizontal>.el-menu-item {
        height: 30px;
        line-height: 30px;
    }
}


/* 标题 */

.title-box {
    display: flex;
    justify-content: space-between;
    border-bottom: dodgerblue solid 1px;
    margin: 20px 0 10px;
}

.title-box h1 {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    line-height: 2;
    position: relative;
    padding-left: 20px;
}

.title-box h1::before {
    content: '';
    width: 4px;
    height: 24px;
    background: dodgerblue;
    border-radius: 10px;
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
}

.title-box .el-link span {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.title-box .el-link span:hover {
    color: rgb(1, 5, 8);
}

.right-box .title-box {
    border-bottom: #ccc solid 1px;
}

.right-box .title-box h1 {
    color: #555;
}

.right-box .title-box h1::before {
    background: #dcdfe6;
}

.right-box .title-box .el-link span {
    font-weight: normal;
}

.right-box .el-checkbox__label {
    padding-left: 4px;
}

@media(max-width: 1100px) {
    .title-box h1 {
        font-size: 16px;
    }
    .title-box .el-link {
        font-size: 12px;
    }
}


/* 文章列表 */

.text-list {
    max-width: 790px;
}

.text-list li {
    line-height: 40px;
    border-bottom: #dcdfe6 dashed 1px;
    margin-top: 10px;
}

.text-list li:last-child {
    border: none;
}

.text-list .el-link {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.text-list p {
    font-size: 14px;
    color: #9f9f9f;
}

.text-list p i {
    margin-right: 5px;
}

@media(max-width: 1100px) {
    .text-list li {
        line-height: 30px;
    }
    .text-list .el-link {
        font-size: 16px;
    }
}


/* 轮播图 */

.shuffling-box {
    margin-top: 10px;
}

.swiper-box {
    overflow: hidden;
    position: relative;
}

.swiper-box .swiper-container {
    max-width: 790px;
    height: 450px;
}

.swiper-box img {
    width: 100%;
}

.swiper-box .swiper-button-next,
.swiper-box .swiper-button-prev {
    opacity: 0;
    transition: all .3s ease-in-out;
}

.swiper-box:hover .swiper-button-next,
.swiper-box:hover .swiper-button-prev {
    opacity: 1;
}

@media(max-width: 1100px) {
    .swiper-box .swiper-container {
        height: 200px;
    }
    .swiper-box .swiper-button-next,
    .swiper-box .swiper-button-prev {
        opacity: 1;
    }
}


/* 长图滚动 */

.scroll-box {
    width: 1000px;
    height: 900px;
    margin: auto;
    overflow: scroll;
}

.noLong .scroll-box {
    height: auto;
    overflow: auto;
}


/* .scroll-box .el-link,
.scroll-box img {
    width: 1200px;
} */


/* 标签页 */

.tab-box {
    max-width: 790px;
    font-size: 14px;
    line-height: 2;
}

.tab-box a {
    color: #409eff;
}


/* 专题 */

.project .zt-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project .zt-list li {
    flex: 0 0 49%;
    opacity: .85;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}

.project .zt-list li:hover {
    opacity: 1;
}

.project .zt-list img {
    width: 100%;
    border-radius: 4px;
}


/* 查看更多 */

.more-box .el-button {
    width: 100%;
}


/* 广告穿插 */

.advertising-box {
    margin-top: 20px;
}

.advertising-box img {
    width: 100%;
}

@media(max-width: 1100px) {
    .advertising-box img {
        height: 60px;
    }
}


/* 右侧 */

.right-box {
    width: 260px;
    margin-left: 50px;
}

.right-box .cheked {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.right-box .el-checkbox {
    margin-right: 0px;
}

.right-box .form {
    display: flex;
}

.right-box .form .btn {
    color: dodgerblue;
    border-color: #c6e2ff;
    background-color: #ecf5ff;
    border: 1px solid #dcdfe6;
    cursor: pointer;
    padding: 0 20px;
    transition: all .3s ease;
}

.right-box .form .btn:hover {
    color: #fff;
    background-color: dodgerblue;
    border-color: dodgerblue;
}

.right-box .form input {
    flex: 1;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    outline: none;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

.noRight1 .right-list li:last-child,
.noRight2 .right-list li:last-child,
.noRight2 .right-list li:nth-last-child(2) {
    display: none;
}

.right-list li {
    margin-top: 10px;
}

.right-list img {
    width: 100%;
    border-radius: 4px
}

@media(max-width: 1100px) {
    .right-box {
        width: 90%;
        margin: auto;
    }
    .right-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .noRight1 .right-list li:last-child,
    .noRight2 .right-list li:last-child,
    .noRight2 .right-list li:nth-last-child(2) {
        display: block;
    }
    .right-list li {
        flex: 0 0 49%;
    }
}


/* Footer */

.footer-bg {
    width: 100%;
    background: #222;
    padding: 30px 0 10px 0;
}

.footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
    border-bottom: #313131 solid 1px;
}

.footer-list li:last-child {
    flex: 0 0 100%;
}

.footer-list .el-link {
    position: relative;
    padding: 10px 20px;
}

.footer-list .el-link:hover {
    color: #fff;
}

.footer-list .el-link::after {
    content: '丨';
    color: #666;
    position: absolute;
    right: -6px;
}

.footer-list li:last-child {
    text-align: center;
}

.footer-list li:nth-child(4) .el-link::after,
.footer-list li:last-child .el-link::after {
    content: ''
}

@media(max-width: 1100px) {
    .footer-list .el-link {
        padding: 10px;
    }
}


/* siderbar */


/* icon */

.qrcode {
    position: fixed;
    right: 10px;
    bottom: 185px;
    z-index: 100000;
}

.img_br {
    border-radius: 5px;
    margin: auto;
}

.wx_post,
.xcx_post {
    position: absolute;
    width: 55px;
    background: #ddd;
    height: auto;
    text-align: center;
    border-radius: 5px;
    opacity: 0.8;
    padding: 5px;
    display: dlock;
    z-index: 100000;
}

.wx_post {
    right: 0px;
}

.xcx_post {
    right: 0px;
    bottom: 25px;
}

.ex_img,
.xcx_img {
    position: absolute;
    display: none;
    width: 130px;
    height: 130px;
    z-index: 10000;
    text-align: center;
    border-radius: 5px;
    opacity: 0.8;
    padding: 3px;
    display: dlock;
    border-radius: 5px;
    opacity: 0.8;
    padding: 3px;
    font-size: 11px;
}

.ex_img,
.xcx_ewm {
    right: 60px;
    bottom: -50px;
}

.wx_ewm:hover .ex_img,
.xcx_ewm:hover .xcx_img {
    display: block;
}

.xcx_img {
    right: 60px;
    bottom: 20px;
}