#art_list {
  width: 100%;
}

#art_list .item {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

#art_list .item .title {
  width: 780px;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

#art_list .item .date {
  font-size: 18px;
  color: #888;
  transition: color 0.3s;
}

#art_list .item:hover .title {
  color: #095284;
}

#art_list .item:hover .date {
  color: #333;
}

#article {
  width: 100%;
}

#article .info {
  padding: 25px 0 20px;
  text-align: center;
}

#article .info .title {
  font-size: 24px;
  font-weight: bold;
}

#article .info .date {
  margin-top: 5px;
  color: #999;
}

#article .content {
  font-size: 16px;
  line-height: 30px;
  padding-bottom: 30px;
}

#article .content img {
  max-width: 100%;
}

#article .content table,
#article .content td,
#article .content th {
  border: 1px solid #000;
}

#article .download {
  width: 100%;
  padding-bottom: 30px;
  overflow: hidden;
}

#article .download a {
  display: block;
  float: left;
  clear: both;
  padding-left: 35px;
  background-image: url(style_res/08.png);
  background-position: left center;
  background-repeat: no-repeat;
  font-size: 16px;
  max-width: 600px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 5px;
  transition: color 0.3s;
}

#article .download a:hover {
  color: #095284;
}

#article .prev-next {
  width: 100%;
  padding: 15px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e4e4e4;
}

#article .prev-next .left {
  width: 480px;
}

#article .prev-next .left .line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #999;
  margin-top: 8px;
}

#article .prev-next .left .line span {
  color: #333;
}

#article .prev-next .left .line a {
  color: #095284;
}
#article .content table{
	    table-layout: fixed;
    width: 100% !important;
    overflow: hidden;
    text-align: center;
}
/*#article .content table colgroup col:nth-child(1){*/
/*    width: 5% !important;*/
/*}*/
/*#article .content table colgroup col:nth-child(2){*/
/*    width: 25% !important;*/
/*}#article .content table colgroup col:nth-child(3){*/
/*    width: 10% !important;*/
/*}*/
/*#article .content table colgroup col:nth-child(4){*/
/*    width: 8% !important;*/
/*}*/
/*#article .content table colgroup col:nth-child(5){*/
/*    width: 8% !important;*/
/*}*/
/*#article .content table colgroup col:nth-child(6){*/
/*    width: 8% !important;*/
/*}*/
/*#article .content table colgroup col:nth-child(7){*/
/*    width: 8% !important;*/
/*}*/
/*#article .content table colgroup col:nth-child(8){*/
/*    width: 30% !important;*/
/*}*/
#article .content table colgroup{
	display:contents;
}
#article .content td >a{
	word-break: break-word;
}
#article .content td{
padding: 5px;
}
#article .prev-next .back {
  display: block;
  width: 130px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f7f7f7;
  color: #333;
}

#bud_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#bud_list .item {
  display: block;
  width: 435px;
  height: 355px;
  margin-top: 30px;
}

#bud_list .item .img {
  width: 100%;
  height: 295px;
  overflow: hidden;
}

#bud_list .item .img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

#bud_list .item .img:hover img {
  transform: scale(1.1);
}

#bud_list .item .title {
  width: 100%;
  height: 60px;
  padding: 0 25px;
  font-size: 16px;
  line-height: 58px;
  border: 1px solid #e4e4e4;
  border-top: none;
}

#dev {
  width: 100%;
  margin-top: 30px;
}

#dev .item {
  width: 100%;
  margin-bottom: 1px;
}

#dev .item .tops {
  width: 100%;
  height: 70px;
  background-color: #f7f7f7;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}

#dev .item .tops p {
  color: #999;
  font-size: 18px;
  transition: all 0.3s;
}

#dev .item .tops p span {
  font-size: 24px;
  color: #333;
  font-family: "bebas";
  transition: all 0.3s;
}

#dev .item .tops i {
  display: block;
  width: 15px;
  height: 9px;
  background-image: url(style_res/20.png);
  transition: all 0.3s;
}

#dev .item .tops:hover {
  background-color: #095284;
}

#dev .item .tops:hover p {
  color: #fff;
}

#dev .item .tops:hover p span {
  color: #fff;
}

#dev .item .tops:hover i {
  background-image: url(style_res/21.png);
}

#dev .item .tops.active {
  background-color: #095284;
}

#dev .item .tops.active p {
  color: #fff;
}

#dev .item .tops.active p span {
  color: #fff;
}

#dev .item .tops.active i {
  background-image: url(style_res/21.png);
  transform: rotate(-180deg);
}

#dev .item .content {
  display: none;
  width: 100%;
  padding: 24px 24px 30px;
  background-color: #f7f7f7;
  font-size: 16px;
  line-height: 30px;
}

#dev .item .content img {
  max-width: 100%;
}

#news {
  width: 100%;
  margin-top: 10px;
}

#news .item {
  display: flex;
  align-items: center;
  padding: 20px 0 15px;
  border-bottom: 5px solid #fff;
  transition: all 0.3s;
}

#news .item .img {
  width: 170px;
  height: 115px;
  flex-shrink: 0;
}

#news .item .img img {
  width: 100%;
  height: 100%;
}

#news .item .text {
  width: 100%;
  padding-left: 14px;
}

#news .item .text .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  height: 56px;
  transition: color 0.3s;
}

#news .item .text .date {
  margin-top: 28px;
  font-size: 18px;
  color: #888;
  font-family: "bebas";
  transition: color 0.3s;
  font-weight: bold;
}

#news .item:hover {
  border-color: #2f88c0;
}

#news .item:hover .text .title {
  color: #095284;
}

#news .item:hover .text .date {
  color: #333;
}

#agen {
  width: 100%;
  margin-top: 30px;
}

#agen .title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

#agen .table {
  width: 100%;
  margin-top: 30px;
}

#agen table {
  width: 100%;
  text-align: center;
}

#agen table,
#agen th,
#agen td {
  border: 1px solid #e6e6e6;
}

#agen th {
  height: 50px;
  background-color: #095284;
  color: #fff;
  padding: 0 20px;
}

#agen td {
  padding: 0 20px;
  height: 50px;
  background-color: #fcfcfc;
}

#index {
  background-color: #fff;
}

#index .banner {
  width: 100%;
  height: 480px;
}

#index .banner .swiper-slide {
  width: 100%;
  height: 480px;
  background-position: center;
  background-size: cover;
}

#index .banner .swiper-pagination-bullet {
  width: 50px;
  height: 8px;
  border-radius: 4px;
  opacity: 0.5;
}

#index .banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

#index .banner .swiper-button-prev {
  left: 50%;
  margin-left: -600px;
}

#index .banner .swiper-button-next {
  left: 50%;
  margin-left: 573px;
  right: auto;
}

#index .mod-title {
  width: 100%;
  height: 56px;
  border-bottom: 1px solid #888;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  background-image: url(common_res/04.png);
  background-position: left center;
  background-repeat: no-repeat;
}

#index .mod-title p {
  font-size: 24px;
  font-weight: bold;
}

#index .news {
  width: 100%;
  margin-top: 30px;
}

#index .news .block {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}

#index .news .thumb {
  width: 665px;
  height: 450px;
  float: left;
  position: relative;
}

#index .news .thumb .swiper-container,
#index .news .thumb .swiper-slide {
  width: 665px;
  height: 450px;
}

#index .news .thumb img {
  width: 100%;
  height: 100%;
}

#index .news .thumb .text {
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0 20px;
  line-height: 80px;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#index .news .list {
  width: 535px;
  float: left;
}

#index .news .list .item {
  display: flex;
  align-items: center;
  background-color: #f2f4f5;
  padding: 15px 15px 14px;
  margin-top: 1px;
  border-bottom: 5px solid transparent;
  transition: all 0.3s;
}

#index .news .list .item .img {
  width: 170px;
  height: 115px;
  flex-shrink: 0;
}

#index .news .list .item .img img {
  width: 100%;
  height: 100%;
}

#index .news .list .item .text {
  width: 100%;
  padding-left: 15px;
}

#index .news .list .item .text .title {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  height: 56px;
  transition: color 0.3s;
}

#index .news .list .item .text .date {
  margin-top: 25px;
  font-size: 14px;
  color: #888;
  font-family: "bebas";
  transition: color 0.3s;
}

#index .news .list .item:hover {
  background-color: #fff;
  border-color: #2f88c0;
}

#index .news .list .item:hover .text .title {
  color: #095284;
}

#index .news .list .item:hover .text .date {
  color: #333;
}

#index .floor {
  width: 100%;
  margin-top: 30px;
}

#index .floor .main {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

#index .floor .story {
  width: 765px;
}

#index .floor .story .list {
  width: 100%;
  padding-top: 30px;
}

#index .floor .story .item {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#index .floor .story .item .texts {
  width: 425px;
}

#index .floor .story .item .texts .title {
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  max-height: 56px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
  transition: color 0.3s;
}

#index .floor .story .item .texts .desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
}

#index .floor .story .item .texts .btn {
  display: block;
  width: 110px;
  height: 36px;
  background-color: #2f88c0;
  line-height:36px;
  border-radius: 5px;
  background-image: url(style_res/28.png);
  background-position: right 22px center;
  background-repeat: no-repeat;
  color: #fff;
  padding-left: 18px;
  margin-top: 10px;
  transition: all 0.3s;
}

#index .floor .story .item .texts .btn:hover {
  background-color: #095284;
}

#index .floor .story .item .img {
  width: 295px;
  height: 200px;
}

#index .floor .story .item .img img {
  width: 100%;
  height: 100%;
}

#index .floor .story .item:hover .texts .title {
  color: #095284;
}

#index .floor .anno {
  width: 400px;
  padding-left: 10px;
}

#index .floor .anno .list {
  width: 100%;
  margin-top: 30px;
  border-left: 1px solid #ddd;
}

#index .floor .anno .list .item {
  width: 100%;
  position: relative;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#index .floor .anno .list .item .icon {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 26px;
  left: -8px;
  background-image: url(style_res/32.png);
}

#index .floor .anno .list .item .texts {
  width: 100%;
}

#index .floor .anno .list .item .texts .title {
  width: 100%;
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  max-height: 56px;
}

#index .floor .anno .list .item .texts .date {
  font-size: 14px;
  color: #888;
  font-family: "bebas";
  margin-top: 10px;
}



.syy .nav .items:nth-child(1) .lmmc {color: #fff;
    background-image: url(common_res/02.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;}
.syy .nav .items:nth-child(1) .lmmc::after {
    background-color: #fff;
}
.nav .items .selected1,.nav .items .parent1 {color: #fff;
    background-image: url(common_res/02.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;}
.nav .items .selected1::after,.nav .items .parent1::after {
    background-color: #fff !important;
}
.dqwz a {color: #999;}
.dqwz a:last-child {color: #095284;}
.possplit {background: none; width: auto;text-align: center;text-indent: 0px;padding:0 5px;}
.selected2,.parent2 {
    color: #095284 !important;
    background-image: url(common_res/06.png) !important;
}
.new-style { display:none;}
.selected4,.parent4 {
    border-bottom: 2px solid #095284 !important;
}












