@charset "utf-8";

/* tailwindcss flex */
.nav>li>a:focus,.nav>li>a:hover{
	background: rgba(0, 20, 94, .8);
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-initial {
    flex: 0 1 auto;
}

.flex-none {
    flex: none;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}


/**************************** 整体风格，根据需要增删改模块 ****************************/


/* 全局界面 */

body {
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Source Han Sans SC, PingFang SC, Microsoft YaHei, Noto Sans CJK SC, SimHei, sans-serif;
    font-size: 16px;
    color: #333;
    overflow-x: hidden;
}

.inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    position: relative;
    z-index: 10;
    height: 96px;
    margin-bottom: -96px;
}

.header .flex {
    justify-content: space-between;
}

.header .logo img {
    display: block;
    height: 64px;
}

.nav>li {
    position: relative;
    line-height: 96px;
    font-size: 18px;
    color: #fff;
}

.nav>li:hover {
    background: linear-gradient(to bottom, rgba(0, 39, 170, 1), rgba(0, 39, 170, 0));
}

.nav>li ul {
    position: absolute;
    top: 96px;
    left: 50%;
    width: 240px;
    margin-left: -120px;
    background: rgba(0, 20, 94, .8);
    visibility: hidden;
    opacity: 0;
    transform: translate(0, -30px);
    transition: .3s;
}

.nav>li:hover ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

.nav>li a {
    display: block;
    padding: 0 24px;
    color: #fff;
    font-weight: bold;
    transition: .3s;
}

.nav li li a {
    line-height: 64px;
    text-align: center;
}

.nav>li a:hover {
    background: transparent;
}

.nav li li a:hover {
    background: #0079fe;
}

.search {
    height: 40px;
    font-size: 0;
    white-space: nowrap;
    word-break: keep-all;
    z-index: 1112;
}

.search input {
    display: inline-block;
    width: 0;
    height: 40px;
    background-color: rgba(255, 255, 255, .1);
    border: none;
    border-radius: 100px;
    vertical-align: middle;
    font-size: 16px;
    color: #fff;
    transition: .3s;
}

.search-active input {
    width: 160px;
    padding: 0 40px 0 16px;
}

.search-btn,
.search-handle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    border-radius: 100px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
}

.search-btn {
    opacity: 0;
    visibility: hidden;
    margin-left: -40px;
    background: url(../images/icons_2022.png) 0 -120px/320px auto no-repeat;
    transition: .3s;
}

.search-active .search-btn {
    opacity: 1;
    visibility: visible;
}

.search-handle {
    margin-left: 8px;
    background: rgba(255, 255, 255, .1) url(../images/icons_2022.png) 0 -120px/320px auto no-repeat;
}

.search-active .search-handle {
    margin-left: 8px;
    background: rgba(255, 255, 255, .1) url(../images/icons_2022.png) -40px -120px/320px auto no-repeat;
}

.nav-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .1) url(../images/icons_2022.png) -80px -120px/320px auto no-repeat;
    z-index: 1112;
}

.nav-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1110;
    background-color: rgba(0, 0, 0, .75);
}

@media (max-width: 1200px) {
    .header .flex {
        justify-content: flex-start;
    }
    .nav {
        visibility: hidden;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1111;
        width: 70%;
        padding-top: 80px;
        opacity: 0;
        transform: translate(100%, 0);
        transition: .3s;
        flex-direction: column;
        background-color: #027;
        overflow-y: auto;
    }
    .nav-active {
        visibility: visible;
        opacity: 1;
        transform: translate(0, 0);
    }
    .nav-active~.nav-btn {
        transform: rotateY(180deg) scale(0.8);
    }
    .nav>li,
    .nav li li a {
        line-height: 48px;
        font-size: 16px;
        text-align: center;
    }
    .nav>li ul {
        display: none;
        position: static;
        width: 100%;
        margin-left: 0;
    }
    .nav>li:hover ul {
        display: block;
    }
    .header .logo img {
        height: 32px;
        margin: 24px 0 24px 24px;
    }
    .search {
        transform: scale(.8);
        margin-left: auto;
    }
    .nav-btn {
        display: block;
        transform: scale(.8);
        margin-right: 8px;
    }
}

.footer {
    background-color: #072f81;
    color: #fff;
}

.footer p {
    margin: 4px 0;
    line-height: 24px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #00a0e9;
}

.footer-contact,
.footer-navi,
.footer-qr {
    margin: 40px 0;
    padding: 0 10px;
}

.footer-contact img {
    width: 120px;
    margin-bottom: 40px;
}

.footer-qr img {
    width: 100px;
    margin-bottom: 8px;
}

.footer-navi {
    line-height: 24px;
}

.footer-navi h2 {
    font-size: 16px;
	font-weight: 600;
}

.footer-navi p+h2 {
    margin-top: 20px;
}

.footer-navi p a+a {
    margin-left: 24px;
}

.copyright {
    padding: 20px;
    background-color: rgba(0, 0, 0, .3);
}

.copyright-item {
    margin: 0 20px;
}

@media (max-width: 1200px) {
    .footer {
        font-size: 14px;
    }
    .footer .inner {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .footer {
        text-align: center;
        font-size: 12px;
    }
    .footer .flex {
        flex-direction: column;
    }
    .footer-contact,
    .footer-navi,
    .footer-qr {
        margin: 20px 0;
        padding: 0;
    }
    .footer-navi,
    .footer-qr {
        display: none;
    }
}

.side-bar {
    position: fixed;
    right: 30px;
    bottom: 30%;
    z-index: 1001;
    width: 80px;
    padding: 4px;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 4px;
}

.side-bar li+li {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.side-bar li a {
    position: relative;
    display: block;
    padding: 4px;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.side-bar li a:hover {
    background-color: #3af;
}

.side-bar li i {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/icons_2022.png);
    background-repeat: no-repeat;
    margin: 0 auto;
}

.side-bar li i.s1 {
    background-position: -20px -180px;
}

.side-bar li i.s2 {
    background-position: -100px -180px;
}

.side-bar li i.s3 {
    background-position: -180px -180px;
}

.side-bar li .extra {
    position: absolute;
    top: 50%;
    right: 100%;
    visibility: hidden;
    padding: 16px;
    font-size: 18px;
    word-break: keep-all;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 4px;
    transform: translate(100%, -50%);
    opacity: 0;
    transition: .3s;
}

.side-bar li .extra:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    width: 0;
    height: 0;
    margin-top: -8px;
    border: 8px solid transparent;
    border-left: 8px solid rgba(0, 0, 0, .5);
}

.side-bar li a:hover .extra {
    visibility: visible;
    opacity: 1;
    transform: translate(-16px, -50%);
}

@media (max-width: 992px) {
    .side-bar {
        right: 0;
        bottom: 10%;
        transform: scale(.7);
    }
}


/* 首页 */

.focus .swiper-slide a {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    height: 800px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 290px;
}

.focus .swiper-slide a strong {
    font-size: 60px;
}

.focus-prev,
.focus-next {
    width: 44px;
    background-size: auto 22px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, .1);
}

@media (max-width: 1024px) {
    .focus .swiper-slide a {
        height: 200px;
    }
    .focus .swiper-slide a strong {
        font-size: 24px;
    }
    .focus-prev,
    .focus-next {
        display: none
    }
}

@media (min-width: 1200px) {
    .grid h2 {
        font-size: 36px;
    }
}


/* part1 */

.p1 {
    padding: 120px 0;
    background: #fff url(../images/p1_bg1.jpg) 50% 100% no-repeat;
}

.business {
    position: relative;
    margin: 0 40px;
    padding: 120px 80px 120px 280px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.business h2 {
    position: absolute;
    left: -64px;
    top: -160px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 280px;
    height: 340px;
    background: url(../images/p1_bg2.jpg) 0 0 no-repeat;
    color: #fff;
}

.business h3 {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    transform: rotateZ(-90deg) translate(120px, -40px);
}

.business h3 img {
    display: block;
    width: 240px;
}

.business h2:after,
.business h3:after {
    content: '';
    width: 72px;
    height: 4px;
    margin-top: 40px;
    border-radius: 100px;
    background-color: #fff;
}

.business h3:after {
    background-color: #f80;
}

.business li a {
    position: relative;
    display: block;
    padding: 60px 40px 60px 120px;
    transition: .3s;
}

.business li a:hover {
    transform: translate(0, 6px);
    box-shadow: 0 0 8px rgba(0, 0, 0, .1);
}

.business li h4 {
    position: relative;
    padding: 8px 12px;
    font-size: 24px;
    background-color: #fff;
}

.business li p {
    position: relative;
    padding: 0 12px;
    color: #666;
    background-color: #fff;
}

.business li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 160px;
    height: 160px;
    background-image: url(../images/icons_2022.png);
    background-repeat: no-repeat;
}

.business li.s1 a:before {
    background-position: 0 0;
}

.business li.s2 a:before {
    background-position: -160px 0;
}

.business li.s3 a:before {
    background-position: -320px 0;
}

.business li.s4 a:before {
    background-position: -480px 0;
}

@media (max-width: 1024px) {
    .p1 {
        padding: 16px;
    }
    .business {
        margin: 0;
        padding: 40px 0;
    }
    .business h2 {
        width: 120px;
        height: 80px;
        top: -40px;
        left: 20px;
    }
    .business h2:after {
        width: 36px;
        height: 2px;
        margin-top: 8px
    }
    .business h3 {
        left: auto;
        right: 0;
        transform: scale(.5) rotateZ(-90deg) translate(320px, 160px);
    }
    .business li a {
        padding: 20px 20px 20px 100px;
    }
    .business li a:before {
        left: -20px;
        top: -30px;
        transform: scale(.5);
    }
    .business li h4 {
        font-size: 18px
    }
    .business li p {
        font-size: 14px
    }
}


/* part2 */

.p2 {
    padding: 40px;
    background: url(../images/p2_bg.jpg) 50% 100%/cover no-repeat;
}

.p2 h2 {
    position: relative;
    color: #fff;
}

.p2 h2:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 102%;
    height: 4px;
    width: 1000px;
    margin-top: -2px;
    background-color: #fff;
}

.app li a {
    position: relative;
    overflow: hidden;
    display: block;
    color: #fff;
    margin: 15px 0;
}

.app li a img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.app li .cover {
    position: absolute;
    top: calc(100% - 48px);
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, .65);
    transition: .3s;
}

.app li a:hover .cover {
    top: 0;
    padding: 20px;
}

.app li h3 {
    line-height: 48px;
    text-align: center;
    font-size: 20px;
}

.app li p {
    padding: 20px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .p2 {
        padding: 16px;
    }
    .app {
        margin: 0 -4px;
    }
    .app li {
        padding: 4px;
    }
    .app li a {
        margin: 0
    }
    .app li .cover {
        top: calc(100% - 32px);
        padding: 0 8px;
    }
    .app li a:hover .cover {
        top: 0;
        padding: 8px;
    }
    .app li h3 {
        line-height: 32px;
        font-size: 16px;
    }
    .app li a:hover h3 {
        display: none
    }
    .app li p {
        height: calc(100% - 8px);
        margin: 4px;
        padding: 4px;
        font-size: 12px;
        overflow-y: auto;
    }
}


/* part3 */

.p3 {
    padding: 80px 40px;
    background: url(../images/p3_bg.jpg) 50% 100%/cover no-repeat;
}

.news h2 {
    position: relative;
    margin-bottom: 20px;
}

.news h2:before {
    content: 'NEWS';
    position: absolute;
    top: -0.5em;
    left: 2em;
    font-style: italic;
    font-size: 56px;
    font-weight: bold;
    font-family: microsoft yahei;
    color: #eee;
}

.news h2 b {
    position: relative;
}

.news h2 .more {
    font-size: 16px;
}

.news h2 .more i {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../images/icons_2022.png) -164px -124px/320px auto no-repeat;
    vertical-align: middle;
}

.view {
    display: inline-block;
    padding: 0 4px;
    background-color: #fff4ea;
    color: #f80;
    border-radius: 4px;
}

.view i {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../images/icons_2022.png) -124px -124px/320px auto no-repeat;
    vertical-align: middle;
}

.news .list-t li:before {
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background-color: #048;
}

@media (max-width: 992px) {
    .p3 {
        padding: 0;
    }
    .news h2 {
        margin-bottom: 0;
        padding: 16px;
    }
    .news h2:before {
        font-size: 24px;
        top: 14px;
        left: 3em;
    }
}


/* part4 */

.p4 {
    padding: 60px 40px;
    background: url(../images/p4_bg.jpg) 50% 0/cover no-repeat;
    color: #fff;
}

.contact h2 {
    margin-bottom: 40px;
}

.contact h2 b {
    position: relative;
}

.contact h2 b:before {
    content: 'CONTACT US';
    position: absolute;
    top: -7%;
    left: -35%;
    font-style: italic;
    margin-top: -20px;
    line-height: 40px;
    font-size: 40px;
    font-weight: bold;
    font-family: microsoft yahei;
    white-space: nowrap;
    word-break: keep-all;
    color: rgba(255, 255, 255, .1);
}

.contact ul {
    margin-top: 40px;
}

.contact li {
    padding: 30px;
}

.contact li i {
    width: 48px;
    height: 48px;
    margin-right: 20px;
    background-image: url(../images/icons_2022.png);
    background-repeat: no-repeat;
    background-size: 320px auto;
    border: 1px solid #fff;
    border-radius: 100px;
}

.contact li i.s1 {
    background-position: -196px -116px;
}

.contact li i.s2 {
    background-position: -236px -116px;
}

.contact li i.s3 {
    background-position: -276px -116px;
}

.contact li p {
    margin-top: 4px;
}

.map {
    height: 420px;
    background-color: #eee;
}

#map .logo-text,
#map a>img,
#map .tmap-scale-control {
    display: none;
}

@media (max-width: 992px) {
    .p4 {
        padding: 0;
    }
    .contact h2 {
        margin: 0;
        padding: 20px;
    }
    .contact h2 b:before {
        left: 50%;
        margin: 0;
        transform: translate(-50%, 0);
    }
    .contact ul {
        margin: 0 0 20px;
    }
    .contact li {
        padding: 20px 40px;
    }
}


/* part5 */

.p5 {
    padding: 60px 40px;
    background: url(../images/p5_bg.jpg) 50% 0/cover no-repeat;
}

.p5 h2 svg {
    display: block;
    width: 560px;
    height: 80px;
    margin: 0 auto;
}

.logo-text {
    display: block;
    font-family: Source Han Sans CN, microsoft yahei, pingfang sc;
    font-weight: 800;
    fill: url(#gr);
}

.service li {
    text-align: center;
}

.service li i {
    display: block;
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    background-image: url(../images/icons_2022.png);
    background-repeat: no-repeat;
    background-size: 320px auto;
}

.service li i.s1 {
    background-position: -8px -168px;
}

.service li i.s2 {
    background-position: -88px -168px;
}

.service li i.s3 {
    background-position: -168px -168px;
}

.service li i.s4 {
    background-position: -248px -168px;
}

.service li i.s5 {
    background-position: -8px -248px;
}

.service li i.s6 {
    background-position: -88px -248px;
}

@media (max-width: 1200px) {
    .p5 {
        padding: 16px;
    }
    .p5 h2 svg {
        width: 100%;
        height: 14.28vw;
        transform: scale(2.5);
    }
    .service li {
        margin: 16px 0;
        font-size: 12px;
    }
    .service li i {
        margin: 0 auto
    }
}

div.l26 {
    background-image: url(../images/lm_26.png)
}

div.l27 {
    background-image: url(../images/lm_27.png)
}

div.l28 {
    background-image: url(../images/lm_28.png)
}

div.l29 {
    background-image: url(../images/lm_29.png)
}

div.l30 {
    background-image: url(../images/lm_30.png)
}

div.l31 {
    background-image: url(../images/lm_31.png)
}

div.l37 {
    background-image: url(../images/lm_37.png)
}

div.l38 {
    background-image: url(../images/lm_38.png)
}

div.l40 {
    background-image: url(../images/lm_40.png)
}

div.l41 {
    background-image: url(../images/lm_41.png)
}

div.l42 {
    background-image: url(../images/lm_42.png)
}

div.l34 {
    background-image: url(../images/lm_34.jpg)
}
div.l57 {
    background-image: url(../images/sg1.png)
}
div.l58 {
    background-image: url(../images/jyh1.png)
}
div.l61 {
    background-image: url(../images/lm_61.png)
}

/*  新增媒体关注 */
.news h3 {
    position: relative;
    text-align: center;
    margin: 40px 0;
}

.news h3 span {
    display: block;
    font-style: italic;
    font-size: 56px;
    font-weight: bold;
    font-family: microsoft yahei;
    color: #eee;
}

.news h3 b {
    display: block;
    margin-top: -12px;
}

.news h3 .more {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -8px;
    font-size: 16px;
}

.news h3 .more i {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../images/icons_2022.png) -164px -124px/320px auto no-repeat;
    vertical-align: middle;
}

.news-media .card {
    display: block;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}

.news-media .card .pic {
    position: relative;
    overflow: hidden;
    margin: -16px -16px 0;
    padding-top: 50%;
}

.news-media .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
    transition: .3s;
}

.news-media .card:hover .pic img {
    transform: scale(1.1);
}

.news-media h4,
.news-media p {
    position: relative;
    overflow: hidden;
    line-height: 1.5;
    margin-top: 16px;
}

.news-media p .date {
    position: relative;
    display: inline-block;
    padding: 0 8px;
    color: #aaa;
}

.news-media p .date:before,
.news-media p .date:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200%;
    height: 1px;
    background-color: #ddd;
}

.news-media p .date:before {
    left: 100%;
}

.news-media p .date:after {
    right: 100%;
}

@media (min-width: 1200px) {
    .news h3 b {
        font-size: 36px
    }
}

@media(max-width: 992px) {
    .news-media {
        margin: 0 12px;
    }

    .news h3 span {
        font-size: 24px
    }
}