/* CSS Document */
body,
div,
p,
a,
table,
textarea,
form,

img,
ul,
li,
h1,
h2,
dl,
dd,
dt,
figure,
em,
i,
u {
    margin: 0;
    padding: 0;
    font-family: 微软雅黑, arial;
    list-style: none;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}

button:focus {
    outline: 0
}




body {
    transition: all 0.2s ease-in-out 0s;
    word-break: break-all;
    margin: 0 auto;
    background: #fff;
}

* {
    margin: 0;
    padding: 0
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
    transition: all 0.2s linear;
}


img {
    border: none;
}

select,
textarea,
button {
    background: #fff;
    font-family: 微软雅黑, arial;
}






.clear {
    margin: 0px;
    padding: 0px;
    clear: both;
    line-height: 0px;
    font-size: 0px;
    height: 1px;
    width: 100%;
}


.clear1 {
    margin: 0px;
    padding: 0px;
    clear: both;
    line-height: 0px;
    clear: both;
    font-size: 0px;
    height: 10px;
}

.input1 {
    width: 100%;
    height: 25px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 复选框和单选框的通用样式 */
.checkbox-container,
.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 20px;
}

/* 隐藏原生的复选框和单选框 */
.checkbox-container input,
.radio-container input {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
    cursor: pointer;
}

/* 自定义复选框样式 */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* 自定义单选框样式 */
.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
}

/* 悬停效果 */
.checkbox-container:hover input~.checkmark,
.radio-container:hover input~.radiomark {
    background-color: #f0f0f0;
}

/* 选中状态 */
.checkbox-container input:checked~.checkmark,
.radio-container input:checked~.radiomark {
    background-color: #000;
    border: 1px solid #000;
}

/* 复选框的勾选标记 */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: inline-block;
    left: 6px;
    top: 0px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 单选框的圆点标记 */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.radiomark:after {
    display: inline-block;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}



/*轮播图*/

.slider {
    width: 100%;
    margin-top: 66px;
    height: 550px;
    overflow: hidden;
}

.slider .w1200 {
    position: absolute;
    top: 0;
    left: 10%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 3;
}

.slider ul li {
    width: 100%;
    height: auto;
    position: relative;
}

.slider ul li:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.slider ul li .slider-txt {
    position: absolute;
    top: 20%;
    left: 100px;
    z-index: 5;
    color: #FFFFFF;
    width: 700px;
}

.banner-title {
    font-size: 62px;
    letter-spacing: 5px;
    padding-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.sub-title {
    font-size: 22px;
    color: #FFFFFF;
    padding-bottom: 70px;
}

.slider .arrow {
    position: absolute;
    width: 1500px;
    height: 58px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.slider .swiper-button-next {
    background-image: url(../images/arrow-right.png);
    width: 30px;
    height: 58px;
    background-size: 30px 58px;
    right: -30px;
}

.slider .swiper-button-prev {
    background-image: url(../images/arrow-left.png);
    width: 30px;
    height: 58px;
    background-size: 30px 58px;
    left: -30px;
}

@media (max-width: 768px) {
    .slider {
        display: none;
    }
}

.banner-pc {
    width: 100%;
    position: relative;
}

.time {
    position: absolute;
    bottom: 5%;
    right: 2%;
    color: #000;
    text-align: center;
    line-height: 100%;
    font-size: 16px;
    text-align: left;
    z-index: 999999;
}

.time p {
    font-size: 16px;
    line-height: 50px;
}

.czbtn {
    line-height: 25px;
    background: #000;
    color: #fff;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    padding: 0 3px;
    font-size: 16px;
    float: right;
    margin-top: 10px;
}

.czbtn:hover {
    background: #333;
    color: #fff;
}

.banner-mb {
    width: 100%;
    display: none;
    position: relative;
}
.time1 {display: none;}

@media (max-width: 768px) {
    .banner-pc {
        display: none;
    }

    .banner-mb {
        display: block;
        position: relative;
    }

    .time1 {
display: block;
        color: #000;
        text-align: center;
        line-height: 100%;
        font-size: 16px;
        text-align: center;
        z-index: 999999;
    }

    .time1 p {
        font-size: 16px;
        line-height: 50px;
    }

    .czbtn1 {
        line-height: 25px;
        background: #000;
        color: #fff;
        width: 80px;
        text-align: center;
        border-radius: 5px;
        padding: 0 3px;
        font-size: 16px;
        padding: 0 10px;
        margin-top: 10px;
    }

}

.img-text {
    width: 1200px;
    margin: 0 auto;
}

.img-text img {
    width: 100%
}

.left-img {
    width: 45%;
    float: left;
}

.right-text {
    width: 53%;
    float: right;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}

@media (max-width: 768px) {
    .img-text {
        width: 90%;
        margin: 0 auto;
        padding-top: 20px;
    }

    .left-img {
        width: 100%;
    }

    .right-text {
        width: 100%;

        font-size: 16px;
        line-height: 30px;
        color: #333;
    }
}

.mainbox {
    background: #fff;
    width: 100%;
    min-height: 800px;
    margin-top: 100px;
}

@media (max-width: 768px) {
    .mainbox {
        background: #fff;
        width: 100%;
        min-height: 600px;
        margin-top: 0px;
    }
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.title1 {
    font-size: 36px;
    font-weight: bold;
}

.sub-title1 {
    line-height: 25px;
    color: #333;
    padding-top: 10px;
}

.title2 {
    padding-top: 20px;
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

/*特色服务*/
.services {
    width: 1200px;
    margin: 0 auto;
    margin-top: 0px;
}

.services ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.services ul li {
    margin-top: 30px;
    width: 28%;
    height: 300px;
    background: #FFFFFF;
    border-radius: 15px;
    text-align: center;
    padding: 2%;
    box-shadow: 0px 0px 5px rgba(200, 200, 200, .3);
    transition: all .3s;
}

.services ul li:hover {
    transition: all .3s;
    transform: translateY(-10px);
}

.services ul li img {
    display: inline-block;
    width: 100%;
}

.services ul li p.title {
    font-size: 20px;
    color: #555;
    padding: 20px 0 10px 0;
    font-weight: bold;
}

.services ul li p.desc {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    text-align: left;
}

@media (max-width: 768px) {
    .w1200 {
        width: 95%;
        margin: 0 auto;
    }

    .services {
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
    }

    .services ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }

    .services ul li {
        margin-top: 20px;
        width: 100%;
        height: 265px;
        background: #FFFFFF;
        border-radius: 15px;
        text-align: center;
        padding: 20px 20px;
        box-shadow: 0px 0px 5px rgba(200, 200, 200, .3);
        transition: all .3s;
    }

    .services ul li:hover {
        transition: all .3s;
        transform: translateY(-10px);
    }

    .services ul li img {
        display: inline-block;

    }

    .services ul li p.title {
        font-size: 20px;
        color: #333;
        padding: 20px 0 10px 0;
        font-weight: bold;
    }

    .services ul li p.desc {
        font-size: 15px;
        color: #666;
        line-height: 30px;
    }
}

.zllist {
    padding-top: 20px;
}

.zllist li a {
    font-size: 16px;
    line-height: 35px;
    text-decoration: underline;
}


/*资讯列表*/
.newslist {
    width: 1200px;
    margin: 0 auto;
    margin-top: 0;
    min-height: 800px;
}

.newslist ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.newslist a {
    display: inline-block;
    width: 100%;
}

.newslist ul li {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    border-radius: 15px;
    text-align: left;
    padding: 30px 50px;
    box-shadow: 0px 0px 5px rgba(200, 200, 200, .3);
    transition: all .3s;
}

.newslist ul li:hover {
    transition: all .3s;
    transform: translateY(-10px);
}

.newslist ul li img {
    display: inline-block;
    height: 100px;
    border-radius: 5px;
}

.newslist .newstitle {
    font-size: 20px;
    color: #555;
    padding: 0px 0 10px 0;
    font-weight: bold;
}

.newslist .newsdesc {
    font-size: 15px;
    color: #888;
    line-height: 25px;
    width: 1000px;
}

.newslist .go .iconfont {
    position: absolute;
    right: 65px;
    top: 55px;
    font-size: 50px;
    color: #FFF;
    transition: all .3s;
}

.newslist ul li:hover .go .iconfont {
    transition: all .3s;
    transform: translateX(20px);
    font-size: 50px;
    color: #00A0E9;
}

.newsimg {
    float: left;
    width: 120px;
}

@media (max-width: 768px) {
    .newslist {
        width: 95%;
        margin: 0 auto;
        margin-top: 5px;
        min-height: 500px;
    }

    .newslist ul {
        width: 100%;
        margin: 0 auto;
    }

    .newslist a {
        display: inline-block;
        width: 100%;
    }

    .newslist ul li {
        margin-top: 10px;
        width: 96%;
        height: 70px;
        border-radius: 5px;
        background: #FFFFFF;
        text-align: left;
        padding: 2%;
        box-shadow: 0px 0px 0px rgba(200, 200, 200, .3);
        transition: all .3s;
    }

    .newslist ul li:hover {
        transition: all .3s;
        transform: translateY(-5px);
    }

    .newslist ul li img {
        display: inline-block;
        height: 70px;
        border-radius: 5px;
    }

    .newslist .newstitle {
        font-size: 16px;
        color: #333;
        padding: 0;
        font-weight: bold;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .newslist .newsdesc {
        font-size: 12px;
        color: #888;
        line-height: 20px;
        width: 73%;
        height: 40px;
        overflow: hidden;
    }

    .newslist .go .iconfont {
        position: absolute;
        right: 20px;
        top: 38px;
        font-size: 20px;
        color: #00A0E9;
        transition: all .3s;
        display: none;
    }

    .newslist ul li:hover .go .iconfont {
        transition: all .3s;
        transform: translateX(5px);
        font-size: 20px;
        color: #00A0E9;
    }

    .newsimg {
        float: left;
        width: 80px;
        height: 80px;
        overflow: hidden;
    }
}



.topview {
    position: fixed;
    top: 0;
    height: 65px;
    border-bottom: 1px #ddd solid;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    z-index: 9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100px;
    float: left;
    padding-top: 15px;
    padding-left: 10px;
}

.logo img {
    height: 40px;
}

@media (max-width: 768px) {
    .topview {
        position: static;
        height: 50px;
        border-bottom: 1px #ddd solid;
        background-color: rgba(0, 0, 0, 0.97);
        width: 100%;
        z-index: 9;
    }

    .logo {
        float: left;
        padding-top: 5px;
        margin-left: 5%
    }

    .logo img {
        height: 35px;
    }
}

.nav {
    float: left
}

.nav li {
    float: left;
    line-height: 65px;
}

.nav li a {
    color: #666;
    display: block;
    padding: 0 42px;
    font-size: 16px;
    text-decoration: none;
    line-height: 65px;
}

.nav li a:hover {
    color: #000;
    text-decoration: none;
    transition: all 0.2s linear;
}

.topright {
    float: right;
    margin-right: 5%;
    text-align: right;
    line-height: 65px;
    color: #333;
    font-size: 16px;
}

.tel {
    display: none;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .topright {
        display: none;
    }

    .tel {
        display: block;
        float: right;
        margin-right: 5%;
        text-align: right;
        line-height: 50px;
    }

    .tel a {
        color: #00A0E9;
        font-size: 16px;
    }
}


.title {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 32px;
    padding-top: 30px;
    margin-bottom: 30px;
}

.title span {
    padding-left: 10px;
    font-size: 24px;
    color: #888;
}

.desc {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .title {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        font-size: 28px;
        padding-top: 30px;
        font-weight: bold;
    }

    .desc {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        font-size: 16px;
        line-height: 30px;
        color: #666;
        padding-top: 20px;
    }
}

.btnview {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
}

.btn {
    position: relative;
    width: 200px;
    line-height: 45px;
    border-radius: 5px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: background 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.btn {
    position: relative;
    width: 200px;
    line-height: 45px;
    border-radius: 5px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.btn::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    color: #fff;
    font-size: 22px;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(4px);
}

.btn:hover::after {
    content: '>';
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.footview {
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    text-align: center;
}

.footview p {
    font-size: 12px;
    line-height: 23px;

}

.footview a {
    color: #888;
    font-size: 12px;
}

.footview a:hover {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s linear;
}

@media (max-width: 768px) {
    .footview {
        width: 90%;
        margin: 0 auto;
        margin-top: 0px;
        position: relative;

    }

    .footview p {
        font-size: 12px;
        line-height: 23px;

    }

    .footview a {
        color: #888;
        font-size: 12px;
    }

    .footview a:hover {
        color: #00a0e9;
        font-size: 12px;
        text-decoration: none;
        transition: all 0.2s linear;
    }
}

.wx {
    display: none;
}

@media (max-width: 768px) {
    .wx {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        color: #00A0E9;
        display: block
    }

    .wx img {
        width: 30%;
    }

    .btnview {
        display: none;
    }
}

.mainview {
    width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

.leftbox {
    width: 25%;
    float: left;
    background: #f5f5f5;
    border-radius: 5px;
    min-height: 600px;
}

.leftbox_main {
    width: 90%;
    margin: 0 auto;
}

.leftbox_main h1 {
    font-size: 28px;
    font-weight: bold;
    padding-top: 30px;
    color: #333;
}

.leftbox_main .time {
    font-size: 14px;
    color: #666;
    line-height: 40px;
    height: 60px;
    border-bottom: 1px #eee solid;
    width: 100%;
}

.leftbox_main .nr {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
}

.leftbox_main .nr p {
    padding-top: 20px;
    font-size: 16px;
    line-height: 30px;
}

.leftbox_main .nr p a {
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    color: #00A0E9;
}

.leftbox_main .nr p img {
    max-width: 100%
}

.rightbox {
    width: 74%;
    float: right;
    background: #fff;
}

.rightbox_main {
    width: 95%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mainview {
        width: 100%;
        margin: 0 auto;
    }

    .leftbox {
        width: 100%;
        float: left;
        background: #fff;
    }

    .rightbox {
        display: none;
    }
}

.dhtitle {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    border-bottom: 1px #eee solid;
    width: 100%;
}

.rbox_1_2 {
    padding: 20px 0;
}

.rbox_1_2 li {
    width: 100%;
    height: 50px;
    overflow: hidden;
    clear: both;
    border-bottom: 1px #ddd solid;
    text-align: center;
}

.rbox_1_2 a {
    line-height: 45px;
    font-size: 16px;
}

.managedh {
    background: #000;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
}

.rbox_1_2 a:hover {
    line-height: 45px;
    font-size: 16px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
    text-decoration: none;
}

.top1 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: #f4f4f4;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    color: #333;
    line-height: 20px;
}

.top3 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: #00A0E9;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    line-height: 20px;
}

.banner {
    width: 100%;
    height: 250px;
    margin-top: 65px;
    animation: colorbg 20s;
    -moz-animation: colorbg 20s;
    /* Firefox */
    -webkit-animation: colorbg 20s;
    /* Safari 和 Chrome */
    -o-animation: zong 2s;
    animation-iteration-count: infinite;
}

.bannertitle {
    text-align: center;
    padding-top: 60px;
    font-size: 30px;
    color: #fff;
    width: 1200px;
    margin: 0 auto;
}

.banner .sub {
    text-align: center;
    padding-top: 20px;
    font-size: 16px;
    color: #fff;
    width: 800px;
    margin: 0 auto;
    line-height: 30px;
}

@keyframes colorbg {
    0% {
        background: #00a0e9 url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }

    30% {
        background: #885bfe url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }

    60% {
        background: #333 url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }

    100% {
        background: #00a0e9 url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }
}

@media (max-width: 768px) {
    .banner {
        display: none
    }
}


.side {
    position: fixed;
    width: 78px;
    right: 0;
    top: 50%;
    margin-top: -100px;
    z-index: 100;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-bottom: 0
}

.side ul li {
    width: 78px;
    height: 78px;
    float: left;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    transition: all .3s;
    cursor: pointer
}

.side ul li:hover {
    background: #00a0e9;
    color: #fff
}

.side ul li:hover a {
    color: #fff
}

.side ul li i {
    height: 25px;
    margin-bottom: 1px;
    display: block;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 25px;
    margin-top: 14px;
    transition: all .3s
}

.side ul li i.bgs1 {
    background-image: url(../images/right_pic5.png)
}

.side ul li i.bgs2 {
    background-image: url(../images/right_pic7.png)
}

.side ul li i.bgs3 {
    background-image: url(../images/right_pic2.png)
}

.side ul li i.bgs4 {
    background-image: url(../images/right_pic1.png)
}

.side ul li i.bgs5 {
    background-image: url(../images/right_pic3.png)
}

.side ul li i.bgs6 {
    background-image: url(../images/right_pic6_on.png)
}

.side ul li:hover i.bgs1 {
    background-image: url(../images/right_pic5_on.png)
}

.side ul li:hover i.bgs2 {
    background-image: url(../images/right_pic7_on.png)
}

.side ul li:hover i.bgs3 {
    background-image: url(../images/right_pic2_on.png)
}

.side ul li:hover i.bgs4 {
    background-image: url(../images/right_pic1_on.png)
}

.side ul li:hover i.bgs5 {
    background-image: url(../images/right_pic3_on.png)
}

.side ul li .sidebox {
    position: absolute;
    width: 78px;
    height: 78px;
    top: 0;
    right: 0;
    transition: all .3s;
    overflow: hidden
}

.side ul li.sidetop {
    background: #00a0e9;
    color: #fff
}

.side ul li.sidetop:hover {
    opacity: .8;
    filter: Alpha(opacity=80)
}

.side ul li.sideewm .ewBox.son {
    width: 238px;
    display: none;
    color: #363636;
    text-align: center;
    padding-top: 235px;
    position: absolute;
    left: -240px;
    top: -79px;
    background-image: url(../images/wx.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #e0e0e0;
    background-size: 90%;
    background-color: #fff
}

.side ul li.sideetel .telBox.son {
    width: 240px;
    height: 237px;
    display: none;
    color: #fff;
    text-align: left;
    position: absolute;
    left: -240px;
    top: 0;
    background: #00a0e9
}

.side ul li.sideetel .telBox dd {
    display: block;
    height: 118.5px;
    overflow: hidden;
    padding-left: 82px;
    line-height: 24px;
    font-size: 18px
}

.side ul li.sideetel .telBox dd span {
    display: block;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
    margin-top: 32px;
    font-size: 18px
}

.side ul li.sideetel .telBox dd.bgs1 {
    background: url(../images/right_pic8.png) 28px center no-repeat;
    background-color: #00a0e9
}

.side ul li.sideetel .telBox dd.bgs2 {
    background: url(../images/right_pic9.png) 28px center no-repeat
}

.side ul li.qqonline .qqBox.son {
    width: 240px;
    height: 78px;
    display: none;
    color: #fff;
    text-align: left;
    position: absolute;
    left: -240px;
    top: 0px;
    background: #00a0e9
}

.side ul li.qqonline .qqBox dd {
    display: block;
    height: 78px;
    overflow: hidden;
    padding-left: 15px;
    line-height: 24px;
    font-size: 18px
}

.side ul li.qqonline .qqBox dd a {
    float: left;
    margin-left: 20px;
    height: 78px;
    line-height: 78px;
}

.side ul li:hover .son {
    display: block !important;
    animation: fadein 1s
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media (max-width: 768px) {
    .side {
        display: none
    }
}

/* 倒计时 */

.countdown-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 18px 32px;
    min-width: 400px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.countdown-item:hover {
    box-shadow: 0 4px 24px rgba(55, 196, 193, 0.18);
}

.countdown-label {
    font-size: 16px;
    color: #37c4c1;
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-weight: bold;
}

.countdown-time {
    font-size: 26px;
    color: #222;
    letter-spacing: 2px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .countdown-group {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .countdown-item {
        min-width: 0;
        width: 90%;
        padding: 14px 0;
    }

    .countdown-time {
        font-size: 20px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
}

/*此处有改动*/
.modal {
    margin-left: 50%;
    margin-top: 25%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    max-width: 50vw;
    padding: 32px 28px 24px 28px;
}

.modal-content h2 {
    text-align: center;
    color: #000;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: bold;
}

.modal-content input {
    width: 100%;
    margin-bottom: 16px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.modal-content button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 0;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.modal-content button:hover {
    background: #333;
}

.modal-switch1 {
    text-align: left;
    font-size: 14px;
    color: #888;
    float: left;
}

.modal-switch {
    float: right;
    text-align: right;
    font-size: 14px;
    color: #888;
}

.modal-switch a {
    color: #000;
    text-decoration: underline;
    margin-left: 4px;
    cursor: pointer;
}

@media (max-width: 500px) {
    .modal {
        min-width: 0;
        padding: 18px 6vw 12px 6vw;
    }
}


/* 新闻资讯样式 */

.news-list-container {
    padding: 40px 0;
}

.section-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.news-list {
    width: 100%;
}

.news-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news-item {
    width: 48%;
    display: flex;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.4;
    font-weight: bold;
}

.news-meta {
    margin-bottom: 10px;
}

.news-date {
    color: #999;
    font-size: 14px;
}

.news-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    padding: 8px 20px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100px;
    text-align: center;
}

.read-more:hover {
    background: #333;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .news-row {
        flex-direction: column;
    }

    .news-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .news-image {
        width: 120px;
        height: 120px;
    }
}


.news-detail {
    padding-top: 50px;
    padding-bottom: 50px;
}

.news-detail h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.nr-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.nr-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.nr-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.nr-content img {
    max-width: 100%;
    height: auto;
}

.info-detail {
    padding-top: 0px;
    padding-bottom: 50px;
}


/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.page-numbers {
    display: flex;
    margin: 0 15px;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-num:hover,
.page-num.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.page-btn {/* CSS Document */
body,
div,
p,
a,
table,
textarea,
form,

img,
ul,
li,
h1,
h2,
dl,
dd,
dt,
figure,
em,
i,
u {
    margin: 0;
    padding: 0;
    font-family: 微软雅黑, arial;
    list-style: none;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}

button:focus {
    outline: 0
}




body {
    transition: all 0.2s ease-in-out 0s;
    word-break: break-all;
    margin: 0 auto;
    background: #fff;
}

* {
    margin: 0;
    padding: 0
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
    transition: all 0.2s linear;
}


img {
    border: none;
}

select,
textarea,
button {
    background: #fff;
    font-family: 微软雅黑, arial;
}






.clear {
    margin: 0px;
    padding: 0px;
    clear: both;
    line-height: 0px;
    font-size: 0px;
    height: 1px;
    width: 100%;
}


.clear1 {
    margin: 0px;
    padding: 0px;
    clear: both;
    line-height: 0px;
    clear: both;
    font-size: 0px;
    height: 10px;
}

.input1 {
    width: 100%;
    height: 25px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 复选框和单选框的通用样式 */
.checkbox-container,
.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 20px;
}

/* 隐藏原生的复选框和单选框 */
.checkbox-container input,
.radio-container input {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
    cursor: pointer;
}

/* 自定义复选框样式 */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* 自定义单选框样式 */
.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
}

/* 悬停效果 */
.checkbox-container:hover input~.checkmark,
.radio-container:hover input~.radiomark {
    background-color: #f0f0f0;
}

/* 选中状态 */
.checkbox-container input:checked~.checkmark,
.radio-container input:checked~.radiomark {
    background-color: #000;
    border: 1px solid #000;
}

/* 复选框的勾选标记 */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: inline-block;
    left: 6px;
    top: 0px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 单选框的圆点标记 */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.radiomark:after {
    display: inline-block;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}



/*轮播图*/

.slider {
    width: 100%;
    margin-top: 66px;
    height: 550px;
    overflow: hidden;
}

.slider .w1200 {
    position: absolute;
    top: 0;
    left: 10%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 3;
}

.slider ul li {
    width: 100%;
    height: auto;
    position: relative;
}

.slider ul li:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.slider ul li .slider-txt {
    position: absolute;
    top: 20%;
    left: 100px;
    z-index: 5;
    color: #FFFFFF;
    width: 700px;
}

.banner-title {
    font-size: 62px;
    letter-spacing: 5px;
    padding-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.sub-title {
    font-size: 22px;
    color: #FFFFFF;
    padding-bottom: 70px;
}

.slider .arrow {
    position: absolute;
    width: 1500px;
    height: 58px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.slider .swiper-button-next {
    background-image: url(../images/arrow-right.png);
    width: 30px;
    height: 58px;
    background-size: 30px 58px;
    right: -30px;
}

.slider .swiper-button-prev {
    background-image: url(../images/arrow-left.png);
    width: 30px;
    height: 58px;
    background-size: 30px 58px;
    left: -30px;
}

@media (max-width: 768px) {
    .slider {
        display: none;
    }
}

.banner-pc {
    width: 100%;
    position: relative;
}

.time {
    position: absolute;
    bottom: 5%;
    right: 2%;
    color: #000;
    text-align: center;
    line-height: 100%;
    font-size: 16px;
    text-align: left;
    z-index: 999999;
}

.time p {
    font-size: 16px;
    line-height: 50px;
}

.czbtn {
    line-height: 25px;
    background: #000;
    color: #fff;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    padding: 0 3px;
    font-size: 16px;
    float: right;
    margin-top: 10px;
}

.czbtn:hover {
    background: #333;
    color: #fff;
}

.banner-mb {
    width: 100%;
    display: none;
    position: relative;
}

.time1 {
    display: none;
}

@media (max-width: 768px) {
    .banner-pc {
        display: none;
    }

    .banner-mb {
        display: block;
        position: relative;
    }

    .time1 {
        display: block;
        color: #000;
        text-align: center;
        line-height: 100%;
        font-size: 16px;
        text-align: center;
        z-index: 999999;
    }

    .time1 p {
        font-size: 16px;
        line-height: 50px;
    }

    .czbtn1 {
        line-height: 25px;
        background: #000;
        color: #fff;
        width: 80px;
        text-align: center;
        border-radius: 5px;
        padding: 0 3px;
        font-size: 16px;
        padding: 0 10px;
        margin-top: 10px;
    }

}

.img-text {
    width: 1200px;
    margin: 0 auto;
}

.img-text img {
    width: 100%
}

.left-img {
    width: 45%;
    float: left;
}

.right-text {
    width: 53%;
    float: right;
    font-size: 16px;
    line-height: 30px;
    color: #333;
}

@media (max-width: 768px) {
    .img-text {
        width: 90%;
        margin: 0 auto;
        padding-top: 20px;
    }

    .left-img {
        width: 100%;
    }

    .right-text {
        width: 100%;

        font-size: 16px;
        line-height: 30px;
        color: #333;
    }
}

.mainbox {
    background: #fff;
    width: 100%;
    min-height: 800px;
    margin-top: 100px;
}

@media (max-width: 768px) {
    .mainbox {
        background: #fff;
        width: 100%;
        min-height: 600px;
        margin-top: 0px;
    }
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.title1 {
    font-size: 36px;
    font-weight: bold;
}

.sub-title1 {
    line-height: 25px;
    color: #333;
    padding-top: 10px;
}

.title2 {
    padding-top: 20px;
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

/*特色服务*/
.services {
    width: 1200px;
    margin: 0 auto;
    margin-top: 0px;
}

.services ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.services ul li {
    margin-top: 30px;
    width: 28%;
    height: 300px;
    background: #FFFFFF;
    border-radius: 15px;
    text-align: center;
    padding: 2%;
    box-shadow: 0px 0px 5px rgba(200, 200, 200, .3);
    transition: all .3s;
}

.services ul li:hover {
    transition: all .3s;
    transform: translateY(-10px);
}

.services ul li img {
    display: inline-block;
    width: 100%;
}

.services ul li p.title {
    font-size: 20px;
    color: #555;
    padding: 20px 0 10px 0;
    font-weight: bold;
}

.services ul li p.desc {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    text-align: left;
}

@media (max-width: 768px) {
    .w1200 {
        width: 95%;
        margin: 0 auto;
    }

    .services {
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
    }

    .services ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }

    .services ul li {
        margin-top: 20px;
        width: 100%;
        height: 265px;
        background: #FFFFFF;
        border-radius: 15px;
        text-align: center;
        padding: 20px 20px;
        box-shadow: 0px 0px 5px rgba(200, 200, 200, .3);
        transition: all .3s;
    }

    .services ul li:hover {
        transition: all .3s;
        transform: translateY(-10px);
    }

    .services ul li img {
        display: inline-block;

    }

    .services ul li p.title {
        font-size: 20px;
        color: #333;
        padding: 20px 0 10px 0;
        font-weight: bold;
    }

    .services ul li p.desc {
        font-size: 15px;
        color: #666;
        line-height: 30px;
    }
}

.zllist {
    padding-top: 20px;
}

.zllist li a {
    font-size: 16px;
    line-height: 35px;
    text-decoration: underline;
}


/*资讯列表*/
.newslist {
    width: 1200px;
    margin: 0 auto;
    margin-top: 0;
    min-height: 800px;
}

.newslist ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.newslist a {
    display: inline-block;
    width: 100%;
}

.newslist ul li {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    border-radius: 15px;
    text-align: left;
    padding: 30px 50px;
    box-shadow: 0px 0px 5px rgba(200, 200, 200, .3);
    transition: all .3s;
}

.newslist ul li:hover {
    transition: all .3s;
    transform: translateY(-10px);
}

.newslist ul li img {
    display: inline-block;
    height: 100px;
    border-radius: 5px;
}

.newslist .newstitle {
    font-size: 20px;
    color: #555;
    padding: 0px 0 10px 0;
    font-weight: bold;
}

.newslist .newsdesc {
    font-size: 15px;
    color: #888;
    line-height: 25px;
    width: 1000px;
}

.newslist .go .iconfont {
    position: absolute;
    right: 65px;
    top: 55px;
    font-size: 50px;
    color: #FFF;
    transition: all .3s;
}

.newslist ul li:hover .go .iconfont {
    transition: all .3s;
    transform: translateX(20px);
    font-size: 50px;
    color: #00A0E9;
}

.newsimg {
    float: left;
    width: 120px;
}

@media (max-width: 768px) {
    .newslist {
        width: 95%;
        margin: 0 auto;
        margin-top: 5px;
        min-height: 500px;
    }

    .newslist ul {
        width: 100%;
        margin: 0 auto;
    }

    .newslist a {
        display: inline-block;
        width: 100%;
    }

    .newslist ul li {
        margin-top: 10px;
        width: 96%;
        height: 70px;
        border-radius: 5px;
        background: #FFFFFF;
        text-align: left;
        padding: 2%;
        box-shadow: 0px 0px 0px rgba(200, 200, 200, .3);
        transition: all .3s;
    }

    .newslist ul li:hover {
        transition: all .3s;
        transform: translateY(-5px);
    }

    .newslist ul li img {
        display: inline-block;
        height: 70px;
        border-radius: 5px;
    }

    .newslist .newstitle {
        font-size: 16px;
        color: #333;
        padding: 0;
        font-weight: bold;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .newslist .newsdesc {
        font-size: 12px;
        color: #888;
        line-height: 20px;
        width: 73%;
        height: 40px;
        overflow: hidden;
    }

    .newslist .go .iconfont {
        position: absolute;
        right: 20px;
        top: 38px;
        font-size: 20px;
        color: #00A0E9;
        transition: all .3s;
        display: none;
    }

    .newslist ul li:hover .go .iconfont {
        transition: all .3s;
        transform: translateX(5px);
        font-size: 20px;
        color: #00A0E9;
    }

    .newsimg {
        float: left;
        width: 80px;
        height: 80px;
        overflow: hidden;
    }
}



.topview {
    position: fixed;
    top: 0;
    height: 65px;
    border-bottom: 1px #ddd solid;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    z-index: 9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100px;
    float: left;
    padding-top: 15px;
    padding-left: 10px;
}

.logo img {
    height: 40px;
}

@media (max-width: 768px) {
    .topview {
        position: static;
        height: 50px;
        border-bottom: 1px #ddd solid;
        background-color: rgba(0, 0, 0, 0.97);
        width: 100%;
        z-index: 9;
    }

    .logo {
        float: left;
        padding-top: 5px;
        margin-left: 5%
    }

    .logo img {
        height: 35px;
    }
}

.nav {
    float: left
}

.nav li {
    float: left;
    line-height: 65px;
}

.nav li a {
    color: #666;
    display: block;
    padding: 0 42px;
    font-size: 16px;
    text-decoration: none;
    line-height: 65px;
}

.nav li a:hover {
    color: #000;
    text-decoration: none;
    transition: all 0.2s linear;
}

.topright {
    float: right;
    margin-right: 5%;
    text-align: right;
    line-height: 65px;
    color: #333;
    font-size: 16px;
}

.tel {
    display: none;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .topright {
        display: none;
    }

    .tel {
        display: block;
        float: right;
        margin-right: 5%;
        text-align: right;
        line-height: 50px;
    }

    .tel a {
        color: #00A0E9;
        font-size: 16px;
    }
}


.title {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 32px;
    padding-top: 30px;
    margin-bottom: 30px;
}

.title span {
    padding-left: 10px;
    font-size: 24px;
    color: #888;
}

.desc {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .title {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        font-size: 28px;
        padding-top: 30px;
        font-weight: bold;
    }

    .desc {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        font-size: 16px;
        line-height: 30px;
        color: #666;
        padding-top: 20px;
    }
}

.btnview {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
}

.btn {
    position: relative;
    width: 200px;
    line-height: 45px;
    border-radius: 5px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: background 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.btn {
    position: relative;
    width: 200px;
    line-height: 45px;
    border-radius: 5px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.btn::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    color: #fff;
    font-size: 22px;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(4px);
}

.btn:hover::after {
    content: '>';
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.footview {
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    text-align: center;
}

.footview p {
    font-size: 12px;
    line-height: 23px;

}

.footview a {
    color: #888;
    font-size: 12px;
}

.footview a:hover {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s linear;
}

@media (max-width: 768px) {
    .footview {
        width: 90%;
        margin: 0 auto;
        margin-top: 0px;
        position: relative;

    }

    .footview p {
        font-size: 12px;
        line-height: 23px;

    }

    .footview a {
        color: #888;
        font-size: 12px;
    }

    .footview a:hover {
        color: #00a0e9;
        font-size: 12px;
        text-decoration: none;
        transition: all 0.2s linear;
    }
}

.wx {
    display: none;
}

@media (max-width: 768px) {
    .wx {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        color: #00A0E9;
        display: block
    }

    .wx img {
        width: 30%;
    }

    .btnview {
        display: none;
    }
}

.mainview {
    width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

.leftbox {
    width: 25%;
    float: left;
    background: #f5f5f5;
    border-radius: 5px;
    min-height: 600px;
}

.leftbox_main {
    width: 90%;
    margin: 0 auto;
}

.leftbox_main h1 {
    font-size: 28px;
    font-weight: bold;
    padding-top: 30px;
    color: #333;
}

.leftbox_main .time {
    font-size: 14px;
    color: #666;
    line-height: 40px;
    height: 60px;
    border-bottom: 1px #eee solid;
    width: 100%;
}

.leftbox_main .nr {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
}

.leftbox_main .nr p {
    padding-top: 20px;
    font-size: 16px;
    line-height: 30px;
}

.leftbox_main .nr p a {
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    color: #00A0E9;
}

.leftbox_main .nr p img {
    max-width: 100%
}

.rightbox {
    width: 74%;
    float: right;
    background: #fff;
}

.rightbox_main {
    width: 95%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mainview {
        width: 100%;
        margin: 0 auto;
    }

    .leftbox {
        width: 100%;
        float: left;
        background: #fff;
    }

    .rightbox {
        display: none;
    }
}

.dhtitle {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
    border-bottom: 1px #eee solid;
    width: 100%;
}

.rbox_1_2 {
    padding: 20px 0;
}

.rbox_1_2 li {
    width: 100%;
    height: 50px;
    overflow: hidden;
    clear: both;
    border-bottom: 1px #ddd solid;
    text-align: center;
}

.rbox_1_2 a {
    line-height: 45px;
    font-size: 16px;
}

.managedh {
    background: #000;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
}

.rbox_1_2 a:hover {
    line-height: 45px;
    font-size: 16px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
    text-decoration: none;
}

.top1 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: #f4f4f4;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    color: #333;
    line-height: 20px;
}

.top3 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: #00A0E9;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    line-height: 20px;
}

.banner {
    width: 100%;
    height: 250px;
    margin-top: 65px;
    animation: colorbg 20s;
    -moz-animation: colorbg 20s;
    /* Firefox */
    -webkit-animation: colorbg 20s;
    /* Safari 和 Chrome */
    -o-animation: zong 2s;
    animation-iteration-count: infinite;
}

.bannertitle {
    text-align: center;
    padding-top: 60px;
    font-size: 30px;
    color: #fff;
    width: 1200px;
    margin: 0 auto;
}

.banner .sub {
    text-align: center;
    padding-top: 20px;
    font-size: 16px;
    color: #fff;
    width: 800px;
    margin: 0 auto;
    line-height: 30px;
}

@keyframes colorbg {
    0% {
        background: #00a0e9 url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }

    30% {
        background: #885bfe url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }

    60% {
        background: #333 url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }

    100% {
        background: #00a0e9 url('https://www.nbzlkc.com/images/bannerbg.png') center right no-repeat;
        background-size: 30%;
    }
}

@media (max-width: 768px) {
    .banner {
        display: none
    }
}


.side {
    position: fixed;
    width: 78px;
    right: 0;
    top: 50%;
    margin-top: -100px;
    z-index: 100;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-bottom: 0
}

.side ul li {
    width: 78px;
    height: 78px;
    float: left;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    transition: all .3s;
    cursor: pointer
}

.side ul li:hover {
    background: #00a0e9;
    color: #fff
}

.side ul li:hover a {
    color: #fff
}

.side ul li i {
    height: 25px;
    margin-bottom: 1px;
    display: block;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 25px;
    margin-top: 14px;
    transition: all .3s
}

.side ul li i.bgs1 {
    background-image: url(../images/right_pic5.png)
}

.side ul li i.bgs2 {
    background-image: url(../images/right_pic7.png)
}

.side ul li i.bgs3 {
    background-image: url(../images/right_pic2.png)
}

.side ul li i.bgs4 {
    background-image: url(../images/right_pic1.png)
}

.side ul li i.bgs5 {
    background-image: url(../images/right_pic3.png)
}

.side ul li i.bgs6 {
    background-image: url(../images/right_pic6_on.png)
}

.side ul li:hover i.bgs1 {
    background-image: url(../images/right_pic5_on.png)
}

.side ul li:hover i.bgs2 {
    background-image: url(../images/right_pic7_on.png)
}

.side ul li:hover i.bgs3 {
    background-image: url(../images/right_pic2_on.png)
}

.side ul li:hover i.bgs4 {
    background-image: url(../images/right_pic1_on.png)
}

.side ul li:hover i.bgs5 {
    background-image: url(../images/right_pic3_on.png)
}

.side ul li .sidebox {
    position: absolute;
    width: 78px;
    height: 78px;
    top: 0;
    right: 0;
    transition: all .3s;
    overflow: hidden
}

.side ul li.sidetop {
    background: #00a0e9;
    color: #fff
}

.side ul li.sidetop:hover {
    opacity: .8;
    filter: Alpha(opacity=80)
}

.side ul li.sideewm .ewBox.son {
    width: 238px;
    display: none;
    color: #363636;
    text-align: center;
    padding-top: 235px;
    position: absolute;
    left: -240px;
    top: -79px;
    background-image: url(../images/wx.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #e0e0e0;
    background-size: 90%;
    background-color: #fff
}

.side ul li.sideetel .telBox.son {
    width: 240px;
    height: 237px;
    display: none;
    color: #fff;
    text-align: left;
    position: absolute;
    left: -240px;
    top: 0;
    background: #00a0e9
}

.side ul li.sideetel .telBox dd {
    display: block;
    height: 118.5px;
    overflow: hidden;
    padding-left: 82px;
    line-height: 24px;
    font-size: 18px
}

.side ul li.sideetel .telBox dd span {
    display: block;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
    margin-top: 32px;
    font-size: 18px
}

.side ul li.sideetel .telBox dd.bgs1 {
    background: url(../images/right_pic8.png) 28px center no-repeat;
    background-color: #00a0e9
}

.side ul li.sideetel .telBox dd.bgs2 {
    background: url(../images/right_pic9.png) 28px center no-repeat
}

.side ul li.qqonline .qqBox.son {
    width: 240px;
    height: 78px;
    display: none;
    color: #fff;
    text-align: left;
    position: absolute;
    left: -240px;
    top: 0px;
    background: #00a0e9
}

.side ul li.qqonline .qqBox dd {
    display: block;
    height: 78px;
    overflow: hidden;
    padding-left: 15px;
    line-height: 24px;
    font-size: 18px
}

.side ul li.qqonline .qqBox dd a {
    float: left;
    margin-left: 20px;
    height: 78px;
    line-height: 78px;
}

.side ul li:hover .son {
    display: block !important;
    animation: fadein 1s
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media (max-width: 768px) {
    .side {
        display: none
    }
}

/* 倒计时 */

.countdown-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 18px 32px;
    min-width: 400px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.countdown-item:hover {
    box-shadow: 0 4px 24px rgba(55, 196, 193, 0.18);
}

.countdown-label {
    font-size: 16px;
    color: #37c4c1;
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-weight: bold;
}

.countdown-time {
    font-size: 26px;
    color: #222;
    letter-spacing: 2px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .countdown-group {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .countdown-item {
        min-width: 0;
        width: 90%;
        padding: 14px 0;
    }

    .countdown-time {
        font-size: 20px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
}

/*此处有改动*/
.modal {
    margin-left: 50%;
    margin-top: 25%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    max-width: 50vw;
    padding: 32px 28px 24px 28px;
}

.modal-content h2 {
    text-align: center;
    color: #000;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: bold;
}

.modal-content input {
    width: 100%;
    margin-bottom: 16px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.modal-content button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 0;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.modal-content button:hover {
    background: #333;
}

.modal-switch1 {
    text-align: left;
    font-size: 14px;
    color: #888;
    float: left;
}

.modal-switch {
    float: right;
    text-align: right;
    font-size: 14px;
    color: #888;
}

.modal-switch a {
    color: #000;
    text-decoration: underline;
    margin-left: 4px;
    cursor: pointer;
}

@media (max-width: 500px) {
    .modal {
        min-width: 0;
        padding: 18px 6vw 12px 6vw;
    }
}


/* 新闻资讯样式 */

.news-list-container {
    padding: 40px 0;
}

.section-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.news-list {
    width: 100%;
}

.news-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news-item {
    width: 48%;
    display: flex;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.4;
    font-weight: bold;
}

.news-meta {
    margin-bottom: 10px;
}

.news-date {
    color: #999;
    font-size: 14px;
}

.news-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    padding: 8px 20px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100px;
    text-align: center;
}

.read-more:hover {
    background: #333;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .news-row {
        flex-direction: column;
    }

    .news-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .news-image {
        width: 120px;
        height: 120px;
    }
}


.news-detail {
    padding-top: 50px;
    padding-bottom: 50px;
}

.news-detail h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.nr-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.nr-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.nr-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.nr-content img {
    max-width: 100%;
    height: auto;
}

.info-detail {
    padding-top: 0px;
    padding-bottom: 50px;
}


/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.page-numbers {
    display: flex;
    margin: 0 15px;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-num:hover,
.page-num.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}