.banner {
    width: 100%;
    position: relative;
    height: 480px;
    overflow: hidden;
}
.banner img {
    height: 480px;
    object-fit: cover;
}
.banner .search-container {
    width: 530px;
    height: 44px;
    background-color: rgba(8, 21, 56, 0.6);
    border-radius: 22px;
    border: solid 1px #fff;
    position: absolute;
    z-index: 2;
    top: 326px;
    left: 50%;
    transition: all 300ms;
    transform: translateX(-50%);
}
.banner .search-container.active {
    background-color: rgba(8, 21, 56, 0.8);
    border-color: #bc9459;
}
.banner .search-container .search-txt {
    width: 100%;
    height: 100%;
    padding: 17px 26px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
}
.banner .search-container .search-txt::placeholder {
    color: #fff;
}
.banner .search-container .search-btn {
    width: 17px;
    height: 17px;
    margin-right: 22px;
    background: url(../img/icon_index_search.png) left top/cover no-repeat;
    outline: none;
    border: none;
    cursor: pointer;
}


.top-news {
    padding: 60px 0;
    position: relative;
}
.top-news .tabs {
    background-color: #f4f6f8;
}
.top-news .tabs ul a {
    display: block;
    width: 110px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333;
    position: relative;
    transition: all 300ms;
}
.top-news .tabs ul a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background-color: transparent;
    transition: all 300ms;
}
.top-news .tabs ul a.active {
    background-color: #fff;
    color: #103c9a;
}
.top-news .tabs ul a.active::after {
    background-color: #103c9a;
}
.top-news .tabs .more {
    color: #6c7786;
    margin-right: 20px;
}
.top-news .tabs .more:hover {
    color: #103c9a;
}
.top-news .tabs-cont {
    margin-top: 35px;
}
.top-news .tabs-cont > div{
    display: none;
}
.top-news .tabs-cont .info {
    width: 550px;
    float: right;
}
.top-news .tabs-cont .info .top .title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.top-news .tabs-cont .info .top .title a {
    color: #333;
}
.top-news .tabs-cont .info .top .title a:hover {
    color: #bc9459;
}
.top-news .tabs-cont .info .top .desc {
    color: #999;
    margin-top: 30px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.top-news .tabs-cont .info .bottom li {
    line-height: 28px;
}
.top-news .tabs-cont .info .bottom li a {
    display: flex;
    justify-content: space-between;
}
.top-news .tabs-cont .info .bottom li a:hover .tt span {
    color: #bc9459;
}
.top-news .tabs-cont .info .bottom li a .tt {
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.top-news .tabs-cont .info .bottom li a .tt i {
    width: 33px;
    height: 16px;
    background: url(../img/icon_yw.jpg) center center no-repeat;
    flex-shrink: 0;
}
.top-news .tabs-cont .info .bottom li a .tt span {
    color: #333;
    margin-left: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.top-news .tabs-cont .info .bottom li a .date {
    color: #999;
    flex-shrink: 0;
}
.top-news .tabs-cont .info .line {
    border-bottom: 1px dashed #dadada;
    margin: 25px 0;
}

.top-news .pic-news {
    float: left;
}
.pic-news{
    position: relative;
    overflow: hidden;
}
.pic-news .pic-news-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all 300ms;
}

.pic-news .pic-news-item .imgs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    background-image: url(../img/lazy_loading.png);
    background-position: center;
}
.pic-news .tags {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    padding: 0 12px;
}
.pic-news .tags .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    flex: 1;
    color: #fff;
    font-size: 14px;
}
.pic-news .tags .pager {
    flex-shrink: 0;
    color: #fff;
}
.pic-news .tags .pager .s1 {
    font-size: 16px;
    color: #ffd290;
    font-weight: 600;
}
.pic-news .tags .pager .page-btn {
    width: 6px;
    height: 11px;
    background: url(../img/icon_arrow_01.png) center center no-repeat;
    transition: all 300ms;
}
.pic-news .tags .pager .page-btn.prev {
    transform: rotate(-180deg);
    margin-right: 10px;
}
.pic-news .tags .pager .page-btn.next {
    margin-left: 10px;
}
.pic-news .tags .pager .line {
    margin: 0 5px;
}
.pic-news .tags .pager .swiper-button-disabled{
    opacity: 0;
    visibility: hidden;
}



.activity-job {
    background: #f6f6fb;
    padding: 40px 0;
}
.activity-job .job, .activity-job .activity {
    background: #fff;
    padding: 25px 20px;
}
.activity-job .activity {
    width: 760px;
    height: 444px;
    padding-bottom: 40px;
}
.activity-job .activity .bd {
    margin-top: 20px;
    width: 100%;
}
.activity-job .activity .bd .swiper-scrollbar {
    width: 100%;
    height: 2px;
    background-color: #f1f1f1;
    position: relative;
    margin-top: 40px;
}
.activity-job .activity .bd .swiper-scrollbar .swiper-scrollbar-drag {
    width: 38px;
    height: 38px;
    background: none;
    position: absolute;
    top: -19px;
}
.activity-job .activity .bd .swiper-scrollbar .swiper-scrollbar-drag:hover::after {
    background-position: 0 -40px;
}
.activity-job .activity .bd .swiper-scrollbar .swiper-scrollbar-drag::after {
    width: 38px;
    height: 38px;
    content: "";
    display: block;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    background-image: url(../img/icon_scrollbar_drag.png);
    background-repeat: no-repeat;
    cursor: pointer;
}
.activity-job .activity .bd .activity-wrap {
    padding-bottom: 10px;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper {
    display: flex;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide {
    width: 230px;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a {
    border: 1px solid #eee;
    display: block;
    background: #fff;
    transition: all 300ms;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .img {
    width: 100%;
    height: 132px;
    position: relative;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .img .tag {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    line-height: 1;
    padding: 7px 12px;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont {
    padding: 20px 12px 15px;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont .tt span {
    color: #333;
    font-weight: 400;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-right: 10px;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont .tt i.hot {
    width: 16px;
    height: 18px;
    background: url(../img/icon_activity_01.png) left top no-repeat;
    flex-shrink: 0;
}

.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont .tt .underway-container .txt {
    font-size: 12px;
    margin-left: 5px;
    color: #ff471a;
    line-height: 1;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont .date {
    background-color: #fbf8f1;
    color: #c59d60;
    font-size: 12px;
    line-height: 1;
    padding: 6px;
    margin-top: 10px;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont .address {
    margin-top: 15px;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont .address i {
    width: 13px;
    height: 15px;
    background: url(../img/icon_address_01.png) left top no-repeat;
    flex-shrink: 0;
}
.activity-job .activity .bd .activity-wrap .swiper-wrapper .swiper-slide a .cont .address span {
    font-size: 12px;
    color: #6c7786;
    line-height: 18px;
    margin: -2px 0 0 8px;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.activity-job .job {
    width: 420px;
}
.activity-job .job .bd {
    margin-top: 20px;
}
.activity-job .job .bd .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.activity-job .job .bd .menu .item {
    height: 60px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
    transition: all 300ms;
}
.activity-job .job .bd .menu .item .txt {
    line-height: 15px;
    color: #333;
    transition: all 300ms;
}
.activity-job .job .bd .menu .item:hover {
    border-color: #103c9a;
    background: #103c9a;
}
.activity-job .job .bd .menu .item:hover .txt {
    color: #fff;
}
.activity-job .job .bd .menu .item:hover .icon.icon-01 {
    background-position: -374px 0;
}
.activity-job .job .bd .menu .item:hover .icon.icon-02 {
    background-position: -34px 0;
}
.activity-job .job .bd .menu .item:hover .icon.icon-03 {
    background-position: -102px 0;
}
.activity-job .job .bd .menu .item:hover .icon.icon-04 {
    background-position: -170px 0;
}
.activity-job .job .bd .menu .item:hover .icon.icon-05 {
    background-position: -238px 0;
}
.activity-job .job .bd .menu .item:hover .icon.icon-06 {
    background-position: -306px 0;
}
.activity-job .job .bd .menu .item .icon {
    width: 34px;
    height: 34px;
    background-image: url(../img/icon_job.png);
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.activity-job .job .bd .menu .item .icon.icon-01 {
    background-position: -340px 0;
}
.activity-job .job .bd .menu .item .icon.icon-02 {
    background-position: 0 0;
}
.activity-job .job .bd .menu .item .icon.icon-03 {
    background-position: -68px 0;
}
.activity-job .job .bd .menu .item .icon.icon-04 {
    background-position: -136px 0;
}
.activity-job .job .bd .menu .item .icon.icon-05 {
    background-position: -204px 0;
}
.activity-job .job .bd .menu .item .icon.icon-06 {
    background-position: -272px 0;
}
.activity-job .job .bd .ad {
    display: block;
    margin-top: 10px;
}
.activity-job .job .bd .ad img {
    width: 100%;
}

.service-party {
    padding: 60px 0;
}
.service-party .pic-news{
    width:100%;
    height: 200px;
}
.service-party .service {
    width: 750px;
}
.service-party .service .bd {
    margin-top: 20px;
}
.service-party .service .bd .news .img {
    width: 270px;
    height: 180px;
    background: #f1f1f1;
    flex-shrink: 0;
}
.service-party .service .bd .news .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-party .service .bd .news dd {
    width: 100%;
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-party .service .bd .news dd .info .tt {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.service-party .service .bd .news dd .info .desc {
    font-size: 12px;
    color: #999;
    line-height: 20px;
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.service-party .service .bd .news dd .news-list li {
    line-height: 30px;
    position: relative;
    padding-left: 12px;
    border-bottom: 1px dashed #dadada;
    font-size: 12px;
    margin-bottom: 0;
    padding-bottom: 0;
}
.service-party .service .bd .news dd .news-list li:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: #bc9459;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.service-party .service .bd .news dd .news-list li a {
    color: #333;
    display: flex;
    width: 100%;
}
.service-party .service .bd .news dd .news-list li a .news-tt {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-right: 10px;
}
.service-party .service .bd .news dd .news-list li a .news-date {
    color: #999;
}
.service-party .service .bd .news dd .news-list li a:hover {
    color: #103c9a;
}
.service-party .service .bd .menu {
    margin-top: 20px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.service-party .service .bd .menu ul {
    border-bottom: 1px solid #e5e5e5;
}
.service-party .service .bd .menu ul:last-child {
    border-bottom: none;
}
.service-party .service .bd .menu ul li {
    flex: 1;
}
.service-party .service .bd .menu ul li:last-child a::after {
    display: none;
}
.service-party .service .bd .menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e3e3e;
    position: relative;
    width: 100%;
    height: 80px;
}
.service-party .service .bd .menu ul li a:hover {
    color: #103c9a;
}
.service-party .service .bd .menu ul li a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 28px;
    background-color: #e5e5e5;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.service-party .service .bd .menu ul li a .icon {
    width: 28px;
    height: 28px;
    background-image: url(../img/icon_service.png);
    background-repeat: no-repeat;
    margin-right: 10px;
}
.service-party .service .bd .menu ul li a .icon.icon-01 {
    background-position: 0 0;
}
.service-party .service .bd .menu ul li a .icon.icon-02 {
    background-position: -28px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-03 {
    background-position: -56px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-04 {
    background-position: -84px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-05 {
    background-position: -112px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-06 {
    background-position: -140px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-07 {
    background-position: -168px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-08 {
    background-position: -196px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-09 {
    background-position: -224px 0;
}
.service-party .service .bd .menu ul li a .icon.icon-10 {
    background-position: -252px 0;
}
.service-party .party {
    width: 410px;
}
.service-party .party .bd {
    margin-top: 20px;
}
.service-party .party .bd .news-list {
    font-size: 12px;
    margin-top: 25px;
}
.service-party .party .bd .news-list li {
    line-height: 35px;
    border-bottom: 1px dashed #dadada;
    margin-bottom: 0;
    padding-bottom: 0;
}
.service-party .party .bd .news-list li:last-child {
    border-bottom: none;
}
.service-party .party .bd .news-list li a {
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.service-party .party .bd .news-list li a:hover {
    color: #103c9a;
}

.platform-guild {
    margin-top: 60px;
}
.platform-guild .platform {
    width: 910px;
}
.platform-guild .platform .bd {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.platform-guild .platform .bd .info {
    width: 404px;
    height: 160px;
    background: url(../img/platform_bg.jpg) left top no-repeat;
    padding: 25px 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.platform-guild .platform .bd .info h2 {
    font-weight: 400;
    font-size: 18px;
}
.platform-guild .platform .bd .info p {
    font-size: 12px;
    line-height: 17px;
}
.platform-guild .platform .bd .menu {
    display: grid;
    grid-template-columns: 158px 158px 158px;
    grid-gap: 10px;
}
.platform-guild .platform .bd .menu .item {
    background-color: #f7f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.platform-guild .platform .bd .menu .item:hover .icon.icon-01 {
    background-position: -28px 0;
}
.platform-guild .platform .bd .menu .item:hover .icon.icon-02 {
    background-position: -84px 0;
}
.platform-guild .platform .bd .menu .item:hover .icon.icon-03 {
    background-position: -140px 0;
}
.platform-guild .platform .bd .menu .item:hover .icon.icon-04 {
    background-position: -196px 0;
}
.platform-guild .platform .bd .menu .item:hover .icon.icon-05 {
    background-position: -252px 0;
}
.platform-guild .platform .bd .menu .item:hover .icon.icon-06 {
    background-position: -308px 0;
}
.platform-guild .platform .bd .menu .item:hover .txt {
    color: #103c9a;
}
.platform-guild .platform .bd .menu .item .icon {
    width: 28px;
    height: 28px;
    background-image: url(../img/icon_platform.png);
    background-repeat: no-repeat;
}
.platform-guild .platform .bd .menu .item .icon.icon-01 {
    background-position: 0 0;
}
.platform-guild .platform .bd .menu .item .icon.icon-02 {
    background-position: -56px 0;
}
.platform-guild .platform .bd .menu .item .icon.icon-03 {
    background-position: -112px 0;
}
.platform-guild .platform .bd .menu .item .icon.icon-04 {
    background-position: -168px 0;
}
.platform-guild .platform .bd .menu .item .icon.icon-05 {
    background-position: -224px 0;
}
.platform-guild .platform .bd .menu .item .icon.icon-06 {
    background-position: -280px 0;
}
.platform-guild .platform .bd .menu .item .txt {
    margin-left: 15px;
    color: #39495e;
}
.platform-guild .guild {
    width: 250px;
}
.platform-guild .guild .bd {
    margin-top: 20px;
    height: 160px;
}
.platform-guild .guild .bd .item{
    display: block;
}
.platform-guild .guild .bd .item .img{
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.platform-guild .swiper-pagination{
    bottom: 35px;
}
.platform-guild .guild .bd .item .txt{
    margin-top: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    color: #333;
}

.platform-guild .guild .bd .swiper-pagination-bullet {
    transition: all 300ms;
    margin: 0 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
}
.platform-guild .guild .bd .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 15px;
    border-radius: 5px;
    background: #fff;
}

.qh-banner {
    width: 100%;
    height: 240px;
    /*background: url(../img/qh_banner.jpg) left top no-repeat;*/
    display: flex;
    justify-content: center;
}
.qh-banner .btns {
    display: flex;
    margin-top: 158px;
}
.qh-banner .btns .btn {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 110px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 300ms;
}
.qh-banner .btns .btn:hover {
    background: #fff;
    color: #103c9a;
}

.member {
    margin-top: 60px;
}
.member .organization {
    width: 750px;
}
.member .organization .bd {
    margin-top: 20px;
}
.member .organization .bd .organization-cont {
    width: 100%;
    height: 330px;
    border: solid 1px #eeeeee;
}
.member .organization .bd .organization-cont .swiper-pagination-bullet {
    transition: all 300ms;
    margin: 0 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.member .organization .bd .organization-cont .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 15px;
    border-radius: 5px;
    background: #000;
    opacity: 0.5;
}
.member .organization .bd .organization-cont .logo-wall {
    display: grid;
    height: 100%;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 25% 25% 25% 25%;
}
.member .organization .bd .organization-cont .logo-wall a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.member .organization .bd .organization-cont .logo-wall a img {
    width: 80%;
    max-height: 80%;
    object-fit: cover;
}
.member .recommend {
    width: 410px;
}
.member .recommend .bd {
    margin-top: 20px;
}
.member .recommend .bd .bg {
    width: 100%;
    height: 236px;
}
.member .recommend .bd .tt {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    margin-top: 40px;
}
.member .recommend .bd .desc {
    color: #999;
    margin-top: 10px;
}
.links {
    margin-top: 30px;
}
.links .container {
    border: solid 1px #ddd;
    padding: 15px 20px;
    overflow: hidden;
}
.links .container .hd {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.links .container .bd {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    line-height: 30px;
    margin-right: -20px;
}
.links .container .bd a {
    color: #6c7786;
    margin-right: 20px;
}
.links .container .bd a:first-child {
    margin-left: 0;
}
.links .container .bd a:hover {
    color: #103c9a;
}
