@charset "utf-8";

body,
div,
table,
tr,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
label,
select,
textarea,
p,
u,
i,
em,
ul,
ol,
li,
dl,
dd,
dt,
img,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  font-size: 1em;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  border: 0 none;
  vertical-align: middle;
}

a,
input,
select,
textarea,
area,
button {
  outline: none;
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

textarea {
  overflow: auto;
  resize: none;
}

ul,
li {
  list-style: none;
}

body {
  font: 18px Arial, Helvetica, sans-serif, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue;
  color: #333;
}

.clear {
  clear: both;
}

@media only screen and (max-width:1919px) {
  body {
    font-size: 16px
  }
}

/* -----公共样式----- */
.container {
  display: block;
  margin: auto;
  width: 1200px;
}

.part {
  /* margin: 2.5rem 0; */
  margin-top: 1em;
  margin-bottom: 0;
}


.part .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid #dcdcdc;
}

.part .title>p {
  white-space: nowrap;
  padding: 0.5em 0;
  color: #0677e4;
  border-bottom: 2px solid #0677e4;
  /* font-size: 1.3em; */
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 2px;
}

.part .title>div .icon-icon1 {
  font-size: 1.7em;
  margin-top: -0.15em;
  margin-left: -4px;
}

.part .title>div {
  width: 100%;
  position: relative;
  /* border-bottom: 2px solid #dcdcdc; */
  /* padding: 1em 0; */
  display: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.part .content {
  padding: 1.3em 0;
}

.more {
  color: #a0a0a0;
  display: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.more>span {
  margin-left: 0.3em;
}

.more:hover {
  color: #0677e4;
}

/* ----- 网格 -----*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col-8 {
  width: calc((100% / 3)*2);
}

.col-6 {
  width: calc(100% / 2);
}

.col-4 {
  width: calc(100% / 3 - 2.5%);
}

.col-3 {
  width: calc(100% / 4);
}

.col-2 {
  width: calc(100% / 6);
}

.col-1 {
  width: calc(100% / 12);
}

/* -----banner----- */
.banner {
  width: 100%;
  position: relative;
  min-width: 1200px;
  height: 372px;
  background-image: url(../images/banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0677e4;
}

.banner img {
  -o-object-fit: cover;
  object-fit: cover;
}

.banner_top {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  line-height: 60px;
}

.banner_top>div {
  width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner_top>div>p {
  font-size: 1em;
  color: #333333;
}

#date {
  margin-left: 0.5em;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search>input {
  background: #fff;
  line-height: 40px;
  height: 40px;
  width: 360px;
  padding: 0 0.7em;
  font-size: 0.9em;
}

.search>.btn {
  background: #0677e4;
  width: 50px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: url(../images/search.png ) #0677e4 center no-repeat;
}

/* -----导航----- */
.nav {
  background: #0677e4;
  color: #fff;
  height: 3.8em;
  line-height: 3.8em;
  font-size: 1em;
}

.nav>.row {
  width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav>.row>a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  cursor: default;
}

.nav>.row>a.active,
.nav>.row>a:hover {
  background: #30a5fb;
}

/* -----footer----- */
.foot {
  border-top: 1px solid #0677e4;
}

.footer {
  min-width: 1200px;
  height: 194px;
  background-image: url(../images/footer.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0677e4;
}

.footer>div,
.link>div {
  width: 1200px;
  margin: auto;
  position: relative;
  height: 100%;
}

.footer>div>p {
  position: absolute;
  color: #fff;
  right: 0;
  bottom: 2em;
}

.link {
  background: #f5f5f6;
}

.link>div {
  height: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.link .item {
  display: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.link .item>span {
  font-weight: bold;
  margin-right: 2em;
}

.link .item>.drop_menu ul {
  display: none;
  width: 100%;
  line-height: 2.1em;
  width: 16em;
  position: absolute;
  left: 0;
  top: 2.4em;
  background: #f7f7f7;
  border: 1px solid #acacad;
  border-radius: 7px;
  padding: 0 1em;
  z-index: 9999999;
}

.link .item>.drop_menu {
  width: 16em;
  height: 2.3em;
  line-height: 2.3em;
  border: 1px solid #acacad;
  border-radius: 7px;
  padding: 0 1em;
  color: #222;
  position: relative;
  cursor: default;
  background: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(#f7f7f7));
  background: linear-gradient(to bottom, #ececec, #f7f7f7);
}

.link .item>.drop_menu::after {
  content: '';
  width: 0;
  height: 0;
  border-width: .5em .45em 0;
  border-style: solid;
  border-color: #222 transparent transparent;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link .item>.drop_menu:hover ul {
  display: block;
}

/* -----其他文联链接----- */
.other_link {
  margin-bottom: 2.5em;
}

.other_link .part .content {
  padding: 0;
}

.other_link .part .row .col-2 {
  margin-top: 1.5em;
  width: 15%;
}

.other_link .part .row .col-3 {
  margin-top: 1.5em;
  width: 21%;
}

.other_link .part .row a {
  display: block;
}

.other_link .part .row a:hover {
  -webkit-box-shadow: 0px 0px 5px 1px #aed3f7;
  box-shadow: 0px 0px 5px 1px #aed3f7;
}

.other_link .part .row a>img {
  -o-object-fit: cover;
  object-fit: cover;
}

/*  ------ 网上展厅 ------ */
.exhibition {
  background-image: url(../images/exhibition.jpg);
  /* background-position: center center; */
  background-repeat: no-repeat;
  padding: 5px;
  padding-bottom: 2em;
}

.exhibition .title>div {
  border-color: #0677e4;
}

.exhibition .title>div .more,
.exhibition .title>div .icon-icon1::before {
  color: #0677e4;
}

.exhibition .part .content {
  padding: 1em 1.8em;
}

.exhibition .swiper-container {
  background: #fff;
  padding: 2em 1.6em 1em;
  -webkit-box-shadow: 0 0 2px 2px #b8daf3;
  box-shadow: 0 0 2px 2px #b8daf3;
}

.exhibition .swiper-slide a {
  display: block;
}

.exhibition .swiper-slide p {
  text-align: center;
  color: #666666;
  font-weight: bold;
  font-size: 0.8em;
  margin-top: 0.9em;
}

.exhibition .swiper-slide .images {
  border-radius: 5px;
  overflow: hidden;
  height: 262px;
}

.exhibition .swiper-slide .images img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.exhibition .swiper-slide-active .images {
  /* border: 1px solid #9fcaf4;
  -webkit-transform: scale(1.1);
  transform: scale(1.1); */

}

.exhibition .part .content {
  position: relative;
}

.exhibition .swiper-slide-active p {
  color: #0677e4;
  margin-top: 1.5em;
}

.swiper_btn {
  position: absolute;
  width: 1.6em;
  height: 5em;
  background: #3e94e8;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9999;
  line-height: 5em;
  text-align: center;
}

.swiper_btn.prev {
  left: 3px;
}

.swiper_btn.next {
  right: 3px;
}

/* ----- 视频专区 ----- */
.video {
  /* margin-bottom: 2.5em; */
}

.video .item {
  -webkit-box-shadow: 0 0px 5px 0px #e0e0e0;
  box-shadow: 0 0px 5px 0px #e0e0e0;
  padding-bottom: 1.3em;
  cursor: default;
}

.video .item p {
  color: #999999;
  margin-top: 10px;
  padding-left: 0.8em;
}

.video .item .images {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.video .item .images::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  background-image: url(../images/video.png);
  background-size: 100% 100%;
}

.video .item .images img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.video .item:hover {
  -webkit-box-shadow: 0 0px 5px 0px #9fcaf4;
  box-shadow: 0 0px 5px 0px #9fcaf4;
}

.video .item:hover .images>img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* ----- 文艺动态 ----- */
.wenyi .col-7 {
  width: calc(50% + 50px)
}

.wenyi .col-5 {
  width: calc(50% - 50px)
}

.wenyi {
  padding: 3.3em 0 2em;
  padding-bottom: 0;
  padding-top: 1em;
}

.wenyi-swiper {
  width: 100%;
  /* height: 420px; */
  height: 458px;
  position: relative;
}

.wenyi-swiper .swiper-slide {
  position: relative;
}

.wenyi-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wenyi-swiper .swiper-slide p {
  height: 3.33em;
  line-height: 3.33em;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding-left: 25px;
}

.wenyi-swiper .swiper-slide p>span {
  display: block;
  max-width: 70%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wenyi-swiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
  right: 25px;
  left: unset !important;
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
  z-index: 9999;
  width: 120px !important;
}

.wenyi-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: .9;
  -webkit-transform: scale(1);
  transform: scale(1);
  margin: 0 5px !important;
  border-radius: 7px;
  left: -10px !important;
}

.wenyi-swiper .swiper-pagination-bullet-active {
  width: 30px;
}

/* 文艺动态tab */
.essay {
  padding-left: 1.5em;
}

.essay .box {
  padding: 10px;
  -webkit-box-shadow: 0 0px 5px 0px #e0e0e0;
  box-shadow: 0 0px 5px 0px #e0e0e0;
}

.essay .box>.tabbar {
  position: relative;
  width: 100%;
  height: 64px;
  background: url(../images/line.png) no-repeat left bottom;
  display: flex;
}

.essay .tabbar>.tab_item {
  position: relative;
  /* font-size: 24px; */
  font-size: 19px;
  line-height: 64px;
  font-weight: bold;
  color: #999999;
  padding: 0 18px 0 45px;
  cursor: default;
  border-bottom: 4px solid transparent;
}

.essay .tabbar>.tab_item::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 5px solid #999999;
  top: 50%;
  left: 15px;
  transform: translateY(-40%);
}

.essay .tabbar>.tab_item.active {
  color: #0677e4;
  border-bottom: 4px solid #0677e4;
}

.essay .tabbar>.tab_item.active::before {
  border-color: #0677e4;
}

/* .essay .tabbar>.tab_item:first-child::after{
    content: '';
    width: 1px ;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #82bbf1;
} */
.tab_more {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #0677e4;
  /* font-size: 19px; */
  font-size: 15px;
}

.essay ul {
  padding-top: 14px;
}

.essay ul li a {
  background: #f7fafd;
  margin-bottom: 14px;
  padding: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.essay ul li a>p {
  width: 60px;
  height: 60px;
  padding-top: 7px;
  text-align: center;
  border: 2px solid #0677e4;
  font-size: 12px;
  font-weight: bold;
}

.essay ul li p>span {
  margin-top: 3px;
}

.essay ul li p>span:first-child {
  color: #0677e4;
  font-size: 20px;
  display: block;
}

.essay ul li p>span:last-child {
  display: block;
  font-size: 12px;
  color: #666;
}

.essay ul li div {
  width: 400px;
}

.essay ul li div>p {
  height: 40px;
  overflow: hidden;
  color: #666666;
  font-size: 14px;
  margin-top: 5px;
  text-overflow: ellipsis;
}

/* 文联概况 */
.wenlian .content {
  padding: 1em 0.8em 0;
}

.wenlian .content>div {
  box-shadow: 0 0 5px 0 #9fcaf4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-image: url(../images/wenlian_bg.jpg);
}

.wenlian .content a {
  padding: 16px 0 20px;
  text-align: center;
  color: #0677e4;
  overflow: hidden;
}

.wenlian .content a h5 {
  /* font-size: 1.1em; */
  font-size: 1em;
}

.wenlian .content a p {
  /* font-size: 0.8em; */
  font-size: 0.7rem;
  margin-top: 3px;
}

.wenlian .content a:nth-child(2n+1) {
  width: 57%;
}

.wenlian .content a:nth-child(2n) {
  width: 43%;
}

.wenlian .content a:nth-child(1),
.wenlian .content a:nth-child(4),
.wenlian .content a:nth-child(5) {
  background: #faf6ef;
  color: #666666;
}

.wenlian .content a:nth-child(5) {
  padding: 0;
}

.wenlian .content a>img {
  object-fit: cover;
  width: 100%;
}

/*  ----- 文章列表 ----- */
.list .part .content {
  padding: 0;
}

.list ul li:first-child {
  padding: 20px 0;
  border-bottom: 1px dashed #b3b3b3;
  display: flex;
}

.list ul li:first-child .cont {
  width: calc(100% - 160px);

  font-size: 15px;
  color: #6e6e6e;
  padding: 5px 5px 5px 12px;
}

.list ul li:first-child .cont a {
  color: #0677e4;
}

.list ul li:first-child .images {
  width: 160px;
  height: 100px;
  overflow: hidden;
}

.list ul li:first-child .images img {
  width: 100%;
  object-fit: cover;
}

.list ul li>a {
  font-size: 0.85em;
  line-height: 2.5em;
  color: #4e4e4e;
  cursor: default;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list ul li>a>p {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list ul li>a>span {
  /* float: right; */
  width: 30%;
  text-align: right;
  color: #a0a0a0;
  font-size: 13px;
}

.list ul li>a:hover {
  color: #0677e4;
}

/* ----- 登录 ------ */
.loginBox .content {
  padding: 1em;
}

.login {
  border-radius: 7px;
  box-shadow: 0 0 5px 0 #30a5fb;
  padding: 28px 20px;
}

.login .field {
  height: 3.33em;
  line-height: 3.33em;
  border-radius: 7px;
  background: #d7e9fb;
  margin-bottom: 1.3em;
  padding-left: 15px;
}

.login .btn {
  line-height: 3.33em;
  background: linear-gradient(to right, #46d8fe, #4b80e4);
  color: #fff;
  border-radius: 7px;
  text-align: center;

}

.login>p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #0677e4;
  margin-top: 8px;
}

.login .field>span>img {
  margin-right: 0.8em;
}

.login .field input {
  height: 100%;
  font-size: 0.9em;
  line-height: 3.33em;
  width: 60%;
}

/* ----- 文明志愿服务 ----- */
.service .item {
  box-shadow: 0 0px 5px 0px #e0e0e0;
}

.service .item:hover {
  box-shadow: 0 0px 5px 0px #46d8fe;
}

.service .item .images>img {
  width: 100%;
  transition: all 0.5s;
}

.service .item:hover .images>img {
  transform: scale(1.05)
}

.service .item .images {
  width: 100%;
  height: 175px;
  overflow: hidden;
}

.service .item .cont {
  padding: 15px 10px;
  font-size: 15px;
}

.service .item .cont p {
  margin-bottom: 10px;
}

.service .item .cont .btn {
  width: 160px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background: #30a5fb;
  text-align: center;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 35px;
  display: block;
}

/* -----艺术论坛----- */
.art .content ul {
  box-shadow: 0 0px 5px 0px #e0e0e0;
  /* padding: 20px 10px; */
  padding: 1px 10px;
}

.art .content ul li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.art .content ul li span {
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to bottom, #dccefc, #ad9cfb);
  line-height: 40px;
  font-style: italic;
  font-size: 17px;
  margin-top: 5px;
}

.art .content ul li div {
  width: calc(100% - 40px);
  padding-left: 12px;
  font-size: 15px;
}

.art .content ul li div h5 {
  color: #797979;
}

.art .content ul li div p {
  font-size: 13px;
  color: #999;
  margin-top: 5px;
  height: 40px;
  overflow: hidden;
}

.art .content ul li:nth-child(2) span {
  background: linear-gradient(to bottom, #7feec7, #30c6ce);
}

.art .content ul li:nth-child(3) span {
  background: linear-gradient(to bottom, #b4defb, #4d91fa);
}

.art .content ul li:nth-child(4) span {
  background: linear-gradient(to bottom, #fbeead, #fd8b61);
}

@media only screen and (max-width:960px) {
  body {
    font-size: 14px
  }

  .container {
    width: 100%;
  }

  .col-8,
  .col-7,
  .c0l-6,
  .col-5,
  .col-4,
  .col-3,
  .col-2,
  .col-1 {
    width: 100% !important;
    padding: 0 15px;
    margin-bottom: 10px;
  }

  .video,
  .other_link {
    padding: 0 15px;
  }

  .other_link .col-2,
  .other_link .col-3 {
    width: 47% !important;
  }

  .essay ul li>div {
    width: 220px !important;
  }

  .essay .tabbar>.tab_item {
    font-size: 14px !important;
  }

  .tab_more {
    font-size: 13px !important
  }

  .exhibition .swiper-slide-active .images {
    width: 170px;
    margin: auto;
  }

  .nav>.row>a {
    width: 25%;
    flex: unset;
    background: #0677e4;
  }

  .nav>.row {
    width: 100%
  }

  .nav {
    flex-wrap: wrap;
    height: auto;
    background: none;
  }

  .banner {
    min-width: auto;
    height: calc(100vw/1200 * 372);
    background-size: calc(100vw/1200 * 1920) calc(100vw/1200 * 372);
  }

  .swiper-pagination {
    display: none;
  }

  .wenyi-swiper .swiper-slide p>span {
    width: 100%
  }

  .foot {
    display: none;
  }

  .part {
    margin: 10px 0;
  }

  .part .content {
    padding-bottom: 0;
  }

  .wenyi-swiper {
    height: 225px;
  }

  .wenlian .content a {
    height: 90px;
  }

  .banner_top {
    display: none;
  }

  .essay ul li div {
    width: auto !important;
  }

  /* .banner_top{line-height: 30px;padding:0 10px;}
    .banner_top>div{width: 100%;display: block;}
    .banner_top .search{width: 100%;}
    .search>input{
        background: #fff;
        line-height: 30px;
        height: 30px;
        width: calc(100% - 50px);
    }
    .search>.btn {
        height: 30px;
        line-height: 30px;
    } */
}

.tabClick {
  display: none;
}

.tabClick.tab1 {
  display: block;
}

.tab_click {
  color: #a0a0a0 !important;
  border-color: #dcdcdc !important;
}

.tab_click:first-child {
  margin-right: 10px !important;
}

.tab_click.active {
  color: #0677e4 !important;
  border-color: #0677e4 !important;
}

.xiehui {
  justify-content: flex-start;
}

.xiehui .col-2 {
  width: calc(100% / 7) !important;
  margin-bottom: 15px;
}

.main_cont img {
  object-fit: cover;
}