@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 13px;
    font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', SimSun, 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
    margin: 0 auto;
    padding: 0;
}

li {
    list-style-type: none;
}
ul,li {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #737373;
}

img {
    border: 0;
}

.dot {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dot2, .dot3, .dot4, .dot6, .dot10 {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

/*2行文本省略号*/
.dot2 {
    -webkit-line-clamp: 2;
}

/*3行文本省略号*/
.dot3 {
    -webkit-line-clamp: 3;
}

/*4行文本省略号*/
.dot4 {
    -webkit-line-clamp: 4;
}

.dot6 {
    -webkit-line-clamp: 6;
}

.dot10 {
    -webkit-line-clamp: 10;
}

.clearfix:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: '';
}

.clearfix {
    zoom: 1;
}
.container {
    /* width: 1240px; */
    margin: 0 auto;
}
@media (min-width: 768px) {
    .container {
      width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
      width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
      width: 1240px;
    }
}

/*header*/
.header .top {
    background: url(../images/banner/topbg.png) no-repeat center center #f1e3d6;
    background-size: auto 100% !important;
    /* background-color: #f1e3d6; */
    height: 80px;
}
.header .top .container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-logo {
    display: flex;
    align-items: center;
}
.top-logo span {
    display: inline-block;
    font-size: 24px;
    margin-left: 20px;
    color: #00546f;
    font-weight: 700;
}
.header .top .top-input {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 24%;
}
.header .top .top-input input {
    font-size: 14px;
    color: #777;
    padding: 0 10px;
    width: 100%;
    border: 0px solid #fff;
    background: #fff;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
}

/*logo*/

#show {
    position: relative;
    height: 320px;
    width: 980px;
    margin: 0 auto;
}

/* nav*/
.header .nav {
    width: 100%;
    background-color: #ff6600;
}

.header .nav .container ul.nav-ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 56px;
}

.header .nav a {
    color: #fff;
    display: block;
    
}
.mainlevel {
    position: relative;
    height: 100%;
    line-height: 56px;
    width: 100%;
    text-align: center;
}
.mainlevel:hover {
    background-color: #f98030;
}
.mainlevel .nav-child {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #f98030;
    padding: 0;
    width: 100%;
    z-index: 9;
}
ul.nav-child li a {
    display: block;
    font-size: 16px;
    line-height: 48px;
}
ul.nav-child li a:hover {
    background-color: #ff6600;
}


.footer{
    margin-top: 40px;
    border-top: 2px solid #ff6600;
    padding: 20px;
}

.footer .lx p {
    text-align: center;
    margin-left: 30px;
    height: 20px;
    font-size: 14px;
    color: #555;
    line-height: 30px;
}
.navbar-toggle {
    position: relative;
    margin-top: 20px;
    margin-right: 10px;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    border: 2px solid transparent;
    border-radius: 4px;
    border-color: #00546f;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
.navbar-header-box {
    display: none;
}
.navbar-toggle .icon-bar {
    background-color: #00546f;
}
.nav .container {
    transition: transform 0.5s ease;  /* 设置平滑的滑动过渡 */
}

.nav .container.show {
    display: block; /* 显示 container11 */
}
.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #777;
}

@media only screen and (min-width: 768px) and (max-width: 1280px){
    .home-swiper .swiper-slide img {
        height: 246px;
    }
}

@media screen and (max-width: 768px){
.top-input {
    display: none !important;
}
.nav .container {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    left: -100%;
    overflow-y: scroll;
    width: 95vw;
    height: 100vh;
    transition: left .4s;
    background-color: rgba(0, 0, 0, .9);
}
.header .nav .container ul.nav-ul {
    display: block;
    height: 100vh;
}
.mainlevel {
    position: relative;
    height: auto;
    line-height: 40px;
    background-color: transparent;
    width: auto;
    text-align: left;
    padding-left: 20px;
}
.mainlevel .nav-child {
    display: block;
    position: static;
    /* padding-left: 20px; */
    background-color: transparent;
    padding: 0;
    width: auto;
}
ul.nav-child li a {
    padding-left: 20px;
    line-height: 32px;
}

.navbar-header-box {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}
.nav .container.show {
    left: 0;
    transition: left .4s;
}
.navbar-brand {
    font-size: 16px;
    display: inline-block !important;
}
.navbar-header-box.hover .collapsed {
    z-index: 9999;
    background-color: #00546f;
}

.navbar-header-box.hover .icon-bar {
    transition: all .4s;
    background-color: #fff;
}
.navbar-header-box.hover .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}
.navbar-header-box.hover .icon-bar:nth-child(2) {
    opacity: 0;
}
.navbar-header-box.hover .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -3px);
}

.home-swiper .swiper-slide img {
    height: auto;
}
.swiper-bottom-box {
    background-color: #ff6600;
    height: 40px;
    display: flex;
}
.swiper-bottom-addtime {
    height: 40px;
}
.swiper-bottom-addtime .addtime-day {
    display: block;
    font-size: 16px;
    line-height: 20px;
    padding: 0;
}
.swiper-bottom-addtime .addtime-month {
    line-height: 18px;
}
.swiper-bottom-title {
    line-height: 40px;
}
.home-swiper .home-paga-next {
    width: 20px !important;
    height: 20px !important;
}
.home-swiper .home-paga-prev {
    width: 20px !important;
    height: 20px !important;
}
.swiper-button-next, .swiper-button-prev {
    bottom: 8px !important;
}
.home-section01 .container {
    margin: 0 10px;
}
.home-section02 .container {
    margin: 0 10px;
}
.news-wrap, .notice-wrap {
    width: 100%;
}
.people-wrap, .meeting-wrap {
    width: 100%;
}
.home-section02 .title-box {
    position: relative;
    display: block;
    width: auto;
    font-size: 20px;
    letter-spacing: 0;
    color: #ff6600;
    font-weight: 700;
    padding-left: 16px;
    background: transparent;
    text-align: left;
    border-bottom: 1px solid #063f6c;
}
.home-section02 .title-box::before {
    content: '';
    position: absolute;
    height: 50%;
    width: 3px;
    top: 50%;
    left: 0;
    transform: translate(0 , -50%);
    background-color: #3c87ae;
}
.class-left {
    margin: 0 10px 30px 10px;
}
.content .content-left {
    width: 100%;
}
.content .content-right {
    width: 100%;
}
.content-box {
    margin: 0 10px;
}
.content-box ul li a {
    align-items: center;
}
.content-box .img-left {
    width: 140px;
    height: 110px;
    overflow: hidden;
}
.content-box .img-right {
    width: calc(100% - 150px);
    margin-left: 10px;
}
.read-box {
    margin: 0 10px;
}
.read-box p {
    text-align: justify;
}
.header .nav {
    width: 100%;
    background-color: rgba(0, 0, 0, .9);
}
.mainlevel:hover {
    background-color: transparent;
}
ul.nav-child li a:hover {
    background-color: transparent;
}
}

@media screen and (max-width: 600px){

}



@media screen and (max-width: 500px){
.footer .lx p {
    line-height: 22px;
    height: auto;
}
.top-logo img {
    height: 46px;
}
.top-logo span {
    font-size: 20px;
    margin-left: 10px;
}
.people-ul li {
    width: 100%;
}
}

