@charset "utf-8";
@import url(./base.css);

/* header */
header {
  background: #fff;
  border-bottom: solid 5px var(--col4);
}

.header-nav {
  border-top: 10px solid var(--col1);
  background: var(--col2);
  font-size: 22px;
}

.header-nav nav {
  width: 100%;
  display: flex;
}

.header-nav nav>* {
  position: relative;
}

.header-nav .item>a {
  color: #fff;
  line-height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.header-nav .item>a i {
  font-size: 20px;
}

.header-nav .active>a {
  background: var(--col1);
}

.header-nav .children {
  position: absolute;
  background: var(--col2);
  display: none;
  width: max-content;
  min-width: 100%;
}

.header-nav .item:hover .children {
  display: block;
}

.header-nav .children a {
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 15px;
  line-height: 1.2;
}

.header-nav .children a:hover {
  background: var(--col1);
}

.header_cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.header_cont .logo {
  display: block;
  user-select: none;
}

.header_cont .logo img {
  display: block;
}

.header_cont .meeting_info {
  text-align: center;
  font-size: 22px;
  color: var(--col1);
  padding-right: 30px;
  line-height: 1.1;
}

.header_cont .meeting_info p:last-child {
  color: var(--col2);
}

.header_cont .btn {
  width: 140px;
  height: 50px;
  background: var(--col2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 4px;
}

/* banner */
.banner {
  position: relative;
  overflow: hidden;
}

.banner img {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.banner .prev {
  left: 5%;
  color: var(--col2);
  opacity: 1;
}

.banner .next {
  right: 5%;
  color: var(--col2);
  opacity: 1;
}

.banner .swiper-pagination {
  bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .swiper-pagination>* {
  display: block;
  width: 20px;
  height: 20px;
  opacity: 1;
  border-radius: 0;
  border: solid 2px var(--col4);
  background: transparent;
}

.banner .swiper-pagination>*.swiper-pagination-bullet-active {
  background: var(--col4);
}

.banner_title {
  position: absolute;
  font-size: 46px;
  line-height: 1.1;
  color: var(--col2);
  z-index: 2;
  top: 145px;
  width: 1160px;
  left: 50%;
  margin-left: -580px;
  text-align: left;
}

.banner_des {
  position: absolute;
  color: var(--col2);
  top: 290px;
  z-index: 2;
  font-size: 36px;
  line-height: 1.2;
  width: 1160px;
  left: 50%;
  margin-left: -580px;
  text-align: left;
  font-family: 'hk';
  display: flex;
  align-items: center;
}

.banner_des span {
  display: block;
  width: 4px;
  height: 36px;
  background: var(--col2);
  margin: 0 20px;
}


/* position */
.position {
  background: var(--col2);
  line-height: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.position .container {
  padding-left: 35px;
  background: url(../img/icon-home.png) no-repeat left center;
}

.position a {
  color: #fff;
}

.position a:hover {
  color: var(--col1);
}

/* footer */
footer {
  padding-top: 75px;
}

.footer-logo .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo .logo {
  width: 470px;
}

.footer-logo .logo-list {
  width: calc(100% - 500px);
  display: flex;
  justify-content: flex-end;
}

.footer-logo .logo-list img {
  display: block;
  height: 90px;
  width: auto;
  user-select: none;
}

.footer-logo .logo-list img~img {
  margin-left: 30px;
}

.web_copyright {
  margin-top: 60px;
  background: var(--col2);
  color: #fff;
  font-size: 16px;
  line-height: 1.5em;
  padding: 15px;
}

/* 页面main标题 */
.page-title {
  height: 134px;
  background: url(../img/bg-welcome.jpg) no-repeat 0 0 / 100%;
  padding-left: 30px;
  padding-top: 30px;
  color: var(--col2);
  font-family: 'fr';
  font-size: 42px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.page-title p {
  padding-right: 40px;
  background: url(../img/bg-page-title.jpg) no-repeat top right / auto 100%;
}

/* 左侧板块标题 */
.container_bt {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container_bt .more {
  font-size: var(--size);
  color: #333;
  font-weight: normal;
}

/* 右侧标题 */
.right_bt {
  font-size: 31px;
  color: #fff;
  font-weight: bold;
  line-height: 70px;
  font-family: 'fr';
  text-align: center;
}