@charset "UTF-8";*,*::after,*::before {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    appearance: none
}

h1,h2,h3,h4,h5,h6,strong {
    font-weight: normal
}

img {
    border: none
}

i {
    font-style: normal
}

input[type="password"]::-ms-reveal {
    display: none
}

input,button,textarea {
    border: none;
    outline: none;
    font-family: inherit
}

a {
    display: inline-block
}

html {
    overflow: initial !important
}

html,body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden !important;
    color: #fff;
    font-size: 16px;
    background-color: #f3f7fc;
    font-family: Microsoft YaHei,Heiti SC,tahoma,arial,Hiragino Sans GB,sans-serif
}

.swiper-button-next,.swiper-button-prev {
    background-size: 27px 27px
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

input,button {
    outline: none;
    border: none;
    background-color: transparent;
    box-shadow: 0 0 0 transparent !important;
    -webkit-tap-highlight-color: transparent
}

input:-webkit-autofill,textarea:-webkit-autofill,select:-webkit-autofill {
    box-shadow: 0 0 0px 1000px transparent inset
}

*:not(body):-webkit-scrollbar {
    display: none
}

:root {
    --fz-1: 18px;
    --fz-2: 14px;
    --fz-3: 14px
}

.ttu {
    text-transform: uppercase
}

.container {
    max-width: 1200px;
    margin: 0 auto
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    /* padding-left: 170px; */
    z-index: 7
}

.header.other-page {
    padding-left: 0
}

.header.other-page .nav-logo {
    display: block
}

.header.other-page .nav {
    padding-bottom: 15px
}


  /* css部分 */
  .h-important {
    background-color: rgb(60, 129, 184);
    background-image: none;
    padding: 80px 0;
  }

  .h-important .container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
  }

  /* 手风琴导航样式 */
  .accordion-container {
    display: flex;
    height: 400px;
    gap: 10px;
  }

  /* 导航项样式 */
  .accordion-item {
    display: flex;
    transition: all 0.3s ease;
    height: 100%;
  }

  /* 左侧标签区域 */
  .accordion-nav {
    width: 120px;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    flex-shrink: 0;
    height: 100%;
    gap: 20px;
    position: relative;
  }
  .accordion-nav a{
      position: relative;
      z-index: 1;
  }
   .accordion-nav::before{
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: 6px;
    right: 6px;
    border: 1px solid #fff;
  }

  .accordion-nav.active {
    background-image: linear-gradient(-90deg, #3282b7 0%, #69c3b2 100%);
    position: relative;
  }

  .accordion-nav img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    cursor: pointer;
    filter: brightness(0) invert(1);
  }

  .accordion-nav-text {
    font-size: 24px;
    color: #fff;
    writing-mode: vertical-lr;
    text-orientation: upright;
    letter-spacing: 4px;
    font-weight: 600;
  }

  /* 内容区域 */
  .accordion-content {
    display: none;
    width: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s ease;
    color: #222;
    background-color: #fff;
  }

  .accordion-item.active {
    flex: 1;
  }

  .accordion-item.active .accordion-content {
    display: block;
    
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
  }

  /* Grid 布局替代表格 */
  .grid-list {
    width: 100%;
    overflow-y: auto;
    flex: 1;
  }

  .grid-header {
    display: grid;
    grid-template-columns: 80% 20%;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    font-weight: normal;
    color: #666;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .grid-row {
    display: grid;
    grid-template-columns: 80% 20%;
    border-bottom: 1px solid #eee;
  }

  .grid-row:hover {
    background-color: #f5f5f5;
  }

  .grid-cell {
    padding: 12px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* 搜索框 */
  .ip_search-box {
    margin-bottom: 15px;
    display: flex;
    flex-shrink: 0;
  }

  .ip_search-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px 0 0 4px;
  }

  .ip_search-btn {
    background-color: #3c81b8;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }

  /* 标题样式 */
.important-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: flex-end;
}
.more-info{
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.h-important .news-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

  .h-important .news-head h3 {
    font-size: 24px;
  }
  .h-important .news-head h3 small {
    font-weight: normal;
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
  }
  .h-important .no-data {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 10px;
  }

  /* 滚动条美化 */
  .grid-list::-webkit-scrollbar {
    width: 8px;
  }

  .grid-list::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .grid-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }

  .grid-list::-webkit-scrollbar-thumb:hover {
    background: #3c81b8;
  }

  /* 响应式布局 */
  @media (max-width: 960px) {
        
    .h-important .container {
      height: auto;
      max-height: 640px;
    }

    .accordion-container {
      flex-direction: column;
      height: auto;
    }

    .accordion-item {
      width: 100%;
      height: auto;
      flex-direction: column;
    }

    .accordion-nav {
      width: 100%;
      height: 60px;
      flex-direction: row-reverse;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
    }
     

    .accordion-nav img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
      margin-bottom: 0;
    }

    .accordion-nav-text {
      writing-mode: horizontal-tb;
      text-orientation: mixed;
      letter-spacing: normal;
      font-size: 18px;
    }

    .accordion-item.active {
      height: auto;
    }

    .accordion-item.active .accordion-content {
      /*min-height: 300px;*/
      font-size: 13px;
      width: 100%;
    }

    .grid-header,
    .grid-row {
      grid-template-columns: 70% 30%;
    }
    .more-text{
        color: #fff!important;
    }

    /* .grid-cell:nth-child(3) {
      display: none;
    } */
  }
  @media (max-width: 1200px) {
    .h-important .news-head h3 {
      font-size: 18px;
    }
  }


.top-bar {
    position: relative;
    z-index: 8;
    padding: 0 40px 0 20px;
    display: flex;
    flex-wrap: wrap;
    height: 45px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(179,199,213,0.6);
    font-size: 13px
}

.top-bar .top-bar-l a {
    position: relative;
    margin-right: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    height: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #3786b8, #6fc3b4)
}

.top-bar .top-bar-l a img {
    margin-top: 1px;
    margin-right: 8px
}

.top-bar .top-bar-l a:not(:last-child)::after {
    position: absolute;
    left: calc(100% + 20px);
    content: "";
    width: 1px;
    height: 16px;
    background-color: rgba(179,199,213,0.6)
}

.top-bar .top-bar-r {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.top-bar .top-bar-r .search-box {
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 20px;
    border: 1px solid rgba(179,199,213,0.6);
    border-top: none;
    border-bottom: none
}

.top-bar .top-bar-r .search-box img {
    width: 20px
}

.top-bar .top-bar-r .search-box button {
    font-size: 0;
    cursor: pointer
}

.top-bar .top-bar-r .search-box input {
    width: 100px;
    transition: .5s ease;
    color: #fff
}

.top-bar .top-bar-r .search-box input:focus {
    width: 300px
}

.top-bar .top-bar-r .search-box input::-webkit-input-placeholder {
    color: #cbcbcb
}

.top-bar .top-bar-r .login-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #cbcbcb
}

.top-bar .top-bar-r .login-links img {
    width: 20px;
    margin-right: 10px
}

.top-bar .top-bar-r .login-links a {
    display: flex;
    align-items: center;
    margin: 0 5px
}

.top-bar .top-bar-r .user {
    display: flex;
    align-items: center;
    height: 45px
}

.top-bar .top-bar-r .user .notice {
    position: relative;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    cursor: pointer
}

.top-bar .top-bar-r .user .notice .dot {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f54040
}

.top-bar .top-bar-r .user .notice.have-notice .dot {
    display: block
}

.top-bar .top-bar-r .user .notice:hover {
    background-color: #6fc3b4
}

.top-bar .top-bar-r .user .notice:hover .wrap {
    display: block
}

.top-bar .top-bar-r .user .avatar {
    position: relative
}

.top-bar .top-bar-r .user .avatar .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px
}

.top-bar .top-bar-r .user .avatar .pic img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 50%
}

.top-bar .top-bar-r .user .avatar .wrap {
    width: 150px;
    border: 1px solid #3c81b8;
    padding: 1px
}

.top-bar .top-bar-r .user .avatar .wrap a {
    padding: 10px 20px;
    display: block;
    color: #666666;
    font-size: 14px
}

.top-bar .top-bar-r .user .avatar .wrap a:hover {
    background-color: #3c81b8;
    color: #fff
}

.top-bar .top-bar-r .user .avatar:hover {
    background-color: #6fc3b4
}

.top-bar .top-bar-r .user .avatar:hover .wrap {
    display: block
}

.top-bar .top-bar-r .user .wrap {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    width: 260px;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1)
}

.top-bar .top-bar-r .user .wrap .head {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    border-bottom: 1px solid #dddddd
}

.top-bar .top-bar-r .user .wrap .head h4 {
    color: #333333
}

.top-bar .top-bar-r .user .wrap .head a {
    color: #666666
}

.top-bar .top-bar-r .user .wrap .list {
    padding: 10px 20px 0
}

.top-bar .top-bar-r .user .wrap .list a {
    display: flex;
    position: relative;
    padding: 10px 0;
    color: #666666;
    border-bottom: 1px solid #dddddd
}

.top-bar .top-bar-r .user .wrap .list a::before {
    margin-top: 6px;
    margin-right: 3px;
    flex-shrink: 0;
    content: "";
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 50%
}

.top-bar .top-bar-r .user .wrap .list a.new::before {
    background-color: #f54040
}

.top-bar .top-bar-r .user .wrap .list a p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666666
}

.top-bar .top-bar-r .user .wrap .list a p span {
    margin-right: 5px;
    color: #333333
}

.top-bar .top-bar-r .user .wrap .link {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #666666
}

.nav-wrap {
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-wrap .nav-logo {
    margin-right: 20px;
    flex: 1;
    height: 100%;
    align-items: center;
    display: none;
    z-index: 3
}

.nav-wrap .nav-logo img {
    max-width: 100%
}

.nav-wrap .nav {
    margin-left: -170px;
    padding: 0 40px 0 170px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    font-size: 15px
}

.nav-wrap .nav>div:last-child>a {
    margin-right: 0
}

.nav-wrap .nav>div>a {
    z-index: 7;
    position: relative;
    margin: 0 20px;
    padding-bottom: 10px;
    height: 60px;
    display: flex;
    align-items: center
}

.nav-wrap .nav>div>a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 5px;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    transform-origin: left center;
    transform: scaleX(0);
    transition: all .3s ease
}

.nav-wrap .nav>div>a.active {
    font-weight: bold
}

.nav-wrap .nav>div>a.active::before {
    transform: scaleX(1)
}

.nav-wrap .nav>div>a:hover::before {
    transform: scaleX(1)
}

.nav-wrap .nav>div:hover .sub {
    max-height: 600px;
    opacity: 1;
    transition: all .5s .2s ease-in
}

.nav-wrap .nav .sub {
    padding-left: 170px;
    max-height: 0;
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(20,39,53,0.8);
    overflow: hidden;
    transition: all .2s ease-in
}

.nav-wrap .nav .sub .wrap {
    padding: 130px 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.nav-wrap .nav .sub .wrap .list {
    display: flex;
    flex-wrap: wrap;
    width: 400px
}

.nav-wrap .nav .sub .wrap .list a {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 0;
    width: 33%
}

.nav-wrap .nav .sub .wrap .list a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0
}

.nav-wrap .nav .sub .wrap .list a.active,.nav-wrap .nav .sub .wrap .list a:hover {
    color: #3c81b8
}

.nav-wrap .nav .sub .wrap .hots {
    display: flex
}

.nav-wrap .nav .sub .wrap .hots a {
    margin-left: 65px;
    width: 265px
}

.nav-wrap .nav .sub .wrap .hots a .img-box::after {
    padding-bottom: 78.6%
}

.nav-wrap .nav .sub .wrap .hots a p {
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.h-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    user-select: none
}

.h-banner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    background: linear-gradient(rgba(0,0,0,0.5) 0, transparent 120px),rgba(1,1,1,0);
    z-index: 6
}

.h-banner #rev_slider {
    position: absolute;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer !important;
    object-fit: cover
}

.h-banner .logo {
    position: fixed;
    left: 10px;
    user-select: none;
    flex-shrink: 0;
    cursor: pointer
}

.h-banner .logo img {
    width: 140px;
    max-width: 100%
}

.h-banner .time-line-wrap {
    position: absolute;
    padding: 0 20px;
    bottom: 80px;
    right: 18%
}

.h-banner .time-line-wrap .time-line {
    position: relative;
    height: 80px;
    width: 2px;
    background-color: #fff;
    z-index: 2
}

.h-banner .time-line-wrap .time-line span {
    position: absolute;
    width: 10px !important;
    height: 10px;
    border-radius: 50%;
    background-color: inherit;
    left: -4px;
    top: 5px
}

.h-banner .control {
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 170px;
    height: 100%;
    text-align: center;
    padding: 35px 0 100px;
    background-color: rgba(20,39,53,0.8);
    user-select: none;
    z-index: 7
}

.h-banner .control .desc {
    padding-top: 260px;
    flex: 1;
    overflow: hidden;
    width: 100%
}

.h-banner .control .desc .text {
    text-transform: uppercase;
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 6px;
    transform-origin: 50% 50%;
    transform: rotate(90deg)
}

.h-banner .control .dots {
    margin-bottom: 10vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    height: 30px
}

.h-banner .control .dots span {
    margin: 0 7px;
    width: 4px;
    height: 14px;
    background-color: rgba(255,255,255,0.5);
    transition: all .5s ease;
    cursor: pointer
}

.h-banner .control .dots span.active {
    height: 30px;
    background-color: #6fc3b4
}

.h-banner .control .navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.h-banner .control .navigation>img {
    cursor: pointer;
    margin: 0 15px;
    transition: .3s ease-in-out
}

.h-banner .control .navigation>img:hover {
    transform: scale(1.3)
}

.h-banner .banner-desc {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    text-align: right;
    z-index: 3
}

.h-banner .banner-desc h2 {
    opacity: 0;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: normal
}

.h-banner .banner-desc h3 {
    opacity: 0;
    font-size: 50px;
    font-weight: normal
}

.h-company {
    padding: 60px 0
}

.h-company .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.h-company .intro-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 10%;
    width: 48%;
    color: #222222
}

.h-company .intro-desc h4 {
    font-size: 36px;
    color: #3c81b8;
    text-transform: uppercase
}

.h-company .intro-desc h5 {
    margin: 10px 0 50px;
    font-size: 24px
}

.h-company .intro-desc p {
    font-size: 14px;
    line-height: 2
}

.h-company .intro-desc a {
    justify-self: flex-end
}

.h-company .intro-pic {
    width: 51.2%;
    position: relative;
    overflow: hidden
}

.h-company .intro-pic::after {
    content: "";
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 78.1%
}

.h-company .intro-pic a {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer
}

.h-company .intro-pic a img {
    width: 100%;
    height: 100%;
    transition: all .5s linear
}

.h-company .intro-pic a:hover img {
    transform: scale(1.2)
}

.h-company .intro-pic a:first-child {
    display: block
}

.h-company .intro-total {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    text-align: center;
    color: #666666;
    font-size: 14px
}

.h-company .intro-total strong {
    color: #333333;
    font-size: 60px;
    font-weight: normal
}

.more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 50px;
    color: #fff;
    color: 14px;
    background-color: #3c81b8
}

.more::after {
    display: block;
    margin-left: 10px;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: currentColor;
    transition: all .3s linear
}

.more:hover::after {
    margin-left: 20px
}

.h-news {
    height: 800px;
    padding: 80px 0;
    background: url(https://img.cddc2021.com/static/home/img/news_bg.jpg) no-repeat;
    background-size: cover
}

.h-news .news-head {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.h-news .news-head h3 {
    font-size: 24px
}

.h-news .news-head h3 small {
    font-size: 18px;
    text-transform: uppercase
}

.h-news .news-head .news-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 18px;
    text-align: left
}

.h-news .news-head .news-tabs a {
    margin: 0 20px;
    height: 50px;
    transform: translateY(0);
    transition: all .2s ease
}

.h-news .news-head .news-tabs a:last-child {
    margin-right: 0;
    font-size: 20px;
    font-weight: bold
}

.h-news .news-head .news-tabs a:not(:last-child) span {
    display: inline-block;
    height: 100%;
    border-bottom: 0 solid #3c81b8
}

.h-news .news-head .news-tabs a:hover,.h-news .news-head .news-tabs a.active {
    transform: translateY(-5px)
}

.h-news .news-head .news-tabs a:hover span,.h-news .news-head .news-tabs a.active span {
    border-bottom-width: 4px
}

.h-news .news-list .img-box::after {
    padding-bottom: 78.94%
}

.h-news .news-list .swiper-slide {
    transition: transform .2s linear
}

.h-news .news-list .swiper-slide:hover {
    transform: translateY(-10px)
}

.h-news .news-list .swiper-slide:hover .news-desc {
    background-color: #3c81b8
}

.h-news .news-list .swiper-slide:hover .news-desc h5 {
    color: #fff
}

.h-news .news-list .swiper-slide:hover .news-desc p {
    color: #fff
}

.h-news .news-list .swiper-slide:hover .news-desc span {
    color: #fff
}

.h-news .news-list .news-desc {
    background-color: #fff;
    padding: 30px 15px 25px
}

.h-news .news-list .news-desc h5 {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222;
    transition: .2s linear
}

.h-news .news-list .news-desc p {
    margin: 10px 0 20px;
    font-size: 14px;
    color: #666;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: .2s linear
}

.h-news .news-list .news-desc span {
    font-size: 20px;
    color: #666;
    transition: .2s linear
}

.particles-wrap {
    position: relative
}

.particles-wrap #particles-js {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.h-video {
    position: relative;
    padding: 80px 0;
    background-color: #f3f7fc;
    overflow: hidden
}

.h-video .swiper-slide {
    position: relative;
    overflow: hidden
}

.h-video .swiper-slide .poster {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.h-video .swiper-slide::after {
    content: "";
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 51.66%
}

.h-video .swiper-slide .play_btn {
    position: absolute;
    left: calc(50% - 180px);
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(3,3,4,0.4);
    border-radius: 50%;
    transition: .5s ease;
    width: 100px
}

.h-video .swiper-slide:hover>img {
    box-shadow: 0 0 0 1200px rgba(3,3,4,0.4)
}

.h-video .btns {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    width: 110px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    z-index: 2
}

.h-video .btns span {
    height: 15px;
    width: 1px;
    background: #d8dee2
}

.h-video .btns img {
    cursor: pointer
}

.h-video .desc {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 360px;
    height: 100%;
    z-index: 2;
    background: rgba(89,194,175,0.904)
}

.h-video .desc h4 {
    margin-bottom: 20px;
    font-size: 22px
}

.h-video .desc h5 {
    font-size: 18px
}

.h-video .desc span {
    margin: 70px 0 30px;
    width: 35px;
    height: 4px;
    background: #fff
}

.h-video .desc p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 2
}

.h-landmark {
    font-size: 0
}

.h-landmark .current-landmark {
    position: relative;
    width: 100%;
    height: 730px
}

.h-landmark .current-landmark .swiper-slide {
    overflow: hidden
}

.h-landmark .current-landmark .swiper-slide img {
    width: 100%;
    height: 730px;
    object-fit: cover;
    transition: 1s linear 2s;
    transform: scale(1.1, 1.1)
}

.h-landmark .current-landmark .swiper-button-next {
    background-color: #6fc3b4 !important
}

.h-landmark .current-landmark .swiper-slide-active img,.h-landmark .current-landmark .swiper-slide-duplicate-active img {
    transition: 3s linear;
    transform: scale(1, 1)
}

.h-landmark .current-landmark .info {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 770px;
    z-index: 2
}

.h-landmark .current-landmark .info .control {
    margin-right: 55px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.h-landmark .current-landmark .info .control div {
    position: static !important;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3176ad;
    cursor: pointer;
    user-select: none
}

.h-landmark .current-landmark .info .control div::after {
    display: none
}

.h-landmark .current-landmark .info .control div .swiper-button-disabled {
    opacity: 1 !important
}

.h-landmark .current-landmark .info .desc {
    padding: 50px 45px;
    width: 770px;
    height: 270px;
    background-color: #fff
}

.h-landmark .current-landmark .info .desc span {
    padding: 3px 10px;
    display: inline-block;
    background-color: #63cab8;
    font-size: 14px
}

.h-landmark .current-landmark .info .desc h4 {
    margin: 15px 0 30px;
    color: #222222;
    font-size: 22px;
    display: flex;
    align-items: center
}

.h-landmark .current-landmark .info .desc h4::after {
    margin-left: 20px;
    content: "";
    font-size: 0;
    border: 6px solid transparent;
    border-left-color: var(--color)
}

.h-landmark .current-landmark .info .desc p {
    font-size: 14px;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.h-landmark .landmark-thumbs {
    height: 260px;
    background-color: #56a8b6
}

.h-landmark .landmark-thumbs .swiper-slide {
    position: relative;
    width: 385px
}

.h-landmark .landmark-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .1s linear;
    border: 0 solid #fff
}

.h-landmark .landmark-thumbs .swiper-slide.swiper-slide-thumb-active img {
    border-width: 3px
}

.h-landmark .landmark-thumbs .swiper-slide>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer
}

.h-landmark .landmark-thumbs .swiper-slide>div h4 {
    font-size: 18px;
    transition: .5s linear
}

.h-landmark .landmark-thumbs .swiper-slide>div span {
    padding: 3px 10px;
    font-size: 14px;
    transition: .5s ease;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, #63cab8 100%)
}

.h-landmark .landmark-thumbs .swiper-slide>div p {
    display: none
}

.h-landmark .landmark-thumbs .swiper-slide>div:hover h4 {
    transform: translateY(-50px)
}

.h-landmark .landmark-thumbs .swiper-slide>div:hover span {
    transform: translateY(50px)
}

.h-vr {
    display: none;
    padding: 70px 0
}

.h-vr>div {
    position: relative;
    font-size: 0
}

.h-vr .vr-info {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.h-vr .vr-info .vr-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 45px 35px;
    flex-shrink: 0;
    width: 360px;
    height: 100%;
    background-color: rgba(49,117,173,0.8)
}

.h-vr .vr-info .vr-title .head p:first-child {
    font-size: 22px
}

.h-vr .vr-info .vr-title .head p:last-child {
    font-size: 18px;
    color: rgba(255,255,255,0.8)
}

.h-vr .vr-info .vr-title .desc {
    font-size: 14px
}

.h-vr .vr-info .vr-title .desc h5 {
    position: relative;
    margin-bottom: 30px;
    font-size: 18px
}

.h-vr .vr-info .vr-title .desc h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: -30px;
    width: 2em;
    height: 4px;
    background-color: #6fc3b4
}

.h-vr .vr-info .vr-view {
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer
}

.h-vr .vr-info .vr-view img {
    background-color: rgba(3,3,4,0.4);
    box-shadow: 0 0 0 0 rgba(3,3,4,0.4);
    padding: 35px 10px;
    border-radius: 50%;
    transition: .5s ease
}

.h-vr .vr-info .vr-view:hover img {
    box-shadow: 0 0 0 450px rgba(3,3,4,0.4)
}

.h-recruit {
    background: url(https://img.cddc2021.com/static/home/img/rec_bg.jpg) no-repeat;
    background-size: 100%;
    height: 540px
}

.h-recruit .container {
    height: 100%
}

.h-recruit .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between
}

.h-recruit .recruit-info {
    margin-bottom: 100px;
    max-width: 380px
}

.h-recruit .recruit-info h4 {
    font-size: 24px
}

.h-recruit .recruit-info span {
    text-transform: uppercase;
    display: block;
    margin: 5px 0 30px;
    font-size: 18px;
    color: rgba(255,255,255,0.8)
}

.h-recruit .recruit-info p {
    font-size: 14px
}

.h-recruit .recruit-info a {
    margin-top: 30%
}

.h-recruit .recruit-list {
    display: flex
}

.h-recruit .recruit-list .list {
    margin-left: 20px;
    padding: 40px 60px 0;
    width: 360px
}

.h-recruit .recruit-list .list:nth-child(1) {
    background-color: rgba(49,117,173,0.9)
}

.h-recruit .recruit-list .list:nth-child(2) {
    background-color: #43baa5
}

.h-recruit .recruit-list .list a {
    display: block;
    margin-bottom: 40px
}

.h-recruit .recruit-list .list a p:first-child {
    margin-bottom: 15px;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.h-recruit .recruit-list .list a p:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px
}

.h-notice {
    padding: 70px 0
}

.h-notice .notice-top {
    height: 422px;
    display: flex;
    justify-content: space-between
}

.h-notice .notice-top .notice-main {
    padding: 20px 10px;
    flex: 1;
    max-width: 600px;
    background-color: #fff
}

.h-notice .notice-top .notice-main .notice-tabs {
    display: flex;
    align-items: baseline;
    font-size: 20px;
    background: linear-gradient(180deg, transparent 98%, #c9c9c9 98%)
}

.h-notice .notice-top .notice-main .notice-tabs>div {
    flex: 1
}

.h-notice .notice-top .notice-main .notice-tabs a {
    color: #222222;
    padding-bottom: 10px
}

.h-notice .notice-top .notice-main .notice-tabs a:not(:last-child) {
    border-bottom: 4px solid transparent
}

.h-notice .notice-top .notice-main .notice-tabs a:not(:last-child).active {
    font-size: 24px;
    border-bottom: 4px solid #3c81b8
}

.h-notice .notice-top .notice-main .notice-tabs a:first-child {
    margin-right: 50px
}

.h-notice .notice-top .notice-main .notice-tabs a:last-child {
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0;
    width: 18px;
    height: 0
}

.h-notice .notice-top .notice-main .notice-tabs a:last-child::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left-color: #6fc3b4
}

.h-notice .notice-top .notice-main .notice-list a {
    margin: 15px 0;
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 16px
}

.h-notice .notice-top .notice-main .notice-list a:hover {
    color: #6fc3b4
}

.h-notice .notice-top .notice-main .notice-list a::before {
    flex-shrink: 0;
    margin-right: 10px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #6fc3b4
}

.h-notice .notice-top .notice-main .notice-list a p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.h-notice .notice-top .notice-main .notice-list a div {
    flex: 1
}

.h-notice .notice-top .notice-main .notice-list a span {
    flex-shrink: 0;
    font-size: 14px;
    color: #666666
}

.h-notice .notice-type {
    display: flex;
    flex-shrink: 0
}

.h-notice .notice-type a {
    position: relative;
    margin-left: 20px;
    overflow: hidden
}

.h-notice .notice-type a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1)
}

.h-notice .notice-type a img {
    transition: 2s ease;
    transform: scale(1.2)
}

.h-notice .notice-type a>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.h-notice .notice-type a>div p:nth-child(1) {
    margin-bottom: 10px;
    font-size: 24px
}

.h-notice .notice-type a>div p:nth-child(2) {
    font-size: 18px;
    text-transform: uppercase
}

.h-notice .notice-type a:hover img {
    transform: scale(1)
}

.h-notice .notice-type.notice-type-alone {
    justify-content: space-between;
    margin-top: 20px
}

.h-notice .notice-type.notice-type-alone>a {
    margin: 0
}

.h-borther {
    padding: 10px;
    background-color: #fff
}

.h-borther h4 {
    position: relative;
    padding: 10px 0 20px;
    font-size: 24px;
    color: #222;
    border-bottom: 1px solid #f4f4f4
}

.h-borther h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4em;
    height: 3px;
    background-color: #3c81b8
}

.h-borther .list {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap
}

.h-borther .list>a {
    display: block;
    margin-bottom: 20px;
    position: relative;
    width: 33%;
    font-size: 16px;
    color: #333
}

.h-borther .list>a>p {
    display: flex;
    align-items: center;
    position: relative
}

.h-borther .list>a>p::before {
    margin-right: 5px;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #81c1b4
}

.h-borther .list>a>div {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    font-size: 13px;
    color: #666;
    min-width: 300px;
    background-color: #fff;
    z-index: 2
}

.h-borther .list>a>div img {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover
}

.h-borther .list>a>div>div {
    text-align: justify;
    flex: 1
}

.h-borther .list>a:hover {
    color: #3c81b8
}

.h-borther .list>a:hover>div {
    display: flex
}

.h-friend {
    padding: 50px 0;
    background-color: #efefef
}

.h-friend .swiper-slide {
    filter: grayscale(1);
    transition: .3s ease
}

.h-friend .swiper-slide:hover {
    filter: grayscale(0)
}

.h-friend .swiper-slide img {
    width: 100%
}

.footer {
    clear: both;
    padding: 50px 0;
    background-color: #303132
}

.footer .wrap {
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #4a4b4d
}

.footer .contact-info {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer .contact-info a {
    display: block
}

.footer .contact-info .wechat {
    position: relative
}

.footer .contact-info .wechat>div {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%
}

.footer .contact-info .wechat>div img {
    width: 120px
}

.footer .contact-info .wechat:hover div {
    display: block
}

.footer .contact {
    margin-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.footer .contact img {
    width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
    cursor: pointer
}

.footer .contact img:hover+div {
    display: block
}

.footer .contact .links {
    position: relative;
    margin-top: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    height: 30px;
    color: #a09f9f;
    font-size: 15px;
    background-color: #5b5d5f;
    cursor: pointer;
    z-index: 1
}

.footer .contact .links::after {
    display: block;
    margin-bottom: 5px;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: currentColor
}

.footer .contact .links .list {
    max-height: 0;
    padding: 0 10px;
    position: absolute;
    font-size: 14px;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #5b5d5f;
    overflow: hidden;
    transition: .5s linear
}

.footer .contact .links .list a {
    display: block;
    margin: 10px 0
}

.footer .contact .links .list a:hover {
    color: #fff
}

.footer .contact .links:hover .list {
    max-height: 800px
}

.footer .bottom-nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer .bottom-nav>ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 15px
}

.footer .bottom-nav>ul>li>a {
    margin-bottom: 10px
}

.footer .bottom-nav>ul a {
    display: block;
    padding: 7px 0
}

.footer .bottom-nav>ul a:hover {
    color: #fff
}

.footer .bottom-nav>ul ul {
    color: #a09f9f;
    font-size: 13px
}

.footer .copy-right {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #d1d1d1
}

.footer .copy-right .cr {
    display: flex;
    align-items: center
}

.footer .copy-right .links {
    display: flex;
    align-items: center
}

.footer .copy-right .links a {
    padding: 0 20px
}

.footer .copy-right .links a:not(:last-child) {
    border-right: 1px solid #4a4b4d
}

.other-banner {
    position: relative;
    font-size: 0;
    min-height: 600px
}

.other-banner::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5) 0, transparent 120px),rgba(1,1,1,0.1)
}

.other-banner>img {
    min-height: 600px;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.other-banner>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 1;
    font-weight: bold
}

.other-banner>div h2 {
    font-size: 50px
}

.other-banner .search {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 53.125%
}

.other-banner .search div {
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 70px;
    width: 78.43137255%;
    background-color: #fff
}

.other-banner .search div input {
    padding: 0 20px;
    flex: 1;
    font-size: 20px
}

.other-banner .search a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 19.60784314%;
    background-color: #3176ad;
    font-size: 18px
}

.third-nav {
    background-color: #3176ad
}

.third-nav .container {
    display: flex;
    align-items: center;
    justify-content: center
}

.third-nav a {
    display: block;
    margin: 0 20px;
    font-size: 16px;
    padding: 0 20px;
    height: 60px;
    line-height: 60px
}

.third-nav a:hover,.third-nav a.active {
    background-color: #6fc3b4
}

.intro-1 {
    padding: 80px 0;
    background-color: #fff
}

.intro-1 .wrap {
    display: flex;
    justify-content: space-between
}

.intro-1 .intro {
    padding-right: 70px;
    flex: 1
}

.intro-1 .intro h2 {
    color: #3176ad;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: normal
}

.intro-1 .intro h3 {
    font-size: 30px;
    color: #333333;
    font-weight: normal
}

.intro-1 .intro p {
    color: #666666;
    font-size: 14px;
    line-height: 2
}

.intro-1 .pic {
    flex-shrink: 0;
    overflow: hidden
}

.intro-1 .pic a {
    display: block;
    width: 100%
}

.intro-1 .pic a:not(:first-child) {
    display: none
}

.intro-1 .pic img {
    width: 100%;
    transition: .3s ease-in;
    cursor: pointer
}

.intro-1 .pic:hover img {
    transform: scale(1.1)
}

.intro-2 {
    padding: 90px 0 150px;
    height: 900px;
    background: url(https://img.cddc2021.com/static/home/img/p_3.jpg) top / 1980px auto no-repeat;
    background-size: 100% 100%
}

.intro-2 .info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 130px;
    text-align: right
}

.intro-2 .info p {
    width: 50%;
    font-size: 14px;
    line-height: 2
}

.intro-2 .info h2,.intro-2 .info h3 {
    font-size: 30px;
    font-weight: normal
}

.intro-2 .info span {
    display: inline-block;
    padding: 5px 10px;
    font-size: 18px;
    background: #6fc3b4
}

.intro-2 .crux-list {
    display: flex;
    justify-content: space-between
}

.intro-2 .crux-list>div {
    display: flex;
    justify-content: center;
    position: relative
}

.intro-2 .crux-list>div:not(:last-child) {
    padding-right: 30px
}

.intro-2 .crux-list>div:not(:last-child)::after {
    position: absolute;
    top: 15%;
    right: 0;
    content: "";
    width: 1px;
    height: 70%;
    background: #94acbb
}

.intro-2 .crux-list span {
    font-size: 14px
}

.intro-2 .crux-list p {
    margin-top: 30px;
    font-size: 22px
}

.intro-2 .crux-list small {
    position: absolute;
    top: 130%;
    left: 0;
    width: 100%;
    color: rgba(255,255,255,0.8);
    line-height: 2
}

.intro-3 {
    position: relative;
    padding: 80px 0;
    min-height: 900px;
    background: #fff
}

.intro-3 .info {
    margin-bottom: 30px;
    padding-right: 20px;
    width: 50%
}

.intro-3 .info h2 {
    font-size: 30px;
    color: #6fc3b4;
    font-weight: normal
}

.intro-3 .info h3 {
    font-size: 30px;
    color: #3176ad;
    font-weight: normal
}

.intro-3 .info p {
    color: #666666;
    font-size: 14px
}

.intro-3 .years {
    padding-right: 20px;
    padding-left: 10px;
    width: 50%
}

.intro-3 .years>div {
    padding-bottom: 40px;
    position: relative;
    padding-left: 30px;
    border-left: 1px solid rgba(0,0,0,0.2)
}

.intro-3 .years>div::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 23px;
    width: 11px;
    height: 11px;
    background: #3176ad;
    border-radius: 50%
}

.intro-3 .years>div h5 {
    color: #3176ad
}

.intro-3 .years>div h5 span {
    display: inline-block;
    margin: 0 5px;
    font-size: 36px
}

.intro-3 .years>div p {
    color: #222222;
    font-size: 14px;
    line-height: 2
}

.intro-3>img {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    object-fit: cover
}

.intro-4 {
    padding: 150px 0;
    background: url(https://img.cddc2021.com/static/home/img/p_5.jpg);
    background-size: cover;
    height: 850px
}

.intro-4 .info {
    margin: 0 auto;
    max-width: 930px;
    text-align: center
}

.intro-4 .info h4 {
    font-size: 30px
}

.intro-4 .info h4:first-child {
    opacity: .6 !important
}

.intro-4 .info p {
    line-height: 2;
    font-size: 14px
}

.intro-4 .result {
    margin: 0 auto;
    padding: 20px 35px;
    max-width: 550px;
    background: rgba(49,117,173,0.8);
    line-height: 2
}

.leader {
    padding: 60px 0;
    font-size: 30px
}

.leader .list {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.leader .list>a {
    margin-bottom: 30px;
    display: flex;
    align-items: stretch;
    width: 49%
}

.leader .list .img-box {
    flex-shrink: 0;
    width: 500px
}

.leader .list .img-box::after {
    padding-bottom: 73.4%
}

.leader .list .desc {
    flex: 1;
    background: #fff;
    padding: 50px 80px;
    color: #444444;
    font-size: 14px;
    text-align: center
}

.leader .list .desc h4 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #222222
}

.leader .list .desc h5 {
    position: relative;
    margin-bottom: 30px
}

.leader .list .desc h5::after {
    position: absolute;
    left: calc(50% - 1.5em);
    margin-top: 20px;
    display: block;
    content: "";
    height: 2px;
    width: 3em;
    background: #3176ad
}

.leader .list .desc p {
    display: none
}

.organization {
    padding: 60px 0
}

.organization .info {
    text-align: center
}

.organization .info p {
    margin-bottom: 50px;
    color: #666666;
    font-size: 14px;
    line-height: 2
}

.organization .info p:nth-child(1) {
    padding: 0 20%
}

.organization .info p:nth-child(2) {
    padding: 0 10%
}

.organization .all img {
    width: 100%
}

.organization .all img:nth-child(2) {
    display: none
}

.culture {
    padding: 60px 0
}

.culture .info {
    display: flex;
    align-items: stretch
}

.culture .info .img-box {
    width: 58.75%;
    flex-shrink: 0
}

.culture .info .img-box::after {
    padding-bottom: 73.7%
}

.culture .info .desc {
    padding: 0 30px;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    line-height: 2
}

.culture .info .desc h6 {
    margin-bottom: 30px;
    color: #222222;
    font-size: 16px;
    font-weight: bold
}

.culture .info .desc p {
    width: 100%;
    font-size: 14px;
    color: #444444
}

.culture .info .desc p span {
    color: #3176ad
}

.events {
    padding: 60px 0
}

.events .swiper-container-wrap {
    position: relative
}

.events .swiper-container-wrap::after {
    position: absolute;
    left: 0;
    top: 258px;
    content: "";
    height: 4px;
    width: 100%;
    background: rgba(49,117,173,0.2)
}

.events .swiper-container-wrap .swiper-slide {
    color: #444444;
    background: url(https://img.cddc2021.com/static/home/img/i_13.png) no-repeat;
    background-size: 100% auto;
    height: 500px;
    width: 338px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.events .swiper-container-wrap .swiper-slide:nth-child(even) {
    background-image: url(https://img.cddc2021.com/static/home/img/i_14.png)
}

.events .swiper-container-wrap .swiper-slide>div {
    padding-right: 20px
}

.events .swiper-container-wrap .swiper-slide>div h4 {
    color: #3176ad;
    font-size: 36px;
    font-weight: bold
}

.events .swiper-container-wrap .swiper-slide>div p {
    color: #444444;
    font-size: 14px;
    line-height: 2
}

.events .swiper-container-wrap .swiper-slide>div:nth-child(1) {
    padding-left: 20px
}

.events .swiper-container-wrap .swiper-slide>div:nth-child(2) {
    padding-left: 60px;
    margin-top: 100px
}

.events .swiper-container-wrap .swiper-button-next,.events .swiper-container-wrap .swiper-button-prev {
    top: 258px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6fc3b4
}

.events .swiper-container-wrap .swiper-button-next::after,.events .swiper-container-wrap .swiper-button-prev::after {
    font-size: 24px;
    color: #fff;
    font-weight: bold
}

.events .swiper-container-wrap .swiper-button-prev {
    left: 50px
}

.events .swiper-container-wrap .swiper-button-next {
    right: 50px
}

.events .swiper-wrapper-phone {
    display: none;
    position: relative;
    padding: 60px 3vw;
    flex-wrap: wrap
}

.events .swiper-wrapper-phone .line {
    position: absolute;
    margin-left: -1px;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #cedeeb;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.events .swiper-wrapper-phone .line img {
    margin-left: -25px;
    flex-shrink: 0;
    width: 50px
}

.events .swiper-wrapper-phone .swiper-slide {
    position: relative;
    margin-bottom: 20px;
    width: 100%
}

.events .swiper-wrapper-phone .swiper-slide::after {
    position: absolute;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 9px;
    background: #3176ad;
    content: ""
}

.events .swiper-wrapper-phone .swiper-slide:nth-child(2n + 1) {
    padding-left: 60%
}

.events .swiper-wrapper-phone .swiper-slide:nth-child(2n + 1)::after {
    left: 50%;
    margin-left: -4px
}

.events .swiper-wrapper-phone .swiper-slide:nth-child(2n) {
    text-align: right;
    padding-right: 60%
}

.events .swiper-wrapper-phone .swiper-slide:nth-child(2n) h4 {
    color: #6fc3b4
}

.events .swiper-wrapper-phone .swiper-slide:nth-child(2n)::after {
    right: 50%;
    margin-right: -4px;
    background: #6fc3b4
}

.events .swiper-wrapper-phone .swiper-slide h4 {
    margin-bottom: 10px;
    color: #3176ad;
    font-size: 18px;
    font-weight: bold
}

.events .swiper-wrapper-phone .swiper-slide p {
    color: #444444;
    font-size: 12px;
    line-height: 2
}

.honor {
    padding: 60px 0
}

.honor .list {
    display: flex;
    flex-wrap: wrap
}

.honor .list>div {
    margin-right: 25px;
    margin-bottom: 20px;
    display: inline-block;
    width: 23.33333333%
}

.honor .list>div:nth-child(4n) {
    margin-right: 0
}

.honor .list>div p {
    padding: 20px 0;
    color: #222222;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.honor .list .img-box img {
    object-fit: contain
}

.honor .list .img-box img:hover {
    transform: scale(1)
}

.honor .list .img-box::after {
    padding-bottom: 100%
}

.expert .list {
    display: flex;
    flex-wrap: wrap
}

.expert .list>div {
    margin-right: 25px;
    margin-bottom: 20px;
    display: inline-block;
    width: 23.33333333%;
    text-align: center
}

.expert .list>div:nth-child(4n) {
    margin-right: 0
}

.expert .list>div .desc {
    padding: 15px 5px
}

.expert .list>div .desc h5 {
    color: #222222;
    font-size: 20px
}

.expert .list>div .desc h6 {
    margin-bottom: 15px;
    padding: 10px 0;
    font-size: 14px;
    color: #444444;
    position: relative
}

.expert .list>div .desc h6::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1em;
    content: "";
    width: 2em;
    height: 2px;
    background: #3176ad
}

.expert .list>div .desc p {
    font-size: 14px;
    color: #444444;
    text-align: left;
    overflow-y: auto;
    max-height: 100px
}

.expert .list .img-box {
    width: 100%
}

.expert .list .img-box img {
    object-fit: contain
}

.expert .list .img-box img:hover {
    transform: scale(1)
}

.expert .list .img-box::after {
    padding-bottom: 100%
}

.awards .list a {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    color: #222
}

.awards .list a .date {
    padding: 0 30px
}

.awards .list a .date p:first-child {
    font-size: 36px
}

.awards .list a .date p:first-child span {
    font-size: 16px;
    color: #6fc3b4
}

.awards .list a .desc {
    flex: 1;
    color: #666
}

.awards .list a:hover h4 {
    color: #3176ad;
    font-weight: bold
}

.awards .list .img-box {
    flex-shrink: 0;
    width: 130px
}

.awards .list .img-box::after {
    padding-bottom: 78.4%
}

.awards .list .desc h4 {
    margin-bottom: 10px;
    font-size: 20px
}

.ecology .list {
    display: flex;
    flex-wrap: wrap
}

.ecology .list::after {
    content: "";
    width: 31.66666667%
}

.ecology .list a {
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
    padding: 25px 20px;
    width: 31.66666667%;
    background: #fff;
    color: #222;
    overflow: hidden;
    transition: .5s ease-in
}

.ecology .list a:nth-child(3n) {
    margin-right: 0
}

.ecology .list a::before {
    position: absolute;
    left: 20px;
    top: 0;
    width: 100%;
    height: 5px;
    background: #3176ad;
    content: "";
    transform-origin: left;
    transform: scaleX(.2);
    transition: .3s ease-in
}

.ecology .list a .img-box::after {
    padding-bottom: 73.5%
}

.ecology .list a .desc p span {
    font-size: 36px
}

.ecology .list a .desc p i {
    margin: 0 5px;
    display: inline-block;
    font-size: 22px;
    font-style: normal;
    color: #6fc3b4
}

.ecology .list a .desc h4 {
    margin-bottom: 10px;
    font-size: 20px;
    min-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 600
}

.ecology .list a .mr {
    text-indent: 0;
    margin-top: 20px;
    display: inline-block;
    color: #3176ad;
    font-size: 14px;
    transition: all .5s linear
}

.ecology .list a .mr::after {
    display: block;
    margin-left: 10px;
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #6fc3b4;
    -webkit-transition: all .3s linear;
    transition: all .5s linear
}

.ecology .list a:hover {
    background: #3176ad;
    color: #fff
}

.ecology .list a:hover::before {
    left: 0;
    transform: scaleX(1);
    background-color: #6fc3b4
}

.ecology .list a:hover .mr {
    text-indent: 130px;
    color: #fff
}

.ecology .list a:hover .mr::after {
    border-left-color: #fff
}

.pd60 {
    padding: 60px 0
}

.title {
    padding-bottom: 30px;
    font-size: 30px
}

.title h2 {
    color: rgba(49,117,173,0.199);
    text-transform: uppercase
}

.title h3 {
    color: #333333
}

img.lazyload:not([src]) {
    visibility: hidden
}

.img-box {
    position: relative;
    overflow: hidden
}

.img-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all .5s linear;
    object-fit: cover
}

.img-box img:hover {
    transform: scale(1.2)
}

.img-box::after {
    content: "";
    display: block;
    height: 0;
    width: 100%
}

.go-top {
    display: none;
    position: fixed;
    right: 115px;
    bottom: 110px;
    cursor: pointer;
    z-index: 99
}

.page-wrap {
    padding: 50px 0;
    text-align: center
}

.page-wrap #page {
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    background-color: #3176ad;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    user-select: none
}

.page-wrap #page a,.page-wrap #page span {
    margin: 0 10px;
    width: 30px;
    font-weight: bold
}

.page-wrap #page a.active,.page-wrap #page span.active {
    background-color: #6fc3b4;
    height: 40px;
    line-height: 40px;
    align-self: flex-end;
    font-style: italic
}

.page-wrap #page .jump-ipt {
    width: 40px;
    background-color: #448daf;
    color: #fff
}

.news .list a {
    margin-bottom: 30px;
    position: relative;
    padding: 40px 40px 40px 50px;
    display: flex;
    justify-content: space-between;
    transition: .5s ease;
    background-color: #fff
}

.news .list a::before {
    position: absolute;
    left: 20px;
    top: 0;
    content: "";
    width: calc(100% - 40px);
    height: 5px;
    background-color: #3176ad;
    transform-origin: left;
    transform: scaleX(.25);
    transition: .5s ease
}

.news .list a .img-box {
    flex-shrink: 0;
    width: 460px
}

.news .list a .img-box::after {
    padding-bottom: 78.2%
}

.news .list a .desc {
    max-width: 50%;
    color: #222222
}

.news .list a .desc .time p {
    line-height: initial
}

.news .list a .desc .time p i {
    color: #6fc3b4;
    font-size: 16px
}

.news .list a .desc .time p:first-child {
    font-size: 36px
}

.news .list a .desc h4 {
    margin: 20px 0;
    font-size: 20px;
    font-weight: bold
}

.news .list a .desc>p {
    font-size: 14px;
    line-height: 2;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.news .list a .desc>span {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #3176ad;
    font-size: 14px;
    background-color: transparent;
    transition: .5s ease
}

.news .list a .desc>span::after {
    margin-left: 10px;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #6fc3b4;
    transition: all .3s linear
}

.news .list a .desc>span:hover::after {
    margin-left: 20px
}

.news .list a:hover {
    background-color: #fff;
    border-color: transparent
}

.news .list a:hover::before {
    transform: scaleX(1)
}

.news .list a:hover .desc h4 {
    color: #3176ad
}

.news .list a:hover .desc>span {
    padding: 0 20px;
    background-color: #3176ad;
    color: #fff
}

.news .page-wrap {
    padding: 50px;
    text-align: left
}

.news-info {
    padding: 130px 0 60px
}

.news-info.project-info {
    padding-top: 30px
}

.news-info .back {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: #444444
}

.news-info .back img {
    margin-right: 10px
}

.news-info .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.news-info .wrap .info {
    padding: 20px;
    width: 64.16666667%;
    background: #fff
}

.news-info .wrap .info .info-title {
    margin-bottom: 40px;
    padding-bottom: 40px;
    position: relative;
    color: #222;
    border-bottom: 4px solid #3c81b8
}

.news-info .wrap .info .info-title h3 {
    font-size: 24px
}

.news-info .wrap .info .info-title .share {
    margin-top: 10px;
    display: flex;
    align-items: center;
    color: #666666;
    font-size: 13px
}

.news-info .wrap .info .info-title .share span {
    margin-right: 30px
}

.news-info .wrap .info .info-title .share>div {
    margin-right: 10px;
    display: flex;
    align-items: center;
    color: #6fc3b4
}

.news-info .wrap .info .info-title .share>div>img {
    margin-right: 5px
}

.news-info .wrap .info .info-title .date {
    position: absolute;
    left: -40px;
    top: -20px;
    transform: translateX(-100%);
    width: 80px;
    height: calc(100% - 40px);
    background-color: #3c81b8
}

.news-info .wrap .info .info-title .date P {
    color: #fff;
    text-align: center
}

.news-info .wrap .info .info-title .date P:first-child {
    font-size: 36px
}

.news-info .wrap .info .info-title .date P:first-child i {
    color: #6fc3b4;
    font-size: 16px
}

.news-info .wrap .info .richtext {
    color: #666
}

.news-info .wrap .info .richtext * {
    max-width: 100%;
    text-wrap: auto !important;
}

.news-info .wrap .recommend {
    padding: 25px 20px;
    width: 330px;
    background-color: #fff
}

.news-info .wrap .recommend h4 {
    display: flex;
    align-items: center;
    color: #181411;
    font-weight: bold
}

.news-info .wrap .recommend h4::before {
    margin-right: 10px;
    content: "";
    width: 4px;
    height: 1em;
    background-color: #3176ad
}

.news-info .wrap .recommend .list {
    margin-top: 30px
}

.news-info .wrap .recommend .list a {
    margin-bottom: 30px;
    display: block
}

.news-info .wrap .recommend .list a .img-box::after {
    padding-bottom: 79.3%
}

.news-info .wrap .recommend .list a h5 {
    padding: 10px 0 5px;
    color: #222222
}

.news-info .wrap .recommend .list a p {
    color: #666666;
    font-size: 14px
}

.picture .wrap {
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.picture .wrap .search {
    display: flex;
    align-items: center;
    width: 40%;
    border-bottom: 1px solid #bbbbbb
}

.picture .wrap .search input {
    flex: 1;
    height: 50px
}

.picture .grid {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 14px
}

.picture .grid .grid-item {
    font-size: 0;
    display: block;
    position: relative;
    width: 32.5%;
    overflow: hidden;
    cursor: pointer
}

.picture .grid .grid-item .img-box::after {
    padding-bottom: 76.92307692%
}

.picture .grid .grid-item img {
    width: 100%
}

.picture .grid .grid-item p {
    line-height: 40px;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    font-size: 18px;
    color: #fff;
    text-align: center;
    transition: .5s ease-out;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.picture .grid .grid-item:hover p {
    bottom: 20px
}

.activity {
    padding: 120px 0 60px
}

.activity .tabs-wrap {
    background-color: #fff
}

.activity .tabs {
    padding-top: 40px;
    padding-left: 85px;
    height: 88px;
    display: flex;
    align-items: center;
    background-color: #fff
}

.activity .tabs a {
    position: relative;
    margin-right: 50px;
    height: 100%;
    color: #333;
    font-weight: bold
}

.activity .tabs a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    content: "";
    background: #3176ad;
    transform: scaleX(0);
    transition: .3s linear
}

.activity .tabs a:hover::before,.activity .tabs a.active::before {
    transform: scaleX(1)
}

.activity .activity-list {
    padding: 35px 50px
}

.activity-list {
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.activity-list a {
    margin-bottom: 50px;
    width: 47.2%
}

.activity-list a .img-box span {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    color: #fff;
    font-size: 15px;
    background: rgba(0,1,1,0.4)
}

.activity-list a .img-box::after {
    padding-bottom: 57.769%
}

.activity-list a .desc {
    padding: 15px 0 15px 15px;
    background: #fff
}

.activity-list a h3 {
    color: #222222;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.activity-list a .time {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    font-size: 15px
}

.activity-list a .time span {
    padding: 3px 10px;
    background-color: #6fc3b4;
    color: #fff
}

.activity-list a .time span.end {
    background-color: #bbbbbb
}

.activity-list a .visit {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #999999
}

.activity-list a .visit span {
    padding-left: 25px;
    margin-right: 40px
}

.activity-list a .visit span:nth-child(1) {
    background: url(https://img.cddc2021.com/static/home/img/i_17.png) left center no-repeat
}

.activity-list a .visit span:nth-child(2) {
    padding-left: 20px;
    background: url(https://img.cddc2021.com/static/home/img/i_20.png) left center no-repeat
}

.activity-list a .visit span:nth-child(3) {
    background: url(https://img.cddc2021.com/static/home/img/i_22.png) left center no-repeat
}

.activity-list a:hover .desc {
    background: #3176ad;
    border-color: #3176ad !important
}

.activity-list a:hover .desc h3 {
    color: #fff
}

.activity-list a:hover .desc .time {
    color: #fff
}

.activity-list a:hover .desc .visit {
    color: #fff
}

.activity-list a:hover .desc .visit span:nth-child(1) {
    background: url(https://img.cddc2021.com/static/home/img/i_18.png) left center no-repeat
}

.activity-list a:hover .desc .visit span:nth-child(2) {
    padding-left: 20px;
    background: url(https://img.cddc2021.com/static/home/img/i_19.png) left center no-repeat
}

.activity-list a:hover .desc .visit span:nth-child(3) {
    background: url(https://img.cddc2021.com/static/home/img/i_21.png) left center no-repeat
}

.activity-info {
    padding: 50px 0 60px
}

.activity-info .info {
    display: flex;
    justify-content: space-between
}

.activity-info .info .img-box {
    width: 56.66666667%
}

.activity-info .info .img-box::after {
    padding-bottom: 64.70588235%
}

.activity-info .info .img-box span {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    color: #fff;
    font-size: 15px;
    background: rgba(0,1,1,0.4)
}

.activity-info .info .desc {
    padding: 30px 30px 20px;
    width: 41.66666667%;
    background-color: #fff
}

.activity-info .info .desc h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #222222;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.activity-info .info .desc>p {
    text-align: justify;
    position: relative;
    margin-bottom: 20px;
    color: #666666;
    font-size: 14px;
    line-height: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3
}

.activity-info .info .desc .time {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 15px;
    color: #999999
}

.activity-info .info .desc .time>div p {
    margin-bottom: 10px
}

.activity-info .info .desc .time>div p span {
    color: #333
}

.activity-info .info .desc .time>div .visit {
    display: flex;
    align-items: center
}

.activity-info .info .desc .time>div .visit span {
    padding-left: 25px;
    margin-right: 40px
}

.activity-info .info .desc .time>div .visit span:nth-child(1) {
    background: url(https://img.cddc2021.com/static/home/img/i_17.png) left center no-repeat
}

.activity-info .info .desc .time>div .visit span:nth-child(2) {
    padding-left: 20px;
    background: url(https://img.cddc2021.com/static/home/img/i_20.png) left center no-repeat
}

.activity-info .info .desc .time>div .visit span:nth-child(3) {
    background: url(https://img.cddc2021.com/static/home/img/i_22.png) left center no-repeat
}

.activity-info .info .desc .time>span {
    color: #fff;
    padding: 5px 10px;
    background-color: #6fc3b4
}

.activity-info .info .desc .rule {
    margin-top: 20px;
    border-top: 1px solid #dddddd;
    display: flex;
    align-items: center
}

.activity-info .info .desc .rule a {
    margin-right: 10%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #666666
}

.activity-info .info .desc .rule a img {
    margin-right: 10px
}

.activity-info .info .desc .tools {
    margin-top: 20px;
    display: flex;
    align-items: center
}

.activity-info .info .desc .tools .up {
    padding: 10px 40px;
    background-color: #3176ad;
    color: #fff
}

.activity-info .info .desc .tools .share {
    margin-left: 30px;
    display: flex;
    align-items: center;
    color: #333333
}

.activity-info .info .desc .tools .share>img {
    margin-right: 10px
}

.activity-info .filter {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd
}

.activity-info .filter .left {
    display: flex;
    align-items: center
}

.activity-info .filter .total {
    margin-right: 50px;
    color: #333333
}

.activity-info .filter .total span {
    margin-left: 10px;
    font-size: 24px
}

.activity-info .filter .search {
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 36px;
    width: 300px;
    border-radius: 36px;
    line-height: 36px;
    border: 1px solid #999999
}

.activity-info .filter .search input {
    width: 90%
}

.activity-info .filter .types {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 16px
}

.activity-info .filter .types a {
    margin-left: 50px
}

.activity-info .filter .types a.active {
    color: #6fc3b4
}

.activity-info .list {
    display: flex;
    flex-wrap: wrap
}

.activity-info .list .img-box {
    width: 100%
}

.activity-info .list .img-box::after {
    padding-bottom: 85.96491228%
}

.activity-info .list .img-box div {
    padding: 10px 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3176ad;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px
}

.activity-info .list .img-box div>img {
    margin: 0;
    text-align: center;
    width: 18px;
    position: static
}

.activity-info .list a {
    margin-bottom: 20px;
    width: 23.75%;
    background-color: #fff
}

.activity-info .list a:not(:nth-child(4n)) {
    margin-right: 20px
}

.activity-info .list a:hover {
    background-color: #3176ad
}

.activity-info .list a:hover .desc>i {
    color: #fff
}

.activity-info .list a:hover .desc h3 {
    color: #fff
}

.activity-info .list a:hover .desc p {
    color: #fff
}

.activity-info .list a:hover .desc .visit {
    color: #fff
}

.activity-info .list a:hover .desc .user {
    color: #fff
}

.activity-info .list a:hover .desc .user span {
    color: #fff
}

.activity-info .list a:hover .desc .user i {
    color: #fff
}

.activity-info .list .desc {
    padding: 20px 10px 0
}

.activity-info .list .desc>i {
    color: #666;
    font-size: 12px
}

.activity-info .list .desc h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #222222
}

.activity-info .list .desc p {
    margin-bottom: 10px;
    color: #999999;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.activity-info .list .desc .visit {
    display: inline-block;
    color: #999999;
    font-size: 15px;
    padding-left: 25px;
    background: url(https://img.cddc2021.com/static/home/img/i_17.png) left center no-repeat
}

.activity-info .list .user {
    margin-top: 10px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #d5dfe6;
    color: #999999;
    font-size: 15px
}

.activity-info .list .user img {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover
}

.activity-info .list .user>div {
    display: flex;
    align-items: center
}

.activity-info .list .user>div span {
    color: #333333;
    display: block
}

.activity-info .list .user>div i {
    display: inline-block;
    color: #3176ad;
    font-size: 12px
}

.activity-works {
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #fff
}

.activity-works .head {
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d5dfe6
}

.activity-works .head .desc {
    padding-right: 50px;
    flex: 1
}

.activity-works .head .desc h3 {
    font-size: 24px;
    color: #222222
}

.activity-works .head .desc>span {
    color: #666;
    font-size: 14px
}

.activity-works .head .desc>p {
    margin: 10px 0 20px;
    color: #666666;
    font-size: 14px;
    line-height: 2
}

.activity-works .head .desc .visit {
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #999999
}

.activity-works .head .desc .visit>p {
    margin-right: 60px
}

.activity-works .head .desc .visit>p span {
    color: #333333
}

.activity-works .head .desc .visit>span {
    padding-left: 25px;
    margin-right: 50px
}

.activity-works .head .desc .visit>span:nth-of-type(1) {
    background: url(https://img.cddc2021.com/static/home/img/i_17.png) left center no-repeat
}

.activity-works .head .desc .visit>span:nth-of-type(2) {
    padding-left: 20px;
    background: url(https://img.cddc2021.com/static/home/img/like_1.png) left center no-repeat
}

.activity-works .head .desc .visit>div {
    display: flex;
    align-items: center
}

.activity-works .head .desc .visit>div .social-share {
    margin-top: 8px
}

.activity-works .head .user {
    padding-left: 30px;
    display: flex;
    align-items: center;
    border-left: 1px solid #dddddd
}

.activity-works .head .user img {
    margin-right: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover
}

.activity-works .head .user div {
    font-size: 20px;
    color: #222222
}

.activity-works .head .user div span {
    display: inline-block;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    border-radius: 20px;
    background: #3176ad;
    font-size: 12px;
    color: #fff
}

.activity-works .head .user div p:last-child {
    margin-top: 10px;
    color: #999999;
    font-size: 14px
}

.activity-works .list {
    padding: 50px 90px
}

.activity-works .list img {
    margin-bottom: 30px;
    width: 100%
}

.activity-works .like {
    text-align: center
}

.activity-works .like a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3176ad;
    height: 80px;
    width: 190px;
    border-radius: 80px;
    font-size: 20px
}

.activity-works .like a img {
    margin-right: 10px;
    width: 25px
}

.duty {
    padding: 60px 0
}

.duty .list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between
}

.duty .item {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.duty .item.hot {
    margin-bottom: 50px;
    width: 100%
}

.duty .item.hot .img-box {
    width: 50%
}

.duty .item.hot .img-box::after {
    padding-bottom: 70%
}

.duty .item.hot .desc {
    padding: 50px;
    width: 50%;
    background: #3176ad;
    color: #fff
}

.duty .item.hot .desc .time {
    line-height: initial
}

.duty .item.hot .desc .time p:first-child {
    font-size: 36px
}

.duty .item.hot .desc .time p:first-child span {
    color: #6fc3b4;
    font-size: 16px
}

.duty .item.hot .desc h3 {
    font-size: 20px;
    margin: 30px 0
}

.duty .item:not(.hot) {
    margin-bottom: 20px;
    padding: 20px;
    width: calc(50% - 10px);
    border: 1px solid #d8e1e7;
    transition: .3s linear
}

.duty .item:not(.hot) .img-box {
    width: 46%
}

.duty .item:not(.hot) .img-box::after {
    padding-bottom: 70.23809524%
}

.duty .item:not(.hot) .desc {
    padding-left: 20px;
    flex: 1;
    color: #222222;
    transition: .3s linear
}

.duty .item:not(.hot) .desc h3 {
    margin-bottom: 20px;
    font-size: 20px
}

.duty .item:not(.hot):hover {
    background: #3176ad
}

.duty .item:not(.hot):hover .desc {
    color: #fff
}

.contact-wrap {
    padding: 60px 0
}

.contact-wrap .contact {
    padding: 35px;
    background: #fff;
    display: flex;
    justify-content: space-between
}

.contact-wrap .contact .form {
    padding-right: 50px;
    width: 40.5%;
    font-size: 16px
}

.contact-wrap .contact .form h3 {
    color: #222222;
    font-size: 24px
}

.contact-wrap .contact .form h3::after {
    margin: 30px 0 50px;
    display: block;
    content: "";
    width: 3em;
    height: 4px;
    background: #3176ad
}

.contact-wrap .contact .form input {
    padding: 10px 15px;
    margin-bottom: 20px;
    width: 100%;
    display: block;
    color: #222222;
    height: 60px;
    border: 1px solid #c4ced5;
    font-size: 16px;
    outline: none
}

.contact-wrap .contact .form input::-webkit-input-placeholder {
    color: #222222
}

.contact-wrap .contact .form textarea {
    margin-bottom: 20px;
    padding: 10px 15px;
    width: 100%;
    display: block;
    color: #222222;
    height: 190px;
    border: 1px solid #c4ced5;
    resize: none;
    outline: none;
    font-size: 16px
}

.contact-wrap .contact .form textarea::-webkit-input-placeholder {
    color: #222222
}

.contact-wrap .contact .form button {
    padding: 20px 0;
    width: 100%;
    background: #3176ad;
    color: #fff;
    font-size: 16px;
    cursor: pointer
}

.contact-wrap .contact #map {
    flex: 1
}

.contact-wrap .us {
    padding: 90px 50px 70px;
    background: url(https://img.cddc2021.com/static/home/img/contact.jpg);
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.contact-wrap .us>span {
    display: block;
    width: 1px;
    height: 50px;
    background: #999999
}

.contact-wrap .us>div {
    padding: 0 10px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.contact-wrap .us>div h5 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #222
}

.contact-wrap .us>div>div {
    flex: 1;
    padding-right: 10px;
    color: #444444;
    font-size: 15px;
    font-weight: bold
}

.contact-wrap .us>div img {
    margin-right: 20px
}

.contact-wrap .us .email {
    display: flex;
    flex-direction: column
}

.contact-wrap .us .email>a {
    margin-top: 30px;
    display: flex;
    align-items: center !important
}

.contact-wrap .us .email>a>div h5 {
    display: flex;
    align-items: center;
    margin-bottom: 0 !important
}

.contact-wrap .us .email>a>div h5 span {
    margin-left: 10px;
    border: 8px solid transparent;
    border-left-color: #6fc3b4;
    font-size: 0
}

.contact-wrap .us .email>div,.contact-wrap .us .email>a {
    padding: 0 10px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.contact-wrap .us .email>div h5,.contact-wrap .us .email>a h5 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #222
}

.contact-wrap .us .email>div>div,.contact-wrap .us .email>a>div {
    flex: 1;
    padding-right: 10px;
    color: #444444;
    font-size: 15px;
    font-weight: bold
}

.contact-wrap .us .email>div img,.contact-wrap .us .email>a img {
    margin-right: 20px
}

.party {
    padding: 50px 60px
}

.party .hots {
    display: flex
}

.party .hots a {
    margin-right: 50px;
    width: 22%;
    color: #222222
}

.party .hots a:nth-child(4n) {
    margin-right: none
}

.party .hots a .img-box {
    width: 100%
}

.party .hots a .img-box::after {
    padding-bottom: 70.45454545%
}

.party .hots a .desc {
    padding: 10px 0
}

.party .hots a .desc h3 {
    margin-bottom: 15px;
    font-size: 20px;
    display: -webkit-box;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.party .hots a .desc p {
    font-size: 16px
}

.party .list {
    margin-top: 70px
}

.party .list a {
    margin-bottom: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    border: 1px solid #d8e1e7;
    border-left: none;
    border-right: none;
    color: #222;
    transition: .3s linear
}

.party .list a.hot {
    display: none
}

.party .list a div {
    margin-right: 50px;
    padding-right: 50px
}

.party .list a div p:first-child {
    font-size: 36px
}

.party .list a div p:first-child span {
    font-size: 16px;
    color: #6fc3b4
}

.party .list a h3 {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px
}

.party .list a:hover {
    color: #fff;
    background: #3176ad
}

.innovate {
    padding: 50px 0 60px
}

.innovate .list {
    display: flex;
    flex-wrap: wrap
}

.innovate .list a {
    margin-right: 20px;
    margin-bottom: 30px;
    padding: 30px 20px;
    width: 31.66666667%;
    border: 1px solid #d8e1e7;
    color: #222;
    transition: .3s linear
}

.innovate .list a:nth-child(3n) {
    margin-right: 0
}

.innovate .list a .img-box {
    margin-top: 20px
}

.innovate .list a .img-box::after {
    padding-bottom: 73.52941176%
}

.innovate .list a p strong {
    font-size: 36px
}

.innovate .list a p span {
    margin: 0 3px;
    display: inline-block
}

.innovate .list a h3 {
    font-size: 20px;
    font-weight: bold;
    display: -webkit-box;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.innovate .list a .mr {
    transition: .3s linear;
    margin-top: 20px;
    display: block;
    color: #3176ad;
    font-size: 14px
}

.innovate .list a .mr::after {
    margin-left: 10px;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #6fc3b4;
    transition: all .3s linear
}

.innovate .list a:hover {
    color: #fff;
    background: #3176ad
}

.innovate .list a:hover .mr {
    padding-left: 40%;
    color: #fff
}

.business {
    padding: 60px 0 150px;
    user-select: none
}

.business .list {
    position: relative;
    height: 710px
}

.business .list .swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #3176ad;
    left: -100px
}

.business .list .swiper-button-prev::after {
    font-size: 25px;
    color: #fff
}

.business .list .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6fc3b4;
    right: -100px
}

.business .list .swiper-button-next::after {
    font-size: 25px;
    color: #fff
}

.business .list .swiper-container {
    height: 100%
}

.business .swiper-slide {
    display: flex;
    flex-direction: column;
    width: 23.75%;
    background-color: #fff;
    text-align: center;
    transition: .3s linear
}

.business .swiper-slide>div:first-child {
    padding-top: 20px;
    height: 265px;
    transition: .3s linear
}

.business .swiper-slide:nth-child(2n) {
    flex-direction: column-reverse
}

.business .swiper-slide span {
    display: block;
    margin-bottom: 60px;
    font-size: 60px;
    color: #d4d9de;
    transition: .3s linear
}

.business .swiper-slide h3 {
    color: #222222;
    font-size: 20px;
    transition: .3s linear
}

.business .swiper-slide h4 {
    font-size: 14px;
    color: #444444;
    transition: .3s linear
}

.business .swiper-slide p {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    line-height: 2;
    transition: .3s linear
}

.business .swiper-slide .img-box {
    width: 100%
}

.business .swiper-slide .img-box::after {
    padding-bottom: 157.89%
}

.business .swiper-slide:hover {
    background-color: #3176ad
}

.business .swiper-slide:hover div:first-child {
    padding: 10px
}

.business .swiper-slide:hover h3 {
    color: #fff
}

.business .swiper-slide:hover h4 {
    color: #fff
}

.business .swiper-slide:hover p {
    color: #fff
}

.business .swiper-slide:hover span {
    margin-bottom: 20px
}

.winning .list {
    display: flex;
    flex-wrap: wrap
}

.winning .list a {
    width: 32.08333333%;
    margin-right: 1%;
    text-align: center
}

.winning .list a:nth-child(3n) {
    margin-right: 0
}

.winning .list a .img-box::after {
    padding-bottom: 64.93506494%
}

.winning .list a .img-box span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    background: linear-gradient(180deg, transparent 60%, #3c81b8 60%)
}

.winning .list a .desc {
    padding: 20px 0
}

.winning .list a .desc h3 {
    margin-bottom: 10px;
    color: #222222;
    font-size: 20px
}

.winning .list a .desc p {
    font-size: 14px;
    color: #444444
}

.winning .list a:hover {
    background-color: #fff
}

.project-news .hots a {
    display: flex
}

.project-news .hots a .img-box {
    flex-shrink: 0;
    width: 47.91666667%
}

.project-news .hots a .img-box::after {
    padding-bottom: 65.2173913%
}

.project-news .hots a .desc {
    flex: 1;
    padding: 40px 60px;
    background-color: #fff;
    color: #222222
}

.project-news .hots a .desc .time {
    margin-bottom: 30px;
    line-height: initial
}

.project-news .hots a .desc .time p:first-child {
    font-size: 36px
}

.project-news .hots a .desc .time p:first-child span {
    font-size: 16px;
    color: #6fc3b4
}

.project-news .hots a .desc h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold
}

.project-news .hots a .desc p {
    font-size: 14px
}

.project-news .hots a .desc .mr {
    transition: .3s linear;
    margin-top: 20px;
    display: block;
    color: #fff;
    font-size: 14px;
    width: 188px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3c81b8
}

.project-news .hots a .desc .mr::after {
    margin-left: 10px;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #6fc3b4;
    transition: all .3s linear
}

.project-news .hots a .desc .mr:hover::after {
    transform: translateX(10px)
}

.project-news .hots .swiper-pagination {
    right: 60px;
    left: initial;
    bottom: 30px;
    width: auto
}

.project-news .hots .swiper-pagination span {
    margin: 0 7px;
    border-radius: 0;
    height: 15px;
    width: 4px;
    background-color: #dddddd;
    opacity: 1;
    transition: .3s linear
}

.project-news .hots .swiper-pagination span.swiper-pagination-bullet-active {
    height: 30px;
    background-color: #6fc3b4
}

.project-news .list {
    margin-top: 50px
}

.project-news .list .img-box {
    width: 23.33333333%
}

.project-news .list .img-box::after {
    padding-bottom: 64.28571429%
}

.project-news .list a {
    margin-bottom: 20px;
    display: flex
}

.project-news .list a .desc {
    padding-right: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    color: #222;
    background-color: #fff;
    transition: .3s linear
}

.project-news .list a .time {
    padding: 0 50px;
    line-height: initial
}

.project-news .list a .time p:first-child {
    font-size: 36px
}

.project-news .list a .time p:first-child span {
    font-size: 16px;
    color: #6fc3b4
}

.project-news .list a h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold
}

.project-news .list a p {
    font-size: 14px
}

.project-news .list a:hover .desc {
    color: #fff;
    background-color: #3c81b8
}

.third-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.third-wrap .third {
    display: flex;
    align-items: center;
    color: #666666
}

.third-wrap .third a {
    margin: 0 15px
}

.third-wrap .third a:hover,.third-wrap .third a.active {
    color: #3176ad;
    font-weight: bold
}

.exhibition .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.exhibition .list .item {
    margin-bottom: 30px;
    position: relative;
    width: 48.75%;
    overflow: hidden
}

.exhibition .list .item::after {
    width: 100%;
    content: "";
    display: block;
    padding-bottom: 59.82905983%
}

.exhibition .list .item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s linear
}

.exhibition .list .item .desc {
    transform: translateY(55px);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    color: #fff;
    text-align: center;
    background: linear-gradient(0deg, rgba(0,0,0,0.9), rgba(0,0,0,0));
    transition: .3s linear
}

.exhibition .list .item .desc h3 {
    font-size: 20px
}

.exhibition .list .item .desc h4 {
    font-size: 14px;
    margin: 0 auto;
    display: inline-block;
    width: 100px
}

.exhibition .list .item .desc span {
    transition: .3s linear;
    margin-top: 20px;
    color: #6fc3b4;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.exhibition .list .item .desc span::after {
    margin-left: 10px;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #6fc3b4;
    transition: all .3s linear
}

.exhibition .list .item:hover img {
    transform: scale(1.1)
}

.exhibition .list .item:hover .desc {
    transform: translateY(0)
}

.login {
    width: 100vw;
    height: 100vh;
    background: url(https://img.cddc2021.com/static/home/img/p_15.jpg) no-repeat;
    background-size: cover;
    touch-action: pan-y
}

.login .logo {
    position: fixed;
    left: 60px;
    top: 35px
}

.login.register {
    background-image: url(https://img.cddc2021.com/static/home/img/p_22.jpg)
}

.login .main {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px
}

.login .main .box {
    background-color: #fff
}

.login .main .head {
    position: relative;
    padding: 20px 0;
    color: #222222;
    font-size: 24px;
    text-align: center;
    border-bottom: 1px solid #c5ccd1;
    user-select: none
}

.login .main .head a {
    display: none;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%)
}

.login .main .content {
    padding: 0 100px
}

.login .main .tabs {
    user-select: none;
    display: flex;
    justify-content: center
}

.login .main .tabs.wc {
    padding-left: 60px
}

.login .main .tabs.wc div:first-child {
    margin: 0 auto
}

.login .main .tabs #tab1 {
    display: none
}

.login .main .tabs div {
    margin: 0 20px 30px;
    position: relative;
    padding-top: 45px;
    padding-bottom: 20px;
    cursor: pointer;
    font-size: 20px;
    color: #222222
}

.login .main .tabs div:last-child {
    opacity: 0;
    pointer-events: none
}

.login .main .tabs div:not(:last-child)::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: transparent
}

.login .main .tabs div:not(:last-child).active::after {
    background-color: #222222
}

.login .main .form .line {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    height: 52px;
    border: 1px solid #888888;
    border-radius: 5px
}

.login .main .form .line .select {
    flex-shrink: 0;
    user-select: none;
    width: 100px !important;
    cursor: pointer;
    border: none !important;
    border-radius: none !important;
    border-right: 1px solid #c2c2c2 !important;
    border-radius: 5px 0 0 5px !important
}

.login .main .form .line .select i {
    border-left: 0 !important
}

.login .main .form .line>input {
    padding: 0 20px;
    flex: 1;
    height: 100%;
    font-size: 16px
}

.login .main .form .line a {
    position: absolute;
    right: 20px;
    top: 14px;
    color: #3c81b8
}

.login .main .form .verify {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.login .main .form .verify input[type="text"] {
    padding: 0 20px;
    width: 60%;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid #888888;
    border-radius: 5px
}

.login .main .form .verify .send {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 30%;
    background-color: #3c81b8;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    text-align: center
}

.login .main .form .verify .send input {
    width: 100%;
    height: 100%;
    color: #fff
}

.login .main .form .slider-item {
    margin-bottom: 20px;
    height: 50px;
    border: 1px solid #888888;
    border-radius: 5px;
    overflow: hidden;
    font-size: 0;
    user-select: none
}

.login .main .form .slider-item .slider-bg {
    height: 49px;
    background-color: #3c81b8
}

.login .main .form .slider-item .slider-btn {
    height: 100%;
    border: none
}

.login .main .form .slider-item .slider-text {
    line-height: 48px
}

.login .main .form .submit {
    margin-top: 20px
}

.login .main .form .submit button {
    width: 100%;
    height: 52px;
    background-color: #3c81b8;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

.login .main .form .submit .remember {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #333333;
    user-select: none;
    cursor: pointer
}

.login .main .form .submit .remember input {
    display: none !important
}

.login .main .form .submit .remember span {
    margin-top: 1px;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border: 1px solid #666;
    border-radius: 2px;
    padding: 2px
}

.login .main .form .submit .remember input:checked+span {
    border-color: #3c81b8;
    background-color: #3c81b8;
    background-clip: content-box
}

.login .main .form .done {
    text-align: center
}

.login .main .copy {
    margin-top: 30px;
    color: #fff;
    font-size: 15px;
    text-align: center
}

.login .main .wechat {
    display: none;
    text-align: center;
    color: #444444
}

.login .main .wechat img {
    width: 240px;
    height: 240px
}

.login .main .link {
    padding: 20px 0;
    color: #999999;
    font-size: 18px;
    text-align: center
}

.login .main .link a {
    color: #3c81b8
}

.login .main .other {
    text-align: center;
    padding-bottom: 25px
}

.login .main .other>div {
    display: flex;
    align-items: center;
    justify-content: center
}

.login .main .other>div img {
    margin: 0 25px
}

.login .main .other p {
    margin-bottom: 10px;
    color: #999999;
    font-size: 18px
}

.register .items {
    padding-top: 20px
}

.recruit {
    background-color: #fff
}

.recruit .sec-1 {
    padding: 80px 0;
    text-align: center
}

.recruit .sec-1 h2 {
    font-size: 36px;
    color: #333333
}

.recruit .sec-1 div {
    margin-top: 40px;
    color: #444444;
    font-size: 16px;
    line-height: 2
}

.recruit .sec-2 {
    position: relative;
    background: url(https://img.cddc2021.com/static/home/img/p_17.jpg) no-repeat;
    background-size: cover;
    text-align: center;
    height: 500px;
    line-height: 2
}

.recruit .sec-2 img {
    margin-top: 50px;
    margin-bottom: 20px;
    cursor: pointer
}

.recruit .sec-2 p:nth-child(4) {
    margin-top: 20px
}

.recruit .sec-2 h4 {
    margin-bottom: 1em
}

.recruit .sec-3 {
    padding: 50px 9.16666667% 30px
}

.recruit .sec-3 span {
    margin-bottom: 50px;
    display: inline-block;
    color: #333333
}

.recruit .sec-3 span::after {
    margin-left: 10px;
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: #333
}

.recruit .sec-3 .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.recruit .sec-3 .list>div {
    margin-bottom: 70px;
    position: relative;
    padding-top: 50px;
    width: 42.30769231%
}

.recruit .sec-3 .list>div::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 4px;
    width: 55px;
    background-color: #3176ad
}

.recruit .sec-3 .list>div h4 {
    font-size: 30px;
    color: #333333
}

.recruit .sec-3 .list>div h6 {
    margin: 15px 0 30px;
    color: #999999
}

.recruit .sec-3 .list>div p {
    margin-bottom: 30px;
    color: #444444;
    height: 140px
}

.recruit .sec-3 .list>div .img-box {
    width: 100%
}

.recruit .sec-3 .list>div .img-box::after {
    padding-bottom: 45.78313253%
}

.recruit .sec-4 {
    font-size: 0
}

.recruit .sec-4 .container {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 2
}

.recruit .sec-4 .container .desc {
    padding: 30px 50px 80px 80px;
    position: absolute;
    right: 0;
    top: 15%;
    font-size: 16px;
    z-index: 1;
    background-color: #fff;
    text-align: right;
    box-shadow: 0 0 20px rgba(0,0,0,0.1)
}

.recruit .sec-4 .container .desc h4 {
    margin-bottom: 20px;
    color: #333333;
    font-size: 36px
}

.recruit .sec-4 .container .desc p {
    color: #444444
}

.recruit .sec-4 .container .swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 20px
}

.recruit .sec-4 .container .swiper-pagination span {
    margin-right: 10px;
    width: 5px;
    height: 20px;
    background-color: #fff;
    opacity: 1;
    border-radius: 0;
    transition: .3s ease
}

.recruit .sec-4 .container .swiper-pagination span.swiper-pagination-bullet-active {
    height: 60px;
    background-color: #3176ad
}

.recruit .sec-4 .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover
}

.recruit .sec-5 {
    padding: 80px 0 100px
}

.recruit .sec-5 .head {
    margin-bottom: 30px;
    text-align: center
}

.recruit .sec-5 .head h5 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #333333
}

.recruit .sec-5 .head p {
    color: #444444
}

.recruit .sec-5 .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start
}

.recruit .sec-5 .list img {
    margin-bottom: 20px;
    width: 18%
}

.recruit .sec-6 {
    padding: 40px 0 60px;
    background-color: #f5f8fb
}

.recruit .sec-6 .head {
    margin-bottom: 30px;
    text-align: center
}

.recruit .sec-6 .head h5 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #333333
}

.recruit .sec-6 .head p {
    color: #444444
}

.recruit .sec-6 .tabs {
    display: flex;
    align-items: center;
    justify-content: center
}

.recruit .sec-6 .tabs>div {
    margin: 0 20px;
    padding: 10px 20px;
    color: #555555;
    font-size: 18px;
    cursor: pointer
}

.recruit .sec-6 .tabs>div.active {
    color: #fff;
    background-color: #3c81b8
}

.recruit .sec-6 .content {
    padding-top: 65px
}

.recruit .sec-6 .list {
    display: none
}

.recruit .sec-6 .list.active {
    display: flex
}

.recruit .sec-6 .list a {
    padding: 20px 10px;
    width: 25%
}

.recruit .sec-6 .list a:not(:last-child) {
    border-right: 1px solid #ccd7e2
}

.recruit .sec-6 .list a h6 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #222222
}

.recruit .sec-6 .list a p {
    font-size: 14px;
    color: #666666
}

.recruit .sec-6 .all {
    padding-top: 90px;
    text-align: center
}

.recruit .sec-6 .all a {
    display: inline-block;
    padding: 15px 50px;
    color: #3c81b8;
    font-size: 15px;
    border: 1px solid currentColor;
    transition: .3s ease
}

.recruit .sec-6 .all a:hover {
    background-color: #3c81b8;
    color: #fff
}

.recruit-items {
    padding: 50px 0 60px
}

.recruit-items .tabs {
    display: flex;
    align-items: center;
    color: #222222;
    font-size: 20px
}

.recruit-items .tabs>div {
    margin-right: 60px;
    position: relative;
    cursor: pointer;
    padding-bottom: 20px;
    transition: .3s linear
}

.recruit-items .tabs>div::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    content: "";
    transition: .3s linear
}

.recruit-items .tabs>div.active {
    color: #3176ad
}

.recruit-items .tabs>div.active::after {
    background-color: #3176ad
}

.recruit-items .list {
    margin-top: 30px
}

.recruit-items .list a {
    margin-bottom: 20px;
    padding: 25px 35px;
    display: block;
    background-color: #fff
}

.recruit-items .list .head {
    display: flex;
    justify-content: space-between;
    color: #222222
}

.recruit-items .list .head p:nth-child(1) {
    font-size: 20px;
    font-weight: bold
}

.recruit-items .list .head span {
    color: #3176ad
}

.recruit-items .list .mid {
    margin: 20px 0 30px;
    font-size: 14px;
    color: #555555;
    text-align: justify;
    line-height: 2
}

.recruit-items .list .bot {
    display: flex;
    justify-content: space-between;
    color: #888888;
    font-size: 14px
}

.recruit-items .list .bot>div span {
    display: inline-block;
    margin-right: 50px
}

.recruit-items .list .bot>span {
    position: relative;
    width: 120px;
    height: 40px;
    color: #fff;
    background-color: #3c81b8;
    display: flex;
    align-items: center;
    justify-content: center
}

.recruit-items .list .bot>span::after {
    margin-left: 10px;
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #6fc3b4;
    -webkit-transition: all .3s linear;
    transition: all .5s linear
}

.recruit-items .list .bot>span:hover::after {
    transform: translateX(10px)
}

.recruit-detail {
    margin-top: 60px;
    margin-bottom: 80px;
    padding: 30px 30px 60px;
    background-color: #fff
}

.recruit-detail .head {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #c5ccd1
}

.recruit-detail .head>div {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.recruit-detail .head>div:first-child {
    margin-bottom: 15px
}

.recruit-detail .head>div:first-child p:first-child {
    color: #222;
    font-size: 24px
}

.recruit-detail .head>div:first-child p:first-child span {
    margin-left: 20px;
    color: #888888;
    font-size: 14px
}

.recruit-detail .head>div:first-child p:last-child {
    color: #222222
}

.recruit-detail .head>div:first-child p:last-child span {
    font-size: 20px;
    color: #3176ad
}

.recruit-detail .head>div:last-child {
    font-size: 14px;
    color: #444444
}

.recruit-detail .head>div:last-child span {
    /* margin-right: 30px */
}

.recruit-detail .main .item {
    margin-bottom: 60px
}

.recruit-detail .main .item h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #3c81b8;
    font-weight: bold
}

.recruit-detail .main .item h3::before {
    margin-right: 10px;
    content: "";
    height: 1em;
    width: 4px;
    background-color: #3c81b8
}

.recruit-detail .main .item div {
    color: #555555;
    font-size: 14px;
    line-height: 2
}

.recruit-detail .main .bottom {
    text-align: center
}

.recruit-detail .main .bottom a {
    position: relative;
    width: 200px;
    height: 50px;
    color: #fff;
    background-color: #3c81b8;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.recruit-detail .main .bottom a::after {
    margin-left: 10px;
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #6fc3b4;
    -webkit-transition: all .3s linear;
    transition: all .5s linear
}

.recruit-detail .main .bottom a:hover::after {
    transform: translateX(10px)
}

.modal {
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 10px
}

.modal h4 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: #222222;
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #c5ccd1
}

.modal .form {
    margin: 0 auto;
    width: 47.5%;
    min-width: 500px
}

.modal .form .line {
    margin-bottom: 15px;
    display: flex;
    height: 50px;
    font-size: 16px
}

.modal .form .line>span {
    flex-shrink: 0;
    padding-right: 15px;
    width: 100px;
    color: #444444;
    text-align: justify;
    text-align-last: justify;
    line-height: 48px
}

.modal .form .line .input-wrap {
    position: relative;
    flex: 1;
    border: 1px solid #c4ced5
}

.modal .form .line .input-wrap input {
    padding: 0 20px;
    width: 100%;
    height: 100%;
    outline: none
}

.modal .form .line .input-wrap input[type="file"] {
    opacity: 0
}

.modal .form .line .input-wrap .file {
    pointer-events: none;
    padding: 0 20px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #666666;
    font-size: 14px
}

.modal .form .line .input-wrap .file p:first-child {
    margin-right: 20px;
    padding: 5px 10px;
    background-color: #3c81b8;
    color: #fff
}

.modal .form .line .input-wrap .drag {
    width: 100%;
    height: 100%
}

.modal .form .line .input-wrap .drag+.slider-item {
    line-height: 48px;
    height: 48px
}

.modal .form .line .input-wrap .drag+.slider-item .slider-bg {
    background: #3c81b8
}

.modal .form .line .input-wrap .drag+.slider-item .slider-btn {
    height: 100%
}

.modal .form .tips {
    color: #999
}

.modal .form .btn-wrap {
    padding-top: 30px;
    text-align: center
}

.modal .form .btn {
    margin: 0 auto;
    padding: 20px 100px;
    display: inline-block;
    background-color: #3c81b8;
    text-align: center;
    color: #fff;
    cursor: pointer;
    letter-spacing: 10px
}

.modal .activity-desc {
    padding: 0 50px
}

.modal .activity-desc h5 {
    margin-bottom: 20px;
    color: #222222;
    font-size: 20px
}

.modal .activity-desc .item {
    margin-bottom: 30px
}

.modal .activity-desc .item div {
    color: #666666;
    font-size: 14px;
    text-align: justify
}

.modal .work-info {
    padding: 0 40px;
    display: flex
}

.modal .work-info .img-box {
    width: 47%
}

.modal .work-info .img-box::after {
    padding-bottom: 85.10638298%
}

.modal .work-info .desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 30px 0
}

.modal .work-info .desc .info {
    padding-bottom: 30px;
    border-bottom: 1px solid #d5dfe6
}

.modal .work-info .desc .info h5 {
    color: #222222;
    font-size: 24px
}

.modal .work-info .desc .info h5 span {
    margin-left: 10px;
    display: inline-block;
    padding: 3px 10px;
    color: #fff;
    background-color: #eb3b3b;
    font-size: 13px
}

.modal .work-info .desc .info p {
    margin: 20px 0 15px;
    color: #666666;
    font-size: 16px
}

.modal .work-info .desc .info h6 {
    color: #333333;
    font-size: 16px
}

.modal .work-info .desc .reason {
    padding-top: 30px;
    font-size: 15px;
    flex: 1
}

.modal .work-info .desc .reason div {
    padding: 10px 0;
    display: flex;
    color: #eb3b3b
}

.modal .work-info .desc .reason div p:first-child {
    flex-shrink: 0
}

.modal .work-info .desc .reason .btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 55px;
    background-color: #3c81b8
}

.project-info .swiper-container {
    height: 480px
}

.project-info .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.project-info .desc {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 30px;
    width: 100%;
    background-color: #fff
}

.project-info .desc h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #222222
}

.project-info .desc span {
    display: inline-block;
    padding: 3px 10px;
    font-size: 14px;
    color: #444444;
    transition: .5s ease;
    background: linear-gradient(180deg, transparent 60%, #63cab8 60%)
}

.project-info .desc .richtext {
    margin-top: 50px;
    line-height: 2
}

.my {
    margin-top: 220px;
    padding: 0 50px;
    background-color: #fff
}

.my .wrap {
    transform: translateY(-55px)
}

.my .city-picker-span {
    background-color: #edeff1
}

.my .city-picker-span .title {
    padding: 0;
    font-size: inherit
}

.my .city-picker-span .arrow {
    right: 10px
}

.my .info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.my .info .avatar {
    display: flex;
    align-items: flex-end
}

.my .info .avatar>img {
    width: 170px;
    height: 170px;
    border: 5px solid #fff;
    border-radius: 5px;
    object-fit: cover
}

.my .info .avatar div {
    padding: 20px
}

.my .info .avatar h4 {
    margin-bottom: 10px;
    color: #222222;
    font-size: 24px
}

.my .info .avatar p {
    color: #3176ad
}

.my .info .avatar p a {
    margin-left: 20px;
    color: #666666
}

.my .info .tabs {
    display: flex;
    align-items: center;
    height: 140px;
    color: #333333;
    font-weight: bold
}

.my .info .tabs a {
    margin-left: 50px;
    position: relative
}

.my .info .tabs a::after {
    position: absolute;
    top: 150%;
    left: 0;
    content: "";
    height: 3px;
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
    background-color: #3176ad;
    transition: .3s linear
}

.my .info .tabs a:hover::after,.my .info .tabs a.active::after {
    transform: scaleX(1)
}

.my .main .tabs {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.my .main .tabs a {
    margin-left: 30px;
    padding: 5px 10px;
    color: #666666;
    transition: .3s linear
}

.my .main .tabs a:hover,.my .main .tabs a.active {
    background-color: #3176ad;
    color: #fff
}

.my .main .activity-list .desc {
    border: 1px solid #d5dfe6;
    border-top: none
}

.my .main .works {
    margin: 0 -10px;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap
}

.my .main .works>a {
    margin: 0 5px 20px;
    margin-bottom: 20px;
    width: 31.96347032%
}

.my .main .works .img-box::after {
    padding-bottom: 85.71428571%
}

.my .main .works .desc {
    padding: 20px 15px;
    border: 1px solid #d5dfe6
}

.my .main .works .desc h3 {
    color: #222222;
    font-size: 20px
}

.my .main .works .desc h3 span {
    margin-left: 10px;
    padding: 3px 10px;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    background: #6fc3b4
}

.my .main .works .desc h3 span.waiting {
    background: #3176ad
}

.my .main .works .desc h3 span.failed {
    background: #eb3b3b
}

.my .main .works .desc>p {
    margin-top: 20px;
    font-size: 15px;
    color: #666666;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.my .main .works .desc .visit {
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #999999;
    border-bottom: 1px solid #d5dfe6
}

.my .main .works .desc .visit span {
    padding-left: 25px;
    margin-right: 40px
}

.my .main .works .desc .visit span:nth-child(1) {
    background: url(https://img.cddc2021.com/static/home/img/i_17.png) left center no-repeat
}

.my .main .works .desc .visit span:nth-child(2) {
    padding-left: 20px;
    background: url(https://img.cddc2021.com/static/home/img/i_20.png) left center no-repeat
}

.my .main .works .desc .visit span:nth-child(3) {
    background: url(https://img.cddc2021.com/static/home/img/i_22.png) left center no-repeat
}

.my .main .works .desc .visit .btn {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #eb3b3b
}

.my .main .works .desc .visit .btn p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.my .main .works .desc .visit .btn img {
    margin-left: 5px
}

.my .main .works .desc h5 {
    padding-top: 20px;
    font-size: 14px;
    color: #333333
}

.my .user-info {
    padding: 50px 0;
    color: #333333
}

.my .user-info .type {
    padding: 25px 0;
    display: flex;
    align-items: center;
    border: 1px solid #d5dfe6;
    border-left: none;
    border-right: none
}

.my .user-info .line {
    display: flex;
    align-items: center
}

.my .user-info .line.date {
    width: 100%
}

.my .user-info .line.date .input-box {
    width: 250px
}

.my .user-info .line .tips {
    margin-left: 50px;
    color: #f42e2e
}

.my .user-info .line>span {
    padding-left: 15px;
    position: relative;
    width: 110px
}

.my .user-info .line>span i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #f64040
}

.my .user-info .line>span.fs {
    align-self: flex-start
}

.my .user-info .line .input-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 200px
}

.my .user-info .line .input-box p {
    margin-bottom: 20px;
    width: 100%;
    color: #999999;
    font-size: 14px
}

.my .user-info .line .input-box .card {
    padding-bottom: 20px;
    width: 100%;
    display: flex
}

.my .user-info .line .input-box .card img {
    margin-right: 50px;
    width: 286px;
    height: 164px;
    object-fit: contain;
    cursor: pointer
}

.my .user-info .line .input-box .card img.add {
    width: 175px;
    height: 175px
}

.my .user-info .line .input-box .card p {
    width: 286px;
    text-align: center;
    font-size: 12px;
    color: #999
}

.my .user-info .line .input-box input {
    padding: 0 10px;
    width: 100%;
    height: 30px;
    background: #edeff1
}

.my .user-info .line .input-box input[type="file"] {
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.my .user-info .line .input-box .file {
    display: flex;
    align-items: center;
    color: #6fc3b4
}

.my .user-info .line .input-box .file img {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.my .user-info .line .input-box>.date {
    padding-right: 30px;
    position: relative;
    flex: 1;
    height: 30px;
    background-color: #edeff1;
    cursor: pointer;
    display: flex;
    align-items: center
}

.my .user-info .line .input-box>.date input {
    width: 100%;
    height: 100%;
    text-align: center
}

.my .user-info .line .input-box>.date::after {
    position: absolute;
    right: 10px;
    top: 12.5px;
    content: "";
    display: block;
    width: 0px;
    border-width: 5px;
    border-style: solid;
    border-color: #5c5c5c transparent transparent;
    border-image: initial
}

.my .user-info .radio-box {
    user-select: none;
    margin-right: 60px;
    display: inline-flex;
    align-items: center
}

.my .user-info .radio-box input {
    display: none !important
}

.my .user-info .radio-box input:checked+span {
    border-color: #6fc3b4;
    background-color: #6fc3b4
}

.my .user-info .radio-box input:checked+span+i {
    color: #6fc3b4
}

.my .user-info .radio-box i {
    font-style: initial
}

.my .user-info .radio-box span {
    margin-right: 10px;
    padding: 2px;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-clip: content-box;
    border: 1px solid currentColor
}

.my .user-info .line-box {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d5dfe6;
    flex-wrap: wrap;
    max-width: 880px
}

.my .user-info .line-box .line {
    margin-bottom: 30px
}

.my .user-info .line-box .line.text {
    width: 100%
}

.my .user-info .line-box .line.text .input-box {
    flex: 1
}

.my .user-info .line-box .line.text textarea {
    padding: 10px;
    width: 100%;
    height: 100px;
    background: #edeff1;
    resize: none;
    outline: none;
    border: none
}

.my .user-info .line-box .radio-box {
    margin-right: 20px
}

.my .user-info .line-box .address {
    padding: 0 !important;
    background: #edeff1 !important
}

.my .user-info .line-box .address em {
    border-width: 5px !important
}

.my .user-info .line-box .address ul {
    border: 1px solid #edeff1 !important
}

.my .user-info .bind {
    margin-top: -1px;
    padding: 30px 0;
    border-bottom: 1px solid #d5dfe6
}

.my .user-info .bind .bind-wrap {
    display: flex;
    max-width: 880px;
    justify-content: space-between
}

.my .user-info .bind .input-box {
    width: 350px
}

.my .user-info .bind .input-box input {
    width: 200px
}

.my .user-info .bind .email {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.my .user-info .bind .email a {
    margin-left: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    height: 30px;
    color: #fff;
    font-size: 14px;
    background-color: #6fc3b4
}

.my .user-info .btns {
    display: flex
}

.my .user-info .btns .submit {
    margin-right: 5%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 55px;
    background-color: #6fc3b4;
    color: #fff;
    font-size: 16px;
    cursor: pointer
}

.my .user-info .btns .submit.cancel {
    background-color: transparent;
    color: #6fc3b4
}

.my .user-info .btns .submit.sign {
    border: 1px solid #6fc3b4;
    background-color: transparent;
    color: #6fc3b4
}

.my .notice-list {
    margin-top: 20px;
    border-top: 1px solid #d5dfe6;
    min-height: 300px
}

.my .notice-list>div {
    position: relative;
    display: flex;
    padding: 20px 0;
    padding-left: 25px;
    border-bottom: 1px solid #d5dfe6
}

.my .notice-list>div.read::before {
    background: #999999
}

.my .notice-list>div.read h4 {
    color: #999
}

.my .notice-list>div.read h4 span {
    color: #999
}

.my .notice-list>div.read p {
    color: #999
}

.my .notice-list>div::before {
    position: absolute;
    left: 5px;
    top: 28px;
    flex-shrink: 0;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f54040
}

.my .notice-list>div h4 {
    font-size: 20px;
    color: #333333
}

.my .notice-list>div h4 span {
    margin-left: 20px;
    color: #666666;
    font-size: 16px
}

.my .notice-list>div p {
    margin-top: 10px;
    font-size: 14px;
    color: #666666;
    line-height: 2
}

.works-upload {
    margin-bottom: 60px
}

.works-upload h3 {
    margin: 30px 0 20px;
    color: #222222;
    font-size: 20px
}

.works-upload .form {
    background-color: #fff;
    padding: 30px 45px
}

.works-upload .form .line {
    position: relative;
    margin-bottom: 30px;
    max-width: 700px;
    display: flex;
    align-items: flex-start
}

.works-upload .form .line>span {
    width: 90px;
    flex-shrink: 0;
    margin-right: 25px;
    display: flex;
    align-items: center;
    color: #333333
}

.works-upload .form .line>span i {
    color: #f64040
}

.works-upload .form .line .limit {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #999;
    font-size: 12px
}

.works-upload .form .line input {
    padding: 0 20px;
    flex: 1;
    height: 40px;
    background-color: #edeff1
}

.works-upload .form .line textarea {
    padding: 10px 20px 30px;
    flex: 1;
    height: 200px;
    background-color: #edeff1;
    outline: none;
    border: none;
    resize: none
}

.works-upload .form .line .file {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    color: #666;
    height: 50px;
    cursor: pointer
}

.works-upload .form .line .file input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0
}

.works-upload .form .line .file p:first-of-type {
    margin-right: 20px;
    padding: 5px 10px;
    background-color: #3c81b8;
    color: #fff
}

.works-upload .form .tips {
    color: #999999;
    font-size: 14px
}

.works-upload .form .list {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0
}

.works-upload .form .list .pic {
    margin-bottom: 10px;
    margin-right: 10px;
    position: relative;
    width: 175px;
    height: 175px;
    border-radius: 5px;
    background-color: #edeff1;
    overflow: hidden
}

.works-upload .form .list .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.works-upload .form .list .pic .tools {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px
}

.works-upload .form .list .pic .tools.error {
    display: flex !important
}

.works-upload .form .list .pic .tools a {
    padding: 0 20px;
    height: 30px;
    color: #fff;
    background: red;
    line-height: 30px;
    border-radius: 30px
}

.works-upload .form .list .pic:hover .tools {
    display: flex
}

.works-upload .form .list .upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    height: 175px;
    border-radius: 5px;
    background-color: #edeff1;
    cursor: pointer
}

.works-upload .form .list .upload-btn img {
    max-width: 160px;
    max-height: 170px
}

.works-upload .form .list .upload-btn p {
    display: none
}

.works-upload .form .submit {
    border-top: 1px solid #dddddd;
    padding-top: 40px;
    padding-left: 105px
}

.works-upload .form .submit button {
    padding: 20px 100px;
    background-color: #3176ad;
    color: #fff;
    cursor: pointer
}

.white {
    background-color: #fff
}

.search-result {
    margin-top: 150px;
    min-height: 300px
}

.search-result .head {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    color: #222222;
    font-size: 20px;
    border-bottom: 1px solid #222222
}

.search-result .head input {
    padding: 0 20px;
    flex: 1;
    height: 30px
}

.search-result .head div {
    color: #666666;
    font-size: 14px
}

.search-result .head div i,.search-result .head div strong {
    margin: 0 5px
}

.search-result .head div strong {
    color: #3176ad
}

.search-result .tabs {
    margin-bottom: 50px;
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dddddd
}

.search-result .tabs a {
    margin-right: 70px;
    position: relative;
    color: #222222;
    font-size: 18px;
    display: flex;
    align-items: center;
    height: 80px
}

.search-result .tabs a span {
    margin-left: 4px;
    margin-top: 4px;
    font-size: 16px
}

.search-result .tabs a::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background-color: transparent
}

.search-result .tabs a:hover,.search-result .tabs a.active {
    color: #3176ad
}

.search-result .tabs a:hover::after,.search-result .tabs a.active::after {
    background-color: #3176ad
}

.search-result .innovate {
    padding-top: 0
}

.search-result .duty {
    padding-top: 0
}

.search-result .duty .list {
    padding-top: 0
}

.search-result .party {
    padding: 0
}

.search-result .party .list {
    padding-top: 0
}

.privacy {
    margin: 180px auto 60px
}

.privacy .wrap {
    padding: 40px;
    background-color: #fff;
    color: #555555;
    font-size: 14px;
    line-height: 2
}

.message {
    margin: 180px auto 60px
}

.message .box {
    padding: 30px 0 50px;
    text-align: center;
    color: #222222;
    background-color: #fff;
    color: #444444
}

.message .box h2 {
    font-size: 30px
}

.message .box h5 {
    margin: 20px 0 50px;
    font-size: 14px
}

.message .box .form {
    width: 530px;
    display: inline-flex;
    flex-direction: column
}

.message .box .form input {
    padding: 0 20px;
    margin-bottom: 20px;
    height: 60px;
    border: 1px solid #c4ced5
}

.message .box .form textarea {
    margin-bottom: 50px;
    padding: 20px;
    outline: none;
    border: 1px solid #c4ced5
}

.message .box .form button {
    height: 60px;
    color: #fff;
    background-color: #3176ad
}

.phone-show {
    padding: 10px 3vw;
    display: none;
    justify-content: space-between;
    align-items: center
}

.phone-show .logo img {
    max-width: 80px
}

.phone-show .logo img:nth-child(2) {
    display: none
}

.phone-show .nav {
    display: none;
    padding: 50px 0;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    background-color: rgba(0,0,0,0.8);
    z-index: 99
}

.phone-show .nav a {
    display: block;
    padding: 10px 0
}

.phone-show .menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 35px;
    z-index: 100;
    cursor: pointer
}

.phone-show .menu span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform-origin: center;
    opacity: 1
}

.phone-show .menu.active span:first-child {
    opacity: 0
}

.phone-show .menu.active span:nth-child(2) {
    transform: rotate(45deg)
}

.phone-show .menu.active span:last-child {
    transform: translateY(-11px) rotate(-45deg)
}

.anchorBL {
    display: none !important
}

.layui-flow-more {
    all: revert;
    margin: 20px 0;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    color: #999 !important;
    font-style: normal !important;
    background: transparent !important
}

.layui-flow-more img {
    width: 200px
}

.layui-flow-more::before {
    display: none !important
}

.layui-flow-more p {
    padding: 20px 0
}

.layui-flow-more a {
    all: initial !important;
    font-style: normal !important;
    color: #999 !important;
    font-size: 14px;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background-color: transparent !important
}

.layui-flow-more a::before {
    display: none !important
}

.layui-upload-file {
    display: none
}

.layui-icon-next {
    background: url(https://img.cddc2021.com/static/home/img/next.png) center center / 45% no-repeat
}

.layui-icon-ok-circle {
    background: url(https://img.cddc2021.com/static/home/img/ok.png) center center / 60% no-repeat
}

.president {
    padding: 180px 0 100px;
    display: flex
}

.president .cover {
    background-color: #fff;
    font-size: 0;
    width: 670px;
    flex-shrink: 0
}

.president .cover img {
    width: 100%
}

.president .cover img:nth-child(2) {
    display: none
}

.president .form {
    padding: 30px 40px;
    flex: 1;
    background-color: #fff;
    color: #444444
}

.president .form i {
    color: #f23f3f
}

.president .form input {
    flex: 1
}

.president .form .form-line {
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid #c4ced5;
    line-height: 40px
}

.president .form .form-line>span {
    position: relative;
    padding-left: 15px;
    margin-right: 10px;
    width: 90px;
    text-align: justify;
    text-align-last: justify;
    flex-shrink: 0
}

.president .form .form-line>span>i {
    position: absolute;
    left: 0;
    top: 3px
}

.president .form .file {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: initial
}

.president .form .file input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0
}

.president .form .file .change {
    flex-shrink: 0;
    margin-right: 10px;
    width: 90px;
    height: 30px;
    text-align: center;
    background-color: #3c81b8;
    color: #fff;
    line-height: 30px
}

.president .form .text {
    padding-bottom: 15px;
    flex: 1;
    position: relative
}

.president .form .text textarea {
    padding: 10px 0 0;
    height: 120px;
    resize: none;
    width: 100%
}

.president .form .text p {
    line-height: initial;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 12px
}

.president .form .code {
    touch-action: pan-x;
    flex: 1
}

.president .form .code .slider-bg {
    background-color: #3c81b8
}

.president .form .code .slider-btn {
    height: 100%
}

.president .submit {
    margin-top: 30px;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    background-color: #3c81b8;
    color: #fff;
    font-size: 18px;
    cursor: pointer
}

.float-box {
    position: fixed;
    right: 0;
    top: 60%;
    z-index: 3;
    user-select: none
}

.float-box>div {
    margin-bottom: 15px;
    padding-left: 75px;
    padding-right: 20px;
    width: 220px;
    height: 73px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    font-size: 14px
}

.float-box>div h5 {
    font-size: 14px
}

.float-box>div p {
    user-select: auto
}

.float-box .tel {
    background: url(https://img.cddc2021.com/static/home/img/f-tel.png);
    background-size: 100%
}

.float-box .email {
    background: url(https://img.cddc2021.com/static/home/img/f-email.png);
    background-size: 100%
}

@media (max-width: 992px) {
    .layui-flow-more img {
        max-width:50%
    }

    .nav-wrap {
        display: none
    }

    .phone-show {
        display: flex
    }

    .other-page {
        background-color: #3176ad !important
    }

    .other-page.info {
        background-color: #3176ad !important
    }

    .other-page.info .top-bar {
        background-color: #3176ad !important
    }

    .other-page.info .phone-show .logo img:nth-child(1) {
        display: block
    }

    .other-page.info .phone-show .logo img:nth-child(2) {
        display: none
    }

    .other-page.info .menu span {
        background-color: #fff
    }

    .other-page .top-bar {
        background-color: #fff !important;
        border-bottom: 1px solid #6d9fc7
    }

    .other-page .menu span {
        background-color: #3c81b8
    }

    .other-page .phone-show .logo img:nth-child(1) {
        display: none
    }

    .other-page .phone-show .logo img:nth-child(2) {
        display: block
    }

    .top-bar {
        padding: 0 3vw;
        flex-wrap: nowrap;
        background-color: rgba(20,39,53,0.5);
        font-size: 13px;
        border-bottom: none
    }

    .top-bar .top-bar-l a {
        margin-right: 5px;
        padding: 0 8px;
        font-size: 10px
    }

    .top-bar .top-bar-l a img {
        display: none
    }

    .top-bar .top-bar-l a::after {
        display: none
    }

    .top-bar .top-bar-r .search-box {
        padding: 0;
        margin-right: 15px;
        border: none !important;
        height: 100%
    }

    .top-bar .top-bar-r .search-box input {
        display: none
    }

    .top-bar .top-bar-r .search-box img {
        width: 18px
    }

    .top-bar .top-bar-r .login-links {
        font-size: 0
    }

    .top-bar .top-bar-r .login-links img {
        margin: 0;
        width: 19px
    }

    .top-bar .top-bar-r .user .avatar .pic {
        width: auto;
        pointer-events: none
    }

    .top-bar .top-bar-r .user .notice {
        display: none
    }

    .other-banner {
        position: relative;
        margin-top: 70px;
        height: 180px;
        min-height: 180px
    }

    .other-banner>img {
        height: 100%;
        min-height: 180px
    }

    .other-banner>div h2 {
        font-size: 25px
    }

    .other-banner>div h3 {
        font-size: 17px
    }

    .other-banner>div .search {
        position: absolute;
        left: 0;
        bottom: -70px;
        margin: 0;
        width: 100%
    }

    .other-banner>div .search>div {
        padding: 10px;
        height: 40px
    }

    .other-banner>div .search>div img {
        width: 20px
    }

    .other-banner>div .search>div input {
        padding: 0 10px;
        height: 100%;
        font-size: 16px
    }

    .other-banner>div .search a {
        height: 40px;
        font-size: 14px
    }
}

.phone {
    display: none
}

@media (max-width: 1200px) {
    .pc {
        display:none
    }

    .phone {
        display: inline-block
    }

    .go-top {
        right: 3vw;
        bottom: 3vw
    }

    .go-top img {
        width: 40px
    }

    .container {
        padding: 0 3vw
    }

    .header {
        padding-left: 0
    }

    .h-banner .time-line {
        display: none
    }

    .h-banner .control {
        padding: 0;
        position: absolute;
        left: initial;
        top: initial;
        right: 3vw;
        bottom: 30px;
        height: auto;
        width: initial;
        background-color: transparent
    }

    .h-banner .control .logo,.h-banner .control .desc,.h-banner .control .navigation {
        display: none
    }

    .h-banner .control .dots {
        margin: 0
    }

    .h-company {
        padding-top: 20px
    }

    .h-company .intro-desc {
        margin-bottom: 30px;
        padding-right: 0;
        width: 100%;
        text-align: center
    }

    .h-company .intro-desc p {
        text-align: justify
    }

    .h-company .intro-desc h5 {
        margin: 10px 15px
    }

    .h-company .intro-desc .more {
        margin: 20px auto 0
    }

    .h-company .intro-pic {
        width: 100%
    }

    .h-company .intro-total {
        margin-top: 20px
    }

    .h-company .intro-total>div {
        margin-bottom: 20px;
        position: relative;
        width: 50%;
        font-size: 12px
    }

    .h-company .intro-total>div strong {
        font-size: 30px
    }

    .h-company .intro-total>div:nth-child(2n + 1)::after {
        position: absolute;
        right: 0;
        bottom: 0;
        content: "";
        width: 1px;
        height: 60%;
        background-color: #d2d2d2
    }

    .h-news {
        padding: 20px 0;
        height: auto;
        background-position-y: 0 !important
    }

    .h-news .news-list {
        margin-right: -4vw
    }

    .h-news .news-head {
        min-width: 0
    }

    .h-news .news-head h3 {
        font-size: 18px
    }

    .h-news .news-head h3 small {
        display: block;
        color: rgba(255,255,255,0.5);
        font-size: 12px
    }

    .h-news .news-head .news-tabs {
        align-items: center;
        width: 60%;
        cursor: pointer;
        min-width: 0;
        flex-shrink: 0;
        font-size: 14px;
        white-space: nowrap;
        overflow-x: auto;
        flex-wrap: nowrap
    }

    .h-news .news-head .news-tabs a {
        height: initial
    }

    .h-news .news-head .news-tabs a span {
        padding-bottom: 10px
    }

    .h-news .news-head .news-tabs a.active,.h-news .news-head .news-tabs a:hover {
        transform: initial !important
    }

    .h-news .news-head .news-tabs a.active span,.h-news .news-head .news-tabs a:hover span {
        border-bottom-width: 2px !important
    }

    .h-news .news-list .news-desc h5 {
        font-size: 16px
    }

    .h-news .news-list .news-desc p {
        font-size: 14px
    }

    .h-news .news-list .news-desc span {
        font-size: 12px
    }

    .h-video {
        margin: 0 -4vw
    }

    .h-video .video-list .swiper-slide {
        min-height: 300px
    }

    .h-video .video-list .swiper-slide .play_btn {
        left: 32%
    }

    .h-video .video-list .desc {
        width: 32%;
        padding: 20px 10px;
        justify-content: flex-start
    }

    .h-video .video-list .desc h4 {
        margin-bottom: 0;
        font-size: 18px
    }

    .h-video .video-list .desc h5 {
        font-size: 11px
    }

    .h-video .video-list .desc p {
        flex: 1;
        font-size: 12px;
        overflow-y: auto;
        text-align: justify;
        line-height: 1.5
    }

    .h-video .video-list .desc span {
        margin: 10px 0 20px
    }

    .h-landmark .current-landmark {
        padding-bottom: 150px;
        height: auto
    }

    .h-landmark .current-landmark .swiper-slide img {
        height: 300px
    }

    .h-landmark .current-landmark .info {
        z-index: 2;
        width: 100%;
        align-items: flex-end
    }

    .h-landmark .current-landmark .info .control {
        margin-right: 6vw;
        padding-left: 3vw
    }

    .h-landmark .current-landmark .info .control div {
        margin-bottom: 10px;
        width: 40px;
        height: 40px
    }

    .h-landmark .current-landmark .info .desc {
        height: auto;
        padding: 20px;
        padding-bottom: 50px;
        background: rgba(255,255,255,0.8);
        overflow: hidden
    }

    .h-landmark .current-landmark .info .desc span {
        font-size: 12px
    }

    .h-landmark .current-landmark .info .desc h4 {
        margin: 10px 0 10px;
        font-size: 16px
    }

    .h-landmark .current-landmark .info .desc h4::after {
        border-width: 5px
    }

    .h-landmark .current-landmark .info .desc p {
        overflow-y: auto;
        font-size: 12px
    }

    .h-landmark .landmark-thumbs {
        display: none
    }

    .h-vr {
        margin: 30px -4vw 0
    }

    .h-vr .vr-info .vr-title {
        padding: 20px 10px;
        width: 32%;
        justify-content: flex-start
    }

    .h-vr .vr-info .vr-title .head p:first-child {
        font-size: 16px
    }

    .h-vr .vr-info .vr-title .head p:last-child {
        font-size: 10px
    }

    .h-vr .vr-info .vr-title .desc h5 {
        margin-top: 60px;
        font-size: 14px
    }

    .h-recruit {
        background-position-y: 0 !important;
        background-size: cover
    }

    .h-recruit .wrap {
        padding-bottom: 100px;
        position: relative;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%
    }

    .h-recruit .wrap .recruit-info {
        padding-top: 30px;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        text-align: center
    }

    .h-recruit .wrap .recruit-info h4 {
        font-size: 16px
    }

    .h-recruit .wrap .recruit-info span {
        margin-bottom: 15px;
        font-size: 12px
    }

    .h-recruit .wrap .recruit-info p {
        margin: 0 auto;
        width: 80%;
        font-size: 12px
    }

    .h-recruit .wrap .recruit-info .more {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%)
    }

    .h-recruit .wrap .recruit-list {
        z-index: 1;
        bottom: 0;
        display: flex;
        justify-content: center;
        width: 100%
    }

    .h-recruit .wrap .recruit-list .list {
        padding: 20px 10px;
        margin: 0 5px;
        width: 45%
    }

    .h-recruit .wrap .recruit-list .list a {
        margin-bottom: 10px
    }

    .h-recruit .wrap .recruit-list .list a p:first-child {
        margin-bottom: 5px;
        font-size: 14px
    }

    .h-recruit .wrap .recruit-list .list a p:last-child {
        font-size: 10px
    }

    .h-notice {
        padding-bottom: 20px
    }

    .h-notice .notice-top {
        flex-wrap: wrap;
        height: auto
    }

    .h-notice .notice-top .notice-tabs a:not(:last-child) {
        font-size: 16px !important
    }

    .h-notice .notice-top .notice-tabs a:not(:last-child).active {
        font-size: 18px !important
    }

    .h-notice .notice-top .notice-main {
        width: 100%
    }

    .h-notice .notice-top .notice-main .notice-list a p {
        font-size: 14px
    }

    .h-notice .notice-type {
        margin-top: 10px;
        width: 100%;
        gap: 10px
    }

    .h-notice .notice-type a {
        margin: 0;
        height: 56vw
    }

    .h-notice .notice-type a img {
        width: 100%;
        object-fit: cover;
        height: 100%
    }

    .h-notice .notice-type a div p:nth-child(1) {
        font-size: 18px
    }

    .h-notice .notice-type a div p:nth-child(2) {
        font-size: 14px
    }

    .h-notice .notice-type.notice-type-alone a {
        height: 17.33vw
    }

    .h-notice .notice-type.notice-type-alone a div p:nth-child(1) {
        margin-bottom: 0
    }

    .h-notice .notice-type.notice-type-alone a div p:nth-child(2) {
        display: none
    }

    .h-borther h4 {
        padding-bottom: 10px;
        font-size: 18px
    }

    .h-borther .list a {
        width: 50%;
        font-size: 12px
    }

    .h-borther .list a>div {
        font-size: 8px;
        display: none !important
    }

    .h-friend .swiper-slide {
        filter: grayscale(0) !important
    }

    .footer .wrap {
        display: flex;
        border-bottom: none
    }

    .footer .contact {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        margin-right: 0;
        justify-content: space-around
    }

    .footer .contact>img {
        width: 45%;
        max-width: 157px
    }

    .footer .contact .box {
        width: 40%;
        max-width: 250px
    }

    .footer .contact .box .links {
        width: 100% !important
    }

    .footer .bottom-nav {
        display: none
    }

    .footer .copy-right {
        align-items: stretch;
        flex-direction: column-reverse;
        font-size: 12px
    }

    .footer .copy-right .links {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #4a4b4d;
        justify-content: center
    }

    .footer .copy-right .links a {
        padding: 0 10px
    }

    .footer .cr {
        gap: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .third-nav .container {
        padding: 0;
        padding-left: 3vw;
        margin: 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%
    }

    .third-nav a {
        margin: 0;
        flex-shrink: 0;
        height: 45px;
        line-height: 45px
    }

    .intro-1 {
        padding: 35px 0
    }

    .intro-1 .wrap {
        flex-wrap: wrap
    }

    .intro-1 .intro {
        margin-bottom: 20px;
        padding-right: 0;
        width: 100%
    }

    .intro-1 .intro h2 {
        font-size: 15px;
        font-weight: bold
    }

    .intro-1 .intro h3 {
        margin-top: -10px;
        font-size: 18px
    }

    .intro-1 .intro br:nth-of-type(n + 3) {
        display: none
    }

    .intro-1 .pic {
        width: 100%
    }

    .intro-1 .pic img {
        width: 100%
    }

    .intro-2 {
        padding: 35px 0 100px;
        height: auto;
        background-position-y: 0 !important;
        background-size: cover
    }

    .intro-2 .info h2 {
        font-size: 15px;
        font-weight: bold
    }

    .intro-2 .info h3 {
        margin-top: -10px;
        font-size: 18px
    }

    .intro-2 .info br:nth-of-type(n + 3) {
        display: none
    }

    .intro-2 .info p {
        width: 100%;
        font-size: 12px
    }

    .intro-2 .info span {
        margin-top: 20px;
        font-size: 12px
    }

    .intro-2 .info {
        margin-bottom: 50px
    }

    .intro-2 .crux-list {
        flex-wrap: wrap
    }

    .intro-2 .crux-list>div {
        margin-bottom: 20px;
        padding: 0 5%;
        justify-content: center;
        width: 50%
    }

    .intro-2 .crux-list>div::after {
        right: 3% !important
    }

    .intro-2 .crux-list>div:nth-child(2)::after {
        display: none
    }

    .intro-2 .crux-list>div p {
        margin-top: 10px;
        font-size: 14px
    }

    .intro-2 .crux-list>div span {
        font-size: 12px
    }

    .intro-2 .crux-list>div small {
        padding: 0 10%;
        top: 110%;
        font-size: 10px
    }

    .intro-3 {
        min-height: auto;
        padding: 35px 0
    }

    .intro-3 .container {
        margin: 0 3vw;
        width: 70%
    }

    .intro-3 .container .info {
        width: 100%
    }

    .intro-3 .container .info h2 {
        font-size: 15px;
        font-weight: bold
    }

    .intro-3 .container .info h3 {
        margin-top: -10px;
        font-size: 18px
    }

    .intro-3 .container .info br:nth-of-type(n + 3) {
        display: none
    }

    .intro-3 .container .years {
        width: 100%
    }

    .intro-3 .container .years>div {
        margin: 0;
        padding-left: 15px;
        padding-bottom: 20px
    }

    .intro-3 .container .years>div h5 {
        font-size: 16px
    }

    .intro-3 .container .years>div h5 span {
        font-size: 20px
    }

    .intro-3 .container .years>div p {
        font-size: 12px
    }

    .intro-3>img {
        width: 30%
    }

    .intro-4 {
        height: auto;
        padding: 35px 3vw
    }

    .intro-4 .info h4 {
        font-size: 20px;
        margin-bottom: 10px
    }

    .intro-4 .info p {
        margin-top: 20px;
        font-size: 12px
    }

    .intro-4 .result {
        margin-top: 20px;
        font-size: 12px
    }

    .intro-4 br {
        display: none;
        line-height: 0
    }

    .title {
        text-align: center
    }

    .title h2 {
        font-size: 16px;
        font-weight: bold
    }

    .title h3 {
        margin-top: 10px;
        font-size: 18px;
        font-weight: bold
    }

    .leader {
        padding: 35px 0
    }

    .leader .list {
        margin-top: 0
    }

    .leader .list .desc {
        padding: 20px
    }

    .leader .list .desc p {
        display: none
    }

    .leader .list .desc h4 {
        font-size: 16px
    }

    .leader .list .desc h5 {
        margin-bottom: 0;
        font-size: 12px
    }

    .leader .list .desc h5::after {
        display: none
    }

    .organization {
        padding: 35px 0
    }

    .organization .info p {
        margin-bottom: 20px;
        padding: 0 !important
    }

    .organization .all img {
        display: none
    }

    .organization .all img:last-child {
        display: inline-block
    }

    .events .swiper-container-wrap {
        display: none
    }

    .events .swiper-wrapper-phone {
        margin-top: 50px;
        display: flex
    }

    .culture {
        padding: 35px 0
    }

    .culture .info {
        flex-wrap: wrap
    }

    .culture .info .img-box {
        width: 100%
    }

    .culture .info .desc {
        padding: 20px
    }

    .culture .info .desc h6 {
        margin-bottom: 10px
    }

    .honor {
        padding: 35px 0
    }

    .honor .list {
        justify-content: space-between
    }

    .honor .list>div {
        margin: 0;
        margin-bottom: 30px;
        width: 48%
    }

    .honor .list>div p {
        padding: 15px 0
    }

    .pd60 {
        padding: 35px 0
    }

    .ecology .list {
        justify-content: space-between
    }

    .ecology .list a {
        margin-right: 0;
        padding: 20px 10px;
        width: 48%
    }

    .ecology .list a .desc p {
        font-size: 14px
    }

    .ecology .list a .desc p span {
        font-size: 20px
    }

    .ecology .list a .desc p i {
        font-size: 14px
    }

    .ecology .list a .desc h4 {
        font-size: 15px
    }

    .ecology .list a .mr {
        font-size: 12px
    }

    .ecology .list a:hover .mr {
        text-indent: 10px
    }

    .duty {
        padding: 35px 3vw
    }

    .duty .list .item {
        width: 100%;
        background: #fff;
        border: none;
        padding: 10px
    }

    .duty .list .item.hot {
        margin-bottom: 20px;
        display: flex
    }

    .duty .list .item.hot .img-box {
        width: 46%
    }

    .duty .list .item.hot .desc {
        padding: 0;
        padding-left: 20px;
        background: transparent;
        color: #222222
    }

    .duty .list .item.hot .desc h3 {
        margin: 0;
        margin-bottom: 20px;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical
    }

    .duty .list .item:nth-child(2) {
        display: flex
    }

    .duty .list .item .desc h3 {
        font-size: 16px
    }

    .duty .list .item .desc p {
        font-size: 12px
    }

    .innovate {
        padding: 35px 3vw
    }

    .innovate .list {
        justify-content: space-between
    }

    .innovate .list a {
        margin-right: 0;
        padding: 20px 10px;
        width: 48%
    }

    .innovate .list a p {
        font-size: 14px
    }

    .innovate .list a p strong {
        font-size: 20px
    }

    .innovate .list a p i {
        font-size: 14px
    }

    .innovate .list a h3 {
        margin-bottom: 10px;
        font-size: 15px
    }

    .innovate .list a .mr {
        font-size: 12px
    }

    .innovate .list a:hover .mr {
        padding-left: 10%
    }

    .news .list a {
        padding: 0;
        border: none;
        flex-direction: column-reverse
    }

    .news .list a .desc {
        padding: 10px;
        max-width: 100%;
        width: 100%;
        background-color: #fff
    }

    .news .list a .desc .time p {
        font-size: 14px
    }

    .news .list a .desc .time p:first-child {
        font-size: 20px
    }

    .news .list a .desc h4 {
        margin: 10px 0;
        font-size: 16px
    }

    .news .list a .desc p {
        line-height: 1.5;
        font-size: 12px
    }

    .news .list a .desc>span {
        margin-top: 0
    }

    .news .list a .img-box {
        width: 100%;
        max-width: 100%
    }

    .picture .wrap {
        padding: 0
    }

    .picture .wrap .title {
        text-align: left
    }

    .picture .wrap .search {
        width: auto
    }

    .picture .wrap .search img {
        width: 25px
    }

    .picture .grid .grid-item {
        width: 48%
    }

    .picture .grid .grid-item p {
        font-size: 13px;
        bottom: 0 !important
    }

    .news-info .back {
        display: none
    }

    .news-info .wrap .info {
        width: 100%
    }

    .news-info .wrap .info .info-title {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom-width: 2px
    }

    .news-info .wrap .info .info-title h3 {
        font-size: 18px
    }

    .news-info .wrap .info .info-title .share {
        font-size: 12px
    }

    .news-info .wrap .recommend {
        display: none
    }

    .business {
        padding: 35px 0
    }

    .business .list {
        height: auto
    }

    .business .swiper-wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap
    }

    .business .swiper-wrapper .swiper-slide {
        margin: 0;
        margin-bottom: 20px;
        width: 48%
    }

    .business .swiper-wrapper .swiper-slide span {
        margin-bottom: 20px;
        font-size: 30px
    }

    .business .swiper-wrapper .swiper-slide p {
        display: none
    }

    .business .swiper-wrapper .swiper-slide h3 {
        font-size: 18px
    }

    .business .swiper-wrapper .swiper-slide h4 {
        font-size: 14px
    }

    .business .swiper-wrapper .swiper-slide>div:first-child {
        height: 150px
    }

    .winning .list {
        justify-content: space-between
    }

    .winning .list a {
        width: 48%;
        margin-right: 0
    }

    .winning .list a:nth-child(3n) {
        margin-right: none
    }

    .winning .list a .img-box span {
        font-size: 12px
    }

    .winning .list a .desc {
        padding: 10px
    }

    .winning .list a .desc h3 {
        margin-bottom: 5px;
        font-size: 16px
    }

    .winning .list a .desc p {
        font-size: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis
    }

    .third-wrap .title {
        text-align: left
    }

    .third-wrap .third {
        margin-left: 20px;
        flex: 1;
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .third-wrap .third a {
        white-space: nowrap
    }

    .exhibition .list .item {
        width: 100%
    }

    .exhibition .list .item .desc {
        transform: translateY(0) !important
    }

    .exhibition .list .item .desc h3 {
        font-size: 18px
    }

    .exhibition .list .item .desc h4 {
        font-size: 14px
    }

    .exhibition .list .item .desc .mr {
        font-size: 12px
    }

    .awards .list a {
        padding: 10px 5px 10px 10px;
        position: relative
    }

    .awards .list a .date {
        padding: 0;
        position: absolute;
        left: 10px;
        top: 10px
    }

    .awards .list a .date p {
        font-size: 12px;
        line-height: initial
    }

    .awards .list a .date p:first-child {
        font-size: 14px
    }

    .awards .list a .date p:first-child span {
        font-size: 12px
    }

    .awards .list a .img-box {
        margin-right: 10px;
        width: 100px
    }

    .awards .list a .img-box+.date {
        left: 120px
    }

    .awards .list a .desc {
        min-width: 0
    }

    .awards .list a .desc h4 {
        padding-left: 50px;
        font-size: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .awards .list a .desc p {
        font-size: 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden
    }

    .project-news .swiper-pagination {
        right: 10px !important;
        bottom: 10px !important
    }

    .project-news .hots a {
        flex-direction: column
    }

    .project-news .hots a .img-box {
        width: 100%
    }

    .project-news .hots a .desc {
        padding: 10px
    }

    .project-news .hots a .desc .time {
        margin-bottom: 10px
    }

    .project-news .hots a .desc .time p {
        font-size: 13px
    }

    .project-news .hots a .desc .time p:first-child {
        font-size: 16px
    }

    .project-news .hots a .desc .time p:first-child span {
        font-size: 12px
    }

    .project-news .hots a .desc h3 {
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 16px
    }

    .project-news .hots a .desc p {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden
    }

    .project-news .hots a .desc .mr {
        width: 100px;
        height: 30px;
        font-size: 12px
    }

    .project-news .list {
        margin-top: 30px
    }

    .project-news .list a {
        padding: 10px;
        background-color: #fff
    }

    .project-news .list a .img-box {
        width: 100px;
        flex-shrink: 0
    }

    .project-news .list a .img-box+.time {
        left: 120px
    }

    .project-news .list a .desc {
        padding-right: 0;
        position: relative;
        min-width: 0;
        padding-left: 10px
    }

    .project-news .list a .desc .time {
        padding: 0;
        position: absolute;
        left: 10px;
        top: 0
    }

    .project-news .list a .desc .time p {
        font-size: 12px;
        line-height: initial
    }

    .project-news .list a .desc .time p:first-child {
        font-size: 14px
    }

    .project-news .list a .desc .time p:first-child span {
        font-size: 12px
    }

    .project-news .list a .desc .text {
        min-width: 0
    }

    .project-news .list a .desc h3 {
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 16px;
        padding-left: 50px
    }

    .project-news .list a .desc p {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden
    }

    .project-info .back {
        display: block
    }

    .project-info .swiper-container {
        height: auto;
        font-size: 0
    }

    .project-info .desc {
        padding: 20px 10px;
        transform: initial;
        width: 100%
    }

    .project-info .desc h3 {
        margin-bottom: 10px;
        font-size: 18px
    }

    .project-info .desc span {
        font-size: 12px
    }

    .project-info .desc .richtext {
        margin-top: 20px;
        font-size: 14px
    }

    .contact-wrap {
        padding: 0 3vw
    }

    .contact-wrap .contact {
        padding: 0;
        flex-direction: column;
        background-color: transparent
    }

    .contact-wrap .contact .form {
        margin-top: 35px;
        padding: 20px;
        width: 100%;
        background-color: #fff
    }

    .contact-wrap .contact .form h3 {
        margin-bottom: 50px;
        position: relative;
        text-align: center;
        font-size: 20px
    }

    .contact-wrap .contact .form h3::after {
        margin: 0;
        margin-top: 10px;
        position: absolute;
        left: 50%;
        width: 2em;
        transform: translateX(-50%)
    }

    .contact-wrap .contact .form input {
        font-size: 14px
    }

    .contact-wrap .contact .form textarea {
        font-size: 14px;
        height: 150px
    }

    .contact-wrap .contact #map {
        flex: initial;
        margin: 0 -3vw;
        height: 300px
    }

    .contact-wrap .us {
        margin: 0 -3vw;
        padding: 30px 3vw;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .contact-wrap .us>div {
        margin: 0;
        padding: 10px;
        flex: initial !important;
        justify-content: flex-start;
        width: 100%
    }

    .contact-wrap .us>div img {
        margin-right: 10px;
        width: 30px
    }

    .contact-wrap .us>div h5 {
        margin-bottom: 10px;
        font-size: 16px
    }

    .contact-wrap .us>div p {
        font-size: 12px
    }

    .contact-wrap .us>span {
        display: none
    }

    .contact-wrap .us .email {
        width: 100%
    }

    .contact-wrap .us .email>div,.contact-wrap .us .email>a {
        margin: 0;
        padding: 10px 0;
        flex: initial !important;
        justify-content: flex-start;
        width: 100%
    }

    .contact-wrap .us .email>div img,.contact-wrap .us .email>a img {
        margin-right: 10px;
        width: 30px
    }

    .contact-wrap .us .email>div h5,.contact-wrap .us .email>a h5 {
        margin-bottom: 10px;
        font-size: 16px
    }

    .contact-wrap .us .email>div p,.contact-wrap .us .email>a p {
        font-size: 12px
    }

    .expert .list {
        display: flex;
        justify-content: space-between
    }

    .expert .list>div {
        margin: 0;
        width: 48%
    }

    .expert .list>div .desc {
        padding: 10px
    }

    .expert .list>div .desc h5 {
        font-size: 16px
    }

    .expert .list>div .desc h6 {
        margin-bottom: 10px;
        padding: 5px 0;
        font-size: 14px
    }

    .expert .list>div .desc p {
        font-size: 12px
    }

    .privacy {
        margin-top: 140px
    }

    .privacy .wrap {
        padding: 20px
    }

    .privacy .wrap strong {
        margin: 10px 0
    }

    .privacy .wrap>div {
        margin: 10px 0
    }

    .search-result .head {
        padding: 0
    }

    .search-result .head div {
        font-size: 12px;
        width: 40%
    }

    .search-result .tabs {
        margin-bottom: 20px;
        padding: 10px 0 0 0;
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .search-result .tabs a {
        margin-right: 25px;
        white-space: nowrap;
        height: 40px;
        font-size: 16px
    }

    .search-result .tabs a span {
        font-size: 14px
    }

    .party .hots {
        display: none
    }

    .party .list {
        margin-top: 35px
    }

    .party .list a {
        padding: 10px
    }

    .party .list a.hot {
        display: flex
    }

    .party .list a div {
        padding-right: 20px;
        position: relative;
        margin-right: 20px
    }

    .party .list a div p {
        font-size: 13px
    }

    .party .list a div p:first-child {
        font-size: 16px
    }

    .party .list a div::after {
        content: "";
        position: absolute;
        top: 10%;
        right: 0;
        height: 80%;
        width: 1px;
        background-color: #93b7d4
    }

    .party .list a h3 {
        font-size: 16px
    }

    .recruit {
        background-color: transparent
    }

    .recruit .sec-1 {
        padding: 20px 0 30px
    }

    .recruit .sec-1 h2 {
        font-size: 18px
    }

    .recruit .sec-1 div {
        margin-top: 30px;
        padding: 0 10%;
        font-size: 14px
    }

    .recruit .sec-2 img {
        margin: 30px 0 20px
    }

    .recruit .sec-2 div {
        padding: 0 10%
    }

    .recruit .sec-3 {
        padding: 20px 10px 0
    }

    .recruit .sec-3 .list>div {
        margin-bottom: 30px;
        padding-top: 20px;
        width: 47%
    }

    .recruit .sec-3 .list>div h4 {
        font-size: 20px
    }

    .recruit .sec-3 .list>div h6 {
        margin: 10px 0 20px
    }

    .recruit .sec-3 .list>div p {
        font-size: 12px;
        height: 200px
    }

    .recruit .sec-4 {
        padding-top: 30px;
        background-color: #fff
    }

    .recruit .sec-4 .container .desc {
        top: initial;
        right: 0;
        bottom: 0;
        padding: 20px
    }

    .recruit .sec-4 .container .desc h4 {
        margin-bottom: 10px;
        font-size: 18px
    }

    .recruit .sec-4 .container .desc p {
        font-size: 13px
    }

    .recruit .sec-4 .container .swiper-pagination {
        left: 3vw
    }

    .recruit .sec-4 .container .swiper-pagination span.swiper-pagination-bullet-active {
        height: 40px
    }

    .recruit .sec-5 {
        padding: 30px 0
    }

    .recruit .sec-5 .head h5 {
        font-size: 24px
    }

    .recruit .sec-5 .head p {
        font-size: 12px
    }

    .recruit .sec-5 .list img {
        width: 30%
    }

    .recruit .sec-6 {
        padding: 0;
        padding-top: 100px
    }

    .recruit .sec-6 .head h5 {
        font-size: 18px
    }

    .recruit .sec-6 .head p {
        font-size: 14px
    }

    .recruit .sec-6 .tabs>div {
        font-size: 16px
    }

    .recruit .sec-6 .content {
        padding-top: 20px
    }

    .recruit .sec-6 .content .list {
        padding: 0 2vw;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .recruit .sec-6 .content .list a {
        width: 40%;
        flex: initial;
        border: none !important
    }

    .recruit .sec-6 .content .list a h6 {
        margin-bottom: 10px;
        font-size: 14px
    }

    .recruit .sec-6 .all {
        padding: 20px 0
    }

    .recruit-items {
        padding-top: 40px
    }

    .recruit-items .tabs {
        font-size: 18px
    }

    .recruit-items .tabs div {
        margin-right: 30px;
        padding-bottom: 10px
    }

    .recruit-items .list {
        margin-top: 20px
    }

    .recruit-items .list a {
        padding: 15px
    }

    .recruit-items .list a .head p {
        font-size: 14px
    }

    .recruit-items .list a .head p:nth-child(1) {
        font-size: 16px
    }

    .recruit-items .list a .mid {
        margin: 10px 0
    }

    .recruit-items .list a .bot {
        font-size: 12px
    }

    .recruit-detail {
        margin: 0 15px;
        margin-top: 60px;
        padding: 20px
    }

    .recruit-detail .head {
        margin-bottom: 10px;
        padding-bottom: 10px
    }

    .recruit-detail .head>div:first-child p:first-child {
        font-size: 18px
    }

    .recruit-detail .head>div:first-child p:first-child span {
        margin-top: 5px;
        display: block;
        margin-left: 0;
        font-size: 12px
    }

    .recruit-detail .head>div:first-child p:last-child {
        font-size: 14px
    }

    .recruit-detail .head>div:first-child p:last-child span {
        font-size: 16px
    }

    .recruit-detail .head>div:last-child {
        flex-direction: column;
        justify-content: flex-start
    }

    .recruit-detail .head>div:last-child p {
        margin-bottom: 10px;
        width: 100%;
        font-size: 12px
    }

    .recruit-detail .head>div:last-child p span {
        margin-right: 10px
    }

    .recruit-detail .main .item {
        margin-bottom: 30px
    }

    .recruit-detail .main .item h3 {
        font-size: 16px
    }

    .recruit-detail .main .item div {
        font-size: 13px
    }

    .modal {
        padding: 20px
    }

    .modal h4 {
        padding-bottom: 10px;
        margin-bottom: 10px
    }

    .modal .form {
        width: 100%;
        min-width: 100%
    }

    .modal .form .line {
        height: 40px
    }

    .modal .form .line>span {
        width: 86px;
        font-size: 14px;
        line-height: 38px;
        text-align-last: initial
    }

    .modal .form .line #sex,.modal .form .line #edu {
        padding: 0 10px !important;
        height: 40px !important
    }

    .modal .form .line #sex ul,.modal .form .line #edu ul {
        top: 40px !important
    }

    .modal .form .line .input-wrap input {
        padding: 0 10px
    }

    .modal .form .line .input-wrap .file {
        padding: 0 10px;
        font-size: 12px
    }

    .modal .form .line .input-wrap .file p {
        flex-shrink: 0
    }

    .modal .form .line .input-wrap .file p:first-child {
        margin-right: 10px
    }

    .modal .form .line .input-wrap .drag+.slider-item {
        touch-action: pan-y;
        height: 38px;
        line-height: 38px
    }

    .modal .activity-desc {
        padding: 0
    }

    .modal .activity-desc h5 {
        margin-bottom: 10px;
        font-size: 18px
    }

    .modal .activity-desc .item {
        margin-bottom: 15px
    }

    .modal .activity-desc .item div {
        font-size: 12px
    }

    .modal .work-info {
        padding: 0
    }

    .modal .work-info .img-box {
        display: none
    }

    .modal .work-info .desc {
        padding: 0
    }

    .modal .work-info .desc h5 {
        font-size: 18px
    }

    .modal .work-info .desc h5 span {
        font-size: 12px;
        padding: 2px 8px
    }

    .modal .work-info .desc .info {
        margin-bottom: 10px;
        padding-bottom: 10px
    }

    .modal .work-info .desc .info p {
        font-size: 14px
    }

    .modal .work-info .desc .info h6 {
        font-size: 14px
    }

    .modal .work-info .desc .reason {
        padding-top: 0;
        font-size: 12px
    }

    .modal .work-info .desc .reason .btn {
        width: 60%;
        height: 40px;
        margin: 20px auto
    }

    .activity {
        padding-left: 3vw;
        padding-right: 3vw
    }

    .activity .activity-list {
        margin: 0 -3vw;
        padding: 35px 3vw
    }

    .activity .activity-list a {
        margin-bottom: 20px;
        width: 100%
    }

    .activity .activity-list a h3 {
        font-size: 16px
    }

    .activity .activity-list a .time {
        font-size: 12px
    }

    .activity .activity-list a .visit {
        font-size: 12px
    }

    .activity .activity-list a .visit span {
        margin-right: 20px
    }

    .activity-info {
        margin: 0 -3vw;
        padding: 0
    }

    .activity-info .info {
        flex-direction: column
    }

    .activity-info .info .img-box {
        width: 100%
    }

    .activity-info .info .desc {
        padding: 10px;
        width: 100%
    }

    .activity-info .info .desc h3 {
        margin-bottom: 10px;
        font-size: 16px
    }

    .activity-info .info .desc p {
        font-size: 12px
    }

    .activity-info .info .desc .time {
        font-size: 12px
    }

    .activity-info .info .desc .time>span {
        padding: 5px !important
    }

    .activity-info .info .desc .time .visit span {
        margin-right: 10px !important
    }

    .activity-info .info .desc .rule a {
        font-size: 12px
    }

    .activity-info .info .desc .tools {
        font-size: 12px
    }

    .activity-info .info .desc .tools .up {
        padding: 10px 15px
    }

    .activity-info .filter {
        position: relative;
        padding: 0 3vw 10px;
        font-size: 14px
    }

    .activity-info .filter .total span {
        font-size: 16px
    }

    .activity-info .filter .types {
        font-size: 14px
    }

    .activity-info .filter .types a {
        margin-left: 20px
    }

    .activity-info .filter .search {
        position: absolute;
        left: 20%;
        top: 127%;
        width: 60%
    }

    .activity-info .list {
        padding: 0 3vw;
        padding-top: 40px;
        justify-content: space-between
    }

    .activity-info .list a {
        margin-right: 0 !important;
        margin-bottom: 15px;
        width: 47%
    }

    .activity-info .list a .img-box div {
        font-size: 12px;
        padding: 5px;
        width: 40px
    }

    .activity-info .list a .img-box div img {
        width: 15px
    }

    .activity-info .list a .desc {
        padding: 10px
    }

    .activity-info .list a .desc h3 {
        font-size: 16px
    }

    .activity-info .list a .desc p {
        margin-bottom: 0;
        font-size: 12px
    }

    .activity-info .list a .desc .visit {
        font-size: 12px
    }

    .activity-info .list a .desc .user {
        padding: 10px 0 0 0;
        font-size: 12px
    }

    .activity-info .list a .desc .user span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .activity-info .list a .desc .user i {
        font-size: 8px !important
    }

    .activity-works {
        margin: 0;
        padding: 10px
    }

    .activity-works .head {
        margin-bottom: 20px;
        flex-direction: column;
        border-bottom: 1px solid #dddddd
    }

    .activity-works .head .desc {
        padding: 0
    }

    .activity-works .head .desc h3 {
        font-size: 18px
    }

    .activity-works .head .desc>p {
        margin: 10px 0 15px
    }

    .activity-works .head .desc .visit {
        margin-bottom: 20px;
        height: auto;
        font-size: 12px;
        flex-wrap: wrap
    }

    .activity-works .head .desc .visit p {
        margin: 0;
        margin-right: 25px
    }

    .activity-works .head .desc .visit span {
        margin-right: 25px
    }

    .activity-works .head .desc .visit>div {
        margin-top: 10px;
        width: 100%
    }

    .activity-works .head .user {
        border-left: 0;
        padding: 0
    }

    .activity-works .head .user img {
        width: 60px;
        height: 60px;
        object-fit: cover
    }

    .activity-works .head .user p:first-child {
        font-size: 16px
    }

    .activity-works .head .user p:last-child {
        font-size: 12px
    }

    .activity-works .list {
        padding: 0
    }

    .activity-works .like a {
        height: 45px;
        width: 100px;
        font-size: 15px
    }

    .activity-works .like a img {
        width: 25px
    }

    .login {
        overflow-y: auto
    }

    .login .logo {
        left: 20px;
        top: 3vw
    }

    .login .logo img {
        width: 100px
    }

    .login .main {
        margin-top: 80px;
        padding: 0 20px 0;
        position: relative;
        left: initial;
        top: initial;
        width: 100%;
        transform: initial
    }

    .login .main .content {
        padding: 0 20px 20px
    }

    .login .main .head {
        padding: 10px 0;
        font-size: 17px
    }

    .login .main .tabs {
        margin: 0;
        margin-top: 20px;
        justify-content: center
    }

    .login .main .tabs div {
        margin-bottom: 20px;
        padding: 10px 0;
        font-size: 14px
    }

    .login .main .tabs #tab1 {
        display: none
    }

    .login .main .items .form .line {
        height: 40px
    }

    .login .main .items .form .line a {
        top: 11px;
        font-size: 12px
    }

    .login .main .items .form .line>input {
        font-size: 14px
    }

    .login .main .items .form .verify input {
        height: 40px
    }

    .login .main .items .form .verify .send {
        height: 40px
    }

    .login .main .items .form .slider-item {
        height: 40px
    }

    .login .main .items .form .slider-item .slider-text {
        line-height: 38px
    }

    .login .main .items .form .submit button {
        height: 40px;
        font-size: 14px;
        letter-spacing: 10px
    }

    .login .main .items .form .submit .remember {
        font-size: 12px
    }

    .login .main .link {
        padding: 20px 0;
        font-size: 12px
    }

    .login .main .other {
        padding: 0
    }

    .login .main .other p {
        margin-bottom: 15px;
        font-size: 12px
    }

    .login .main .other img {
        width: 35px
    }

    .register .items {
        padding-top: 20px !important
    }

    .my {
        margin: 200px 3vw 0;
        padding: 0
    }

    .my .info {
        flex-direction: column
    }

    .my .info .avatar {
        width: 100%
    }

    .my .info .avatar>img {
        border-width: 3px;
        width: 130px;
        height: 130px
    }

    .my .info .avatar div h4 {
        margin-bottom: 5px;
        font-size: 18px
    }

    .my .info .avatar div p {
        font-size: 12px
    }

    .my .info .tabs {
        padding: 30px 20px;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between
    }

    .my .info .tabs a {
        margin: 0;
        font-size: 13px
    }

    .my .main .tabs {
        padding: 0 20px;
        justify-content: flex-start;
        font-size: 10px
    }

    .my .main .tabs a {
        margin: 0;
        margin-right: 15px
    }

    .my .main .activity-list {
        padding-top: 20px
    }

    .my .main .activity-list a {
        margin-bottom: 20px;
        width: 100%
    }

    .my .main .activity-list a h3 {
        font-size: 16px
    }

    .my .main .activity-list a .time {
        font-size: 12px
    }

    .my .main .activity-list a .visit {
        font-size: 12px
    }

    .my .main .activity-list a .visit span {
        margin-right: 20px
    }

    .my .main .works {
        margin: 0
    }

    .my .main .works a {
        width: 100%
    }

    .my .main .works a .desc {
        padding: 10px
    }

    .my .main .works a .desc h3 {
        font-size: 16px
    }

    .my .main .works a .desc h3 span {
        padding: 2px 8px;
        font-size: 12px
    }

    .my .main .works a .desc>p {
        margin-top: 10px;
        font-size: 14px
    }

    .my .main .works a .desc .visit .btn {
        font-size: 12px
    }

    .my .main .works a .desc h5 {
        padding-top: 10px
    }

    .my .main .user-info {
        padding: 0 10px
    }

    .my .main .user-info .radio-box {
        margin-right: 20px;
        font-size: 13px
    }

    .my .main .user-info .line {
        padding: 15px 0
    }

    .my .main .user-info .line>span {
        flex-shrink: 0;
        width: auto !important;
        font-size: 13px
    }

    .my .main .user-info .line-box {
        padding: 15px 0
    }

    .my .main .user-info .line-box .card {
        flex-direction: column;
        width: 100%;
        padding-bottom: 0
    }

    .my .main .user-info .line-box .card img {
        margin-right: 5%;
        max-width: 95%;
        height: auto !important
    }

    .my .main .user-info .line-box .card p {
        max-width: 95%
    }

    .my .main .user-info .line-box .input-box {
        font-size: 13px
    }

    .my .main .user-info .line-box .line {
        padding-bottom: 0;
        margin-bottom: 0;
        flex-wrap: wrap
    }

    .my .main .user-info .line-box .line .fs {
        width: 100% !important
    }

    .my .main .user-info .line-box .line .fs+.input-box {
        padding: 10px 20px
    }

    .my .main .user-info .bind {
        padding: 0
    }

    .my .main .user-info .bind .input-box {
        font-size: 13px
    }

    .my .main .notice-list {
        padding: 0 10px
    }

    .my .main .notice-list>div h4 {
        font-size: 16px
    }

    .my .main .notice-list>div h4 span {
        margin-left: 10px;
        font-size: 12px
    }

    .my .main .notice-list>div p {
        font-size: 12px
    }

    .president {
        padding: 130px 0 60px;
        flex-direction: column
    }

    .president .cover {
        width: 100%
    }

    .president .cover img {
        display: none
    }

    .president .cover img:nth-child(2) {
        display: block
    }

    .president .form {
        padding: 15px 20px
    }

    .president .form .text textarea {
        height: 70px
    }

    .president .form .code img {
        width: 80px
    }

    .float-box>div {
        transform: translateX(145px);
        transition: all .5s ease
    }

    .float-box>div.hover {
        transform: translateX(0)
    }
}

.layui-layer-padding {
    color: #666
}

.richtext h1,.richtext h2,.richtext h3,.richtext h4,.richtext h5,.richtext h6,.richtext strong {
    font-weight: bold
}

.richtext i {
    font-style: italic
}

/*列表*/

.ip-container {
  display: flex;
  gap: 20px;
  background-color: #fff;
  margin: 40px auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.ip-left {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ip-left-item {
 
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
 
  gap: 10px;
}
.ip-left-item-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 5px;
}

.ip-left-item-top::after {
  content: "";
  display: block;
  width: 0;
  height: 0px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #fff;
}

.ip-left-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ip-left-item-title img {
  width: 35px;
  height: 35px;
}
.ip-left-filter {
  display: none;
  color: #222;
  border-radius: 5px;
  width: 100%;
}
.ip-left-filter h3 {
  background-color: #f3f7fc;
  padding: 10px;
  font-size: 20px;
  border-radius: 5px 5px 0 0;
}
.ip-left-filter-item {
  border: 1px solid #ccc;
  border-radius: 0 0 5px 5px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ip-left-filter-item p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.ip-left-filter-item p::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
}
.ip-left-filter-item .ip-filter-active::before{
    background-color: #3c81b8;
}

.ip-right {
  flex: 1;
}
.ip_search-box {
  margin-bottom: 15px;
  display: flex;
  flex-shrink: 0;
  padding: 0 15px;
}

.ip_search-input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 4px 0 0 4px;
}

.ip_search-btn {
  background-color: #3c81b8;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.ip-left-item.active .ip-left-item-top {
  background-color: #3c81b8;
  color: #fff;
}
.ip-left-item.active img {
  filter: brightness(0) invert(1);
}
.ip-left-item.active .ip-left-filter {
  display: block;
}

@media (max-width: 768px) {
  .ip-container {
    flex-direction: column;
  }
  .ip-left {
    width: 100%;
  }
}
