﻿@charset "utf-8";
/*
**功能名称：列表页公共样式，分页栏样式，标题样式
**
*/

.__box {
    width: 100%;
    overflow: hidden;
}

    .__box:before, .__box:after {
        content: "";
        display: table;
        clear: both;
    }

.__Title {
    text-align: center;
    padding: 40px 20px 60px;
}

.__Title_t {
    font-size: 24px;
    color: #333333;
    position: relative;
    display: inline-block;
}

.__Title_e {
    font-size: 14px;
    color: #929292;
    margin-top: 3px;
}

.__Title_t:after {
    content: "";
    width: 100%;
    height: 3px;
    bottom: -40px;
    display: block;
    border-radius: 3px;
    position: absolute;
    background-color: var(--style);
}

/*分页样式*/
.page_div {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 15px;
    font-family: "microsoft yahei";
    color: #666666;
    box-sizing: border-box;
    text-align: center;
}

    .page_div a {
        min-width: 30px;
        height: 30px;
        border: 1px solid #dce0e0;
        text-align: center;
        margin: 0 4px;
        cursor: pointer;
        line-height: 30px;
        color: #666666;
        font-size: 14px;
        display: inline-block;
        border-radius:2px;
    }

#firstPage,
#lastPage {
    width: 50px;
    color: #0073A9;
    border: 1px solid #0073A9;
}

#prePage,
#nextPage {
    width: 70px;
}



.totalPages {
    margin: 0 10px;
}

    .totalPages span,
    .totalSize span {
        color: #0073A9;
        margin: 0 5px;
    }

.page_div a:hover,.page_div .current {
    background-color: #0073A9;
    border-color: #0073A9;
    color: #FFFFFF;
}

.page_div a.stop {
    border-style: dashed;
    cursor: none;
    border-color: #dce0e0 !important;
    background-color: #ffffff !important;
    color: #666666;
    opacity:0.5;
}
/* end */


#main {
    width: 100%;
    /*height: 100%;*/
    /*padding-top: 90px;*/
    /*padding-bottom: 157px;*/
    box-sizing: border-box;
    /* min-height: 1200px; */
}

.main-bg {
    width: 100%;
    position: relative;
}

.main-bg>span {
    width: 100%;
    display: block;
    padding-bottom: 36%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

.main-tip {
    width: 1600px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -800px;
    transform: translateY(-80%);
    padding: 0 90px;
    box-sizing: border-box;
}

.main-tip-img {
    width: 412px;
    height: 184px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-tip-img>p {
    font-size: 30px;
    color: #ffffff;
}

.main-tip-img>p::after {
    content: "";
    display: block;
    width: 62px;
    height: 4px;
    background-color: #ffffff;
    margin-top: 28px;
}

@media screen and (min-width: 1550px) and (max-width: 1600px) {
    body {
        overflow-x: hidden;
    }
}
.main-body {
    width: 100%;
    /*height: 100%;*/
    background-color: #f6f6f6;
    box-sizing: border-box;
    padding-bottom: 62px;
}
.body-nav {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f3f7;
}
.body-nav>a{
    display: block;
    height: 50px;
    padding: 0 54px;
    line-height: 50px;
    color: #121212;
    font-size: 18px;
    background-color: #f0f3f7;
    margin-left: 12px;
    cursor: pointer;
}
.body-nav>a.active{
    background-color: #196eb4;
    color: #ffffff;
}
.body-nav>a:first-child{
    margin-left: 0;
}
.body-card {
    width: 1541px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: -140px;
    /*margin-top: -100px;*/
    padding: 61px 59px;
    box-sizing: border-box;
    position: relative;
}


