.body-padding{
    padding-top: 80px;
}
.nav-fixed{
    position: fixed;top: 0;width: 100%;z-index: 10000;border-bottom: 1px solid #ccc;
}

/*首页样式*/
.header-lb{
    height: auto;
    width: 100%;
}

.publicize{
    height: auto;
    width: 100%;
    background-image: url("../img/header.png");
    background-size: cover;
    padding-bottom: 20px;
    padding-top: 10px;
}
.publicize-text{
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
}
.publicize-video{
    width: 100%;
    height:100%;
}
.publicize-text p{
    line-height: 32px;
    font-size: 20px;
    margin-top: 20px;
    text-align: justify;
}
.list-title{
    border-bottom: 1px solid #574a8f;
}
.list-title-left{
    background-color: #574a8f;
    color: white;
    width: 150px;
    font-size: 24px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top-right-radius: 58px;
}
.list-title a{
    font-size: 18px;
    float: right;
    margin-top: -30px;
}
@media screen and (max-width: 480px) {
    .publicize{
        /*height: 2850px;*/
        background-image: url("");
    }
    .list-title-left{
        font-size: 18px;
    }
    .container{
        padding: 2px;
    }
    .publicize-text{
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .publicize{
        border-top: 1px solid #ccc;
    }
    .list-title a{
        font-size: 14px;
        margin-top: -22px;
    }

}


/**************************************新闻页面*******************************************/
.index-news{
    margin-top: 80px;
}
.index-news-list{
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-flow: wrap;
}
.news-card{
    margin-bottom: 30px;
    width: 260px;
    height: 350px;
    margin-left: 7px;
    margin-right: 7px;
    flex-shrink: 0;
}
.news-card img{
    width: 100%;
    height: 140px;
    background-color: #f9B008;
    transform: scale(1);
    transition: all 0.5s;
}
.news-card img:hover{
    transform: scale(1.1);
}
.news-card .card-text{
    height: 90px;
    line-height: 25px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-align: justify;
}
@media screen and (max-width: 480px) {
    .index-news{
        margin-top: 20px;
        border-top: 1px solid #ccc;
        padding-top: 20px;
    }
    .index-news-list{
        margin-top: 5px;
    }
    .news-card{
        width: 170px;
        height: auto;
        margin-left: 1px;
        margin-right: 1px;
        box-shadow: 1px 1px 2px #6b6b6b;
    }
    .card-body{
        padding: 5px;
    }
    .card-title{
        height: 24px;
        font-size: 14px;
    }
    .news-card .card-text{
        font-size: 14px;
        height: 75px;
        -webkit-line-clamp: 3;
        margin: 2px 0px;
    }
    .news-card img{
        width: 100%;
        height: 90px;
    }

}




/**********************************校园风光*************************/
:root {
    --li-count: 1px; /* 默认li数量 */
}
.campus {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 30px;
    background-image: linear-gradient(to right, #ffffff,#f1f2e5,#ffffff);
}

.gallery-container {
    margin-top: 10px;
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.gallery ul {
    width: 100%;
    height: 350px;
    padding: 0;
    margin: 0;
    list-style: none;
    animation: galleryScroll 80s linear infinite;
}

.gallery li {
    float: left;
    width: 390px;
    margin-right: 25px;
}


.gallery li img {
    width: 100%;
    height: 300px;
    cursor: pointer;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery li:hover img {
    transform: scale(1.1);
}

.gallery li:hover .caption {
    opacity: 1;
}

.gallery li div{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background-color: white;
    padding-top: 20px;
    height: 50px;
}

.scroll-btns {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.scroll-btns button {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: none;
    cursor: pointer;
}

.scroll-btns button:hover {
    background-color: #f1f1f1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: 5% auto;
    width: 1200px;
    height: 850px;
    background-color: #fff;
    padding: 20px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.modal img {
    width: 1100px;
    height: 750px;
    /*object-fit: contain;*/
    margin-top: 20px;
    /*margin-bottom: 20px;*/
}

.modal-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-navigation button {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-390px * var(--li-count)));
    }
}




/**********************************师资力量**************************************/
.teacher{
    height: 100%;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    background-image: linear-gradient(to right, #f2ffe5,#ffffff,#ffffff,#f2ffe5);
}
.teacher-box{
    margin:20px 0 0 0;text-align: center;
}
.teacher-card{
    height: auto;
    width: auto;
    border: 0;
}
.teacher-card-body{
    padding: 0;
    margin-top: 12px;
}
.teacher-card-body .teacher-name{
    height: 50px;width: 100%;
}
.teacher-card-body .teacher-name h5{
    line-height: 50px;text-align: left;padding-left: 30px;color: white;
}
.teacher-card-body .teacher-pro{
    height: 50px;width: 120px;
}
.teacher-card-body .teacher-indro{
    margin-top: 20px;margin-bottom: 20px;text-align: left;padding: 5px;text-align: justify;padding: 0 5px;
}
.teacher-card img{
    width: 100%;
    height: 100%;
    background-color: #f9B008;
    transform: scale(1);
    transition: all 0.5s;
}
.teacher-card img:hover{
    transform: scale(1.05);
}
@media screen and (max-width: 480px) {
    .teacher{
        padding-top: 10px;
    }
    .teacher-list{
        margin-top: 20px !important;
        border-top: 1px solid #ccc;
        padding-top: 20px;
    }
    .teacher-box{margin-top: 0;}
}


/***********************************专业介绍******************************************/
.major-header{
    margin-top: 50px;
}
.major{
    height: 100%;
    width: 100%;
    margin-top: 10px;
    background-size:100% 100%;
    background-attachment:fixed;
    padding-bottom: 20px;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, #f1f2e5 ,#f1f2e5);
}
.major-box{
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-flow: wrap;
}

.major-card{
    margin-bottom: 30px;
    width: 260px;
    height: 370px;
    margin-left: 7px;
    margin-right: 7px;
    flex-shrink: 0;
}
.major-card img{
    width: 100%;
    height: 140px;
    background-color: #f9B008;
    transform: scale(1);
    transition: all 0.5s;
}
.major-card img:hover{
    transform: scale(1.1);
}
.major-card .card-text{
    height: 100px;
    line-height: 25px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-align: justify;
}
.card-title{
    height: 30px;
}

.major .major-list{
    height: 100%;width: 100%;
    margin-top: 10px;
}
.major-list .major-list-header{
    height: 60px;width:300px;
    background: url('../img/major1.png');background-size:  100% 100%;
    margin: 0 auto;text-align: center;
}
.major-list-header h4{
    color: white;text-align: center;line-height: 60px;
}
.major-list p{
    color: #0358ce;margin-left: 20px;letter-spacing: 2px;padding-bottom: 2px;text-align: justify;padding-right: 10px;
}
.major-list p span{
    font-size: 20px;color: #d7000f;
}
@media screen and (max-width: 480px) {
    .major-header{
        margin-top: 10px;
    }
    .major-box{
        margin-top: 5px;
        padding: 0 12px;
    }
    .major-card{
        width: 172px;
        height: auto;
        margin-left: 1px;
        margin-right: 1px;
        box-shadow: 1px 1px 2px #6b6b6b;
    }
    .major-body{
        padding: 5px;
    }
    .card-title{
        height: 24px;
        font-size: 14px;
    }
    .major-card .card-text{
        font-size: 14px;
        height: 75px;
        -webkit-line-clamp: 3;
        margin: 2px 0px;
    }
    .major-card img{
        width: 100%;
        height: 90px;
    }
}



/****************************************专业介绍详情***********************************************/
.major-detail-header{
    width: 100%;
    height: auto;
}
.major-detail-header img{
    height: 100%;
    width: 100%;
}

.major-detail-content{
    height: auto;
    width: 100%;
    background-color: #f5f5f7;
    padding-bottom: 20px;
}
.major-name{
    padding-top: 30px;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 5px;
}
.major-target{
    margin-top: 30px;
    font-size: 24px;
    color: #6b6b6b;
    letter-spacing: 2px;
    text-align: center;
}
.major-course{
    margin-top: 20px;
    height: auto;
    display: flex;
    justify-content: space-evenly;
}
.course-picture{
    height: 100%;
    flex: 1;
    background-color: #ffffff;
}
.course-picture img{
    height: 100%;
    width: 100%;
    border-radius: 20px;
}
.course-introduce{
    background-color: white;
    flex: 1;
    border-radius: 20px;
    margin-left: 10px;
    box-shadow: 5px 5px 5px #6b6b6b;
    padding: 40px;
}
.course-introduce h1{
    font-size: 28px;
    text-align: center;
    padding-bottom: 10px;
}
.course-introduce-line {
    width: 80%;
    height: 8px;
    background-color: #0358ce;
    border-radius: 4px;
    margin: 0 auto;
}
.course-introduce p{
    margin-top: 30px;
    font-size: 24px;
    color: #6b6b6b;
    text-align: justify;
    line-height: 40px;
}
.major-job-title{
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-top: 120px;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}
.major-job{
    width: 80%;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
}
.major-job-list{
    height: 450px;
    width: 100%;
    background-color: #ffffff;
    margin-left: 20px;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: 5px 5px 5px #6b6b6b;
    transition: transform 0.3s;
}
.major-job-list:hover{
    transform: scale(1.05);
}
.job-list-text{
    width: 100%;
    height: 200px;
    font-size: 24px;
    color: #6b6b6b;
    padding: 20px;
    text-align: center;
}
.job-list-text span{
    display:inline-block;width: 40px;height: 40px;
    background-color: #d7000f;color: #f1f2e5;border-radius: 20px;
    margin-right: 5px;
}
.job-list-img1{
    width: 100%;
    height: 250px;
}
.job-list-img1 img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.major-year{
    height: 500px;
    width: 70%;
    background-color: #ffffff;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    border-radius: 20px;
    overflow: hidden;
}
.major-year-text{
    flex: 1;
    display: flex;

}
.year-text-box{
    margin: auto;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.major-year-img{
    flex: 2;
}
.major-year-img img{
    width: 90%;
    height: 90%;
    border-radius: 20px;
}

@media screen and (max-width: 480px) {
    .major-name{
        padding-top: 0px;
        font-size: 38px;
    }
    .major-target{
        margin-top: 15px;
        font-size: 16px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
    }
    .major-course{
        flex-direction: column;
        /*height: 600px;*/
    }
    .course-picture img{
        border-radius: 5px;
    }
    .course-introduce{
        border-radius: 0px;
        margin-left: 0px;
        padding: 30px 0px;
        margin-top: -10px;
    }
    .course-introduce p{
        text-align: center;
        font-size: 18px;
    }
    .major-job{
        flex-direction: column;

        margin-left: 0px;
        width: 92%;
    }
    .major-job-title{
        margin-top: 0px;
        font-size: 24px;
    }
    .major-job-list{
        margin-left: 14px;
    }
    .job-list-img1 img{
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }
    .major-year{
        flex-direction: column;
        margin-top: -70px;
        width: 100%;
        height: 400px;
    }
    .year-text-box{
        font-size: 24px;
    }
    .year-text-box p:nth-child(1){
        margin-left: -70px;
    }
    .major-year-img{
        flex: 1;
    }
    .major-year-img img{
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 390px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        box-shadow: 3px 3px 3px #6b6b6b;
    }
}



/**********************************新闻页面************************************************/
.news-header{
    background-color: #eee;
    padding-bottom: 20px;
    margin: 0;
}

.news-header-container{
    width: 100%;
    padding-top: 450px;
}
.news-header-body{
    width: 100%;height: auto;background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    padding-bottom: 20px;
}
.news-header-title{
    height: 100px;width: 100%;border-bottom: 1px solid #ccc;border-top: 10px solid #0773c3;border-radius: 3px;
}
.news-header-title h2{
    line-height: 100px;color: #0773c3;padding-left: 20px;
}
.news-header-nav{
    border-right: 1px solid #ccc;
}
.news-header-nav a{
    font-size: 20px;
    padding-top:10px;
    padding-bottom: 10px;
}
.news-detail-content{
    padding-left: 25px;padding-right: 25px;
}
.news-list{
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    height: 180px;
}
.news-list img{
    width: 100%;height: 160px;
}
.news-list .news-list-title{
    height: 20%;width: 100%;margin-top:0;
}
.news-list-profile{
    color: #808080; height: 50%;margin-bottom: 10px;text-align: justify;overflow: hidden;
}
.news-list-profile:hover{
    color: #0773c3;
}
.news-list-bottom{
    height: 18%;
}
.news-list-bottom-left{
    text-align: left; color: #bbb;font-size: 12px;float: left;width: 70%;
}
.news-list-bottom-right{
    float: right;
    text-align: right;
    width: 55px;
}
.news-list-bottom-right:hover{
    width: 80px;
    background-color: #0773c3;
    color: white;
    text-align: center;
}
.news-list a{
    color: #808080;
    transform: scale(1);
}
.news-list a:hover{
    color: #0773c3;
    font-weight: bold;
}


/*****************************************新闻咨询、专业介绍列表页面*****************************************************/
.news-body{
    height: auto;width: 100%;margin:20px 0px;
}
.news-body-list{
    padding-left: 25px;padding-right: 25px;
}

@media screen and (max-width: 480px) {
    .news-header-container{
        padding-top: 110px;
    }
    .news-body-list{
        padding-left: 0px;padding-right: 0px;
    }
    .news-list{
        height: 150px;
    }
    .news-list .col-5,.col-7{
        padding: 0 5px;
    }
    .news-list .col-5 img{
        height: 120px;
        width: 100%;
    }
    .news-list-title{
        height: 20px;

    }
    .news-list-title h4{
        line-height: 18px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .news-list-profile{
        font-size: 14px;
        height: 65px;
        overflow: hidden;
    }
}




/*******************************详情************************************/
.detail-title{
    height: 80px;width: 100%;border-bottom: 1px solid #ccc;
}
.detail-title-top{
    text-align: center;height: 25px;
}
.detail-title-bottom{
    height: 50px;text-align: center;font-size: 14px;vertical-align: bottom;margin-top: 20px;
}
.detail-title-bottom span{
    margin-right: 20px;
    padding-right: 20px;
    color: #808080;
}
.detail-content{
    margin-top:30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.detail-content img{
    width: 100%;
    height: 100%;
}
.detail-bottom{
    height: auto;
    width: 100%;
    padding-top: 20px;
}
.detail-bottom-nav{
    line-height: 25px;
}
.detail-bottom-nav span{
    color: #9e9d9d;
}
@media screen and (max-width: 480px) {
    .news-detail-content{
        padding: 0 2px;
        margin-top: 20px;
    }
    .detail-title{
        height: 90px;
    }
    .detail-content{
        padding: 0 5px;
    }
    .detail-title-bottom{
        font-size: 14px;
    }
    .detail-title-bottom span:nth-child(1){
        margin-right: 0px;
        padding-right: 10px;
    }
    .detail-title-bottom span:nth-child(2){
        padding-right: 0px;
        margin-right: 10px;
    }
    .detail-title-bottom span:nth-child(2){
        padding-right: 0px;
        margin-right: 0px;
    }
    .detail-bottom{
        padding-top: 0px;
        padding-left: 20px;
    }
    .detail-bottom-nav{
        margin-top: 20px;
    }
}


/******************************在线报名*******************************/
.application{
    padding-bottom: 20px;
    margin: 0;
    height: auto;

}
.app-header{
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
}
.app-header h3{
    padding-left: 10px;
    border-left: 10px solid #990099;
}
.app-notice{
    padding-left: 20px;
}
.app-input{
    padding-top: 20px;
}
.app-content{
    margin-top:30px;
}


/***************************************关于南校********************************************/
.section-intro-1{
    height:auto;
    width: 100%;
    padding-top: 400px;
}
.intro-1{
    height: auto;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
    text-align: justify;
}
.intro-1-content{
    height: auto;
    width: 100%;
    padding:40px 20px 10px 20px;

}
.intro-1-img{
    height: 550px;
    width: 100%;
    margin: 0 auto;
    padding:10px 30px 40px 30px;
}
.intro-1-img img{
    text-align: center;
    width: 100%;
    height: 100%;
}

.section-intro-2{
    height: auto;
    width: 100%;
    background-color: #f5f5f7;
}
.intro-2-title{
    text-align: center;
    padding-top: 30px;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 30px;
    border-bottom: 5px solid darkred;
    padding-bottom: 10px;
}
.intro-2-content{
    width: 80%;margin: 0 auto;
    text-align: justify;
    letter-spacing: 3px;
}
.intro-2-content img{
    width: 100%;
    height: 90%;
    padding-top: 20px;
}

.section-intro-3{
    height: auto;
    width: 100%;
    padding-bottom: 50px;
}
.intro-3-content{
    margin-top: 50px;
}
.intro-3-content img{
    width: 100%;
    height: 100%;
    padding:0px 20px;
}
.intro-3-content-title{
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
    padding-bottom: 10px;
    border-bottom: 5px solid darkred;
}
.intro-3-content-text{
    margin-top: 20px;
}

.section-intro-4{
    height: auto;
    width: 100%;
    margin: 0 auto;
    background-color: #f5f5f7;
    padding-bottom: 50px;
}
.intro-4-title{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 5px;
    padding-top: 50px;
}
.intro-4-content{
    margin-top: 20px;
}
.intro-4-img{
    width: 100%;
    height: 100%;
}
.intro-4-img img{
    width: 100%;
    height: 100%;
}



@media screen and (max-width: 480px) {
    .section-intro-1{
        padding-top: 110px;
    }
    .intro-1{
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .intro-1-content{
        padding:0px 0px 10px 0px;
    }
    .intro-1-img{
        height: 300px;
        padding:0px 0px 10px 0px;
    }
    .intro-1-content h1:nth-child(2){
        text-indent: 0px !important;
        margin-top: 0px !important;
    }
    .intro-1-content h1:nth-child(2)>span span{
        font-size: 30px !important;
    }

    .intro-1-content h1:nth-child(4){
        text-indent: 0px !important;
        margin-top: 0px !important;
    }
    .intro-1-content h1:nth-child(4)>span{
        font-size: 20px !important;
    }
    .intro-1-content h1:nth-child(5){
        text-indent: 0px !important;
        padding: 0 5px;
        margin-top: 0px !important;
    }
    .intro-1-content h1:nth-child(5)>span{
        font-size: 20px !important;
    }


    .intro-2-content{
        margin: 0px 5px;
        width: 100%;
        padding-right: 10px;
    }
    .intro-2-text h1:first-child{
        margin-left: 0px !important;
    }
    .intro-2-text h1:first-child>span{
        font-size: 25px !important;
    }
    .intro-2-text h1:nth-child(2){
        margin-top: 5px !important;
        text-indent: 30px !important;
        padding: 0 !important;
    }
    .intro-2-text h1:nth-child(2)>span{
        font-size: 15px !important;

    }

    .intro-3-img{
        display: none;
    }

    .intro-4-content h1:nth-child(4){
        text-indent: 0px !important;
        font-size: 14px !important;
    }
    .intro-4-content h1:nth-child(4)>strong{
        font-size: 24px !important;
    }
    .intro-4-content h1:nth-child(5){
        margin-top: 0px !important;
    }
    .intro-4-content h1:nth-child(5)>span{
        font-size: 24px !important;
    }
    .intro-4-content h1:nth-child(6){
        margin-top: 0px !important;
    }
    .intro-4-content h1:nth-child(6)>span{
        font-size: 24px !important;
    }
    .intro-4-content h1:nth-child(7){
        margin-top: 0px !important;
    }
    .intro-4-content h1:nth-child(7)>span{
        font-size: 24px !important;
    }
    .intro-4-content hr:nth-child(1){
        display: none;
    }.intro-4-content hr:nth-child(3){
         display: none;
     }

}


/********************************************加入我们**********************************************/
.join{
    width: 100%;
    height: auto;

}
.join-content{
    height: 100%;
    background-color: #f5f5f7;
    padding-bottom: 30px;
}
.join-content-title{
    text-align: center;
    padding-top: 30px;
}
.join-content-list{
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    padding: 20px;

}
.join-list-left{
    padding-right: 20px;
    flex: 1;
    border-right: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join-list-right{
    padding-left: 20px;
    height: 100%;
    width: 100%;
    flex: 2;
}
.join-intro{
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 30px;
}
.join-intro span{
    font-size: 24px;
    font-weight: bold;
}
.join-intro p{
    font-size: 18px;
    font-weight: bold;
}

/*******************************************联系我们************************************************/
.contact-map{
    height: 600px;padding-top: 20px;padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
    .contact-map{
        height: 300px;
    }
}


/***************************************小屏幕图标导航*****************************************/
.nav-for-min{
    height: auto;
    width: 100%;
    display: none;
}
.nav-icon{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.nav-icon-list{
    flex: 1;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav-icon-list a{
    color: inherit;
}
.nav-icon-list img{
    display: inline-block;
    height: 40px;
    width: 40px;
}
.nav-icon-list-text{
    padding-top: 2px;
    width: 80px;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    .nav-for-min{
        height: auto;
        width: 100%;
        display: block;
    }
}

/*******************************分页修改*****************************/
.page-dif ul{
    margin-top:2px;
}
.page-dif ul li{
    margin-left: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}
.page-dif .active{
    background-color: #1E90FF;
    border-color: #1E90FF;
    color: white;
}
.page-dif ul li:hover{
    background-color: #E0FFFF;
    border-color: #E0FFFF;
    font-weight: bold;
}
.page-dif .disabled{

}


/*****************************手机底部首页和返回按钮****************************************/
.home-return{
    width: 100%;
    height: 45px;
    position: fixed;
    bottom: 0;
    display: none;
}
.home-return-box{
    height: 45px;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-evenly;
    border-top: 1px solid #ccc;
}
.home-return-left{
    padding-top:1px;
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
}
.home-return-left a{
    color: inherit;
}
.home-left-text{
    margin-top: 3px;
    font-weight: bold;
}
.home-return-left .home-left-img img{
    height: 30px;
    width: 30px;
}

.home-return-right{
    padding-top: 3px;
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
}
.home-right-text{
    margin-top: 3px;
    font-weight: bold;
}
.home-return-right .home-right-img img{
    height: 30px;
    width: 30px;
}

@media screen and (max-width: 480px) {
    .nh-logo{
        display: none;
    }
    .home-return{
        display: block;
    }
    .tech-support{
        padding-bottom: 45px;
    }
    .nav-fixed{
        position: static;
    }
    .body-padding{
        padding-top: 0px;
    }

}

