@import url('./iconfont.css');

html {
    font-size: 16px;
    font-family: 'Microsoft YaHei', "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
}

* {
    box-sizing: border-box;
    outline: none;
    color: inherit;
}

.width-wrap {
    min-width: 1100px;
    width: 85%;
    margin: 0 auto;
}

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

@font-face {
    font-family: 'Youshe';
    src: url('./YOUSHEBIAOTIHEI-2.TTF');
}


/*移动菜单*/
.mobile {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1)
}

.mobile .box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    height: 60px;
}

.mobile .box img {
    margin: 0 0 0 10px;
    max-width: 80%;
    /* transform: translateY(-5px); */
    height: 45px;
    object-fit: contain
}

.mobile .box .hamburger {
    margin: 0 18px 0 0;
    transition: all .6s
}

.mobile .box .hamburger .line {
    width: 28px;
    height: 1px;
    background-color: #2d2d2d;
    margin: 7px 0;
    -webkit-transition: all .6s;
    transition: all .6s
}

.mobile .box .expand {
    transform: translateX(10px);
}

.mobile .box .expand .line:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.mobile .box .expand .line:nth-child(2) {
    transform: translateX(28px);
    opacity: 0;
}

.mobile .box .expand .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

/*共用头部*/
header .guide {
    width: 100%;
    padding: 10px 0;
}

header .guide .width-wrap {
    display: flex;
    justify-content: flex-end;
}

header .guide div {
    display: flex;
    align-items: center;
}

header .guide div a {
    display: flex;
    align-items: center;
    font-size: .875rem;
    color: #999;
    transition: color 300ms;
}

header .guide div a:hover {
    color: #072A69;
}

header .guide div a i {
    margin-right: 5px;
    display: block;
    margin-top: 2px;
}

header .guide .links span {
    width: 1px;
    height: 10px;
    background: #999;
    margin: 0 20px;
}

header .search {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-left: 20px;
    /* margin-bottom: 32px; */
}

header .search input {
    font-size: .75rem;
    width: 200px;
    height: 22px;
    background: transparent;
    border: 1px solid #999;
    border-radius: 20px;
    color: #999;
    text-indent: 13px;
    outline: none;
    transition: all 300ms;
}

header .search input:focus {
    border-color: #072A69;
    color: #000;
}


header .search input::placeholder {
    color: #999;
    opacity: .6;
    font-size: .625rem;
}

header .search a {
    position: absolute;
    right: 10px;
    top: 48%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

header .search a i {
    color: #999;
    font-weight: 200;
    font-size: .75rem;
    background: transparent;
    opacity: .7;
}

header .guide .links a:last-child {
    display: none;
}

header .banner {
    padding: 111px 0 221px 0;
    background: url(../images/banner.png) no-repeat;
    background-size: cover;
}

header .main-wrap {
    position: relative;
}

header .banner .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .banner .box a img {
    max-width: 688px
}


/*主导航*/
header nav {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
}

header nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    align-items: center;
}

header nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    flex: 1;
    text-align: center;
}

header nav ul li::after {
    content: '';
    width: 1px;
    height: 24px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

header nav ul li:last-child::after {
    display: none;
}


header nav>ul>li>a {
    font-size: 1.125rem;
    color: white;
    /* font-weight: 600; */
    padding: 15px 0;
    display: inline-flex;
    letter-spacing: 2px;
    transition: all 300ms;
    position: relative;
}

header nav>ul>li>a.active,
header nav>ul>li>a:hover {
    font-weight: bold;
}


/*，交给js去做这件事吧 header nav > ul > li > a:has(+ div){pointer-events:none;}*/
header nav>ul>li>div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    z-index: 10;
    display: none;
}

header nav>ul>li>div>ul {
    display: block;
    padding: 0;
}

header nav>ul>li>div>ul>li>a {
    font-size: 14px;
    color: white;
    padding: 10px;
    display: block;
    text-align: center;
    transition: all 300ms;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

header nav>ul>li>div>ul>li::after {
    display: none;
}

header nav>ul>li>div>ul>li>a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* header nav>ul>li:hover a{
    color: #EF8E25;
} */
header nav>ul>li:hover ul a {
    color: #fff;
}

header nav>ul>li:hover div {
    display: block;
}

footer {
    background: url(../images/foot_bg.png) no-repeat;
    background-size: cover;
    position: relative;
    color: white
}

footer p {
    margin: 0
}

footer .sec1 {
    display: flex;
    justify-content: space-between;
    padding: 36px 0 74px 0;
    position: relative
}

footer .sec1::before {
    content: '';
    display: block;
    position: absolute;
    left: 450px;
    top: 60px;
    width: 2px;
    background: #fff;
    opacity: .7;
    height: 134px
}

footer .sec1 .lbox .logo img {
    width: 400px
}

footer .sec1 .lbox .icons {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px
}

footer .sec1 .lbox .icons .item {
    text-align: center
}

footer .sec1 .lbox .icons .item:not(:last-child) {
    margin-right: 53px
}

footer .sec1 .lbox .icons .item .pic i {
    font-size: 24px
}

footer .sec1 .lbox .icons .item p {
    font-size: 14px;
    margin-top: 14px
}

footer .sec1 .rbox {
    width: calc(100% - 500px);
    margin-top: 24px
}

footer .sec1 .rbox .box_t {
    display: flex;
    justify-content: space-between
}

footer .sec1 .rbox .box_t a {
    font-size: 18px
}

footer .sec1 .rbox .box_b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px
}

footer .sec1 .rbox .box_b .chose {
    width: calc((100% - 180px)/2);
    position: relative;
    margin-top: 15px
}

footer .sec1 .rbox .box_b .chose .d1 {
    padding: 11px 8px;
    border: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px
}

footer .sec1 .rbox .box_b .chose .d1 img {
    width: 20px
}

footer .sec1 .rbox .box_b .chose .d2 {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: white;
    display: none
}

footer .sec1 .rbox .box_b .chose .d2 a {
    padding: 10px;
    color: #000;
    display: block;
    transition: all 600ms
}

footer .sec1 .rbox .box_b .chose .d2 a:hover {
    background: #072A69;
    color: white;
    text-decoration: none;
}

footer .sec1 .rbox .box_b .code img {
    width: 90px
}

footer .sec2 {
    display: flex;
    justify-content: space-between;
    padding: 25px 0
}

footer .sec2::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 70px;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: .7
}

footer .sec2 .lbox {
    display: flex
}

footer .sec2 .lbox a,
footer .sec2 .lbox p {
    margin-right: 10px
}
footer  a:hover{
    text-decoration: underline;
}

footer .sec2 .r {
    position: relative
}

footer .sec2 .r .d1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px
}

footer .sec2 .r .d1 img {
    width: 20px;
    margin-left: 6px
}

footer .sec2 .r .d2 {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    background: white;
    display: none;
    z-index: 5;
}
footer .sec2 .r .show{
    display: block;
}

footer .sec2 .r .d2 a {
    padding: 10px;
    color: #000;
    display: block;
    transition: all 600ms
}

footer .sec2 .r .d2 a:hover {
    background: #072A69;
    color: white;
    text-decoration: none;
}

/* 内页面包屑导航 */

.link_menu {
    background: rgba(207, 213, 223, 1);
    padding: 10px 0;
    margin-bottom: 60px;
}

.link_menu .width-wrap {
    display: flex;
    align-items: center;
     color: #999;
    font-size: 14px;
}

.link_menu i {
    font-size: 20px
}

.link_menu img {
    width: 14px;
    display: block;
    margin: 0 3px;
    opacity: .5;
    filter: grayscale(0.5)
}

.link_menu a {
    margin: 0 5px
}

.link_menu a:hover {
    color: #072A69;
}

.link_menu p {
    margin: 0 0 0 5px
}


@media screen and (max-width:1440px){
  footer .sec2 * {
    font-size: 12px !important;
  }
  .link_menu{
    margin-bottom: 30px;
  }
}

@media screen and (max-width:1100px) {
    header .banner .box a img {
        max-width: 360px;
    }

    header .slogan {
        max-width: 320px;
    }

    .width-wrap {
        width: 90%;
        min-width: inherit;
    }

}

@media screen and (max-width: 800px) {

    .mobile {
        display: block;
    }

    header {
        display: none;
        position: absolute;
        left: 0;
        top: 60px;
        bottom: 0;
        right: 0;
        height: 100vh;
        z-index: 99998;
        background: url(../images/headbg.jpg) center top no-repeat;
        background-size: cover;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    header .guide {
        background: transparent;
        position: static;
    }

    header .guide .width-wrap {
        padding: 13px 5px 0 5px;
        flex-wrap: wrap;
        justify-content: center;
    }

    header .guide div a:last-child {
        display: inherit;
        color: rgba(255, 255, 255, .7);
    }

    header .guide .links span {
        background: #fff;
        display: none;
    }

    header .guide div a {
        font-size: 12px;
        margin: 0 5px;
        color: rgba(255, 255, 255, .7);
    }


    header .guide div a span {
        display: none;
    }

    header .guide div .links a:last-child {
        display: inherit;
    }

    header .guide div a.gopc {
        display: inherit !important;
    }

    header .guide div a.responsitive {
        display: none;
    }

    header .guide div a:nth-child(7) {
        display: none;
    }

    header .guide .search {
        display: none;
        width: 80%;
        margin: 10px 0 0 0;
    }

    header .guide .search input {
        width: 100%;
        border: none;
        height: 34px;
        background: rgba(255, 255, 255, .15);
        font-size: .875rem;
    }

    header .guide .search input::placeholder {
        font-size: .875rem;
    }

    header .guide .search input:focus {
        background: rgba(255, 255, 255, .3);
    }

    header .guide .search a {
        top: 50%;
    }

    header .banner {
        display: none;
    }

    header nav {
        padding: 15px;
        margin-bottom: 50px;
        background: transparent;
        position: static;
    }

    header nav ul {
        display: block;
        padding: 0;
    }

    header nav ul li {
        display: block;
        text-align: left;
    }

    header nav ul li::after {
        display: none;
    }

    header nav>ul>li>a {
        display: block;
        padding: 13px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        position: relative;
    }

    header nav>ul>li>a::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        display: block;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23cfdde7' d='M7.293 4.707 14.586 12l-7.293 7.293 1.414 1.414L17.414 12 8.707 3.293 7.293 4.707z '/%3E%3C/svg%3E") no-repeat;
        background-size: 15px;
        transition: all 300ms
    }

    header nav>ul>li>a:hover::after,
    header nav>ul>li>a:active::after {
        left: auto;
        /* top: 20px; */
    }

    /*header nav > ul > li > a:has(+ div){pointer-events:none;}*/
    /*有子菜单者，禁用当前链接*/
    /*展开当前激活菜单下的子菜单*/
    /*header nav > ul > li > a.active:not(:empty) + .child{position:static;background:rgba(255,255,255,.15);display:block;}*/
    header nav>ul>li>div {
        position: static;
        background: rgba(255, 255, 255, .15);
        transform: translateX(0);
        width: 100%;
    }

    header nav>ul>li>div>ul {
        margin: 5px 15px;
    }

    header nav>ul>li>div>ul>li>a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        text-align: left;
    }

    footer .sec1 {
        flex-direction: column; 
        padding: 20px 0 15px 0; 
    }

    footer .sec1::before {
        display: none; 
    }

    footer .sec1 .lbox .logo img {
        width: 200px; 
        margin: 0 auto; 
        display: block;
    }
    footer .sec1 .lbox .icons {
        justify-content: center; 
        margin-top: 15px;
    }
    footer .sec1 .lbox .icons .item:not(:last-child) {
        margin-right: 20px; 
    }
    footer .sec1 .rbox {
        width: 100%; 
        margin-top: 0;
    }
    footer .sec1 .rbox .box_t {
        flex-wrap: wrap; 
        display: none;
        justify-content: center; 
        gap: 10px;
    }
    footer .sec1 .rbox .box_b {
        flex-wrap: wrap;
        margin-top:0;
        justify-content: center;
        gap: 0;
    }
    footer .sec1 .rbox .box_b .chose {
        width: 100%; 
    }
    footer .sec1 .rbox .box_b .code {
        margin: 15px 10px 0 10px;
    }
    footer .sec2 {
        flex-direction: column; 
        align-items: center; 
       padding: 0 0 15px;
    }
    footer .sec2::after {
        bottom: 50px;
        display: none;
    }
    footer .sec2 .lbox {
        margin-bottom: 10px;
        flex-direction: column;
        text-align: center;
        line-height: 2;
    }
    footer .sec2 *{
        font-size: 14px !important;
    }
    footer .sec2 .r .d1 img{
        width: 12px;
    }


    .link_menu{
        margin: 60px 0 0 0;
    }
    .link_menu .width-wrap{
        flex-wrap: wrap;
    }

}

.tbl{border-top:1px #c1c1c1 solid;border-left:1px #c1c1c1 solid;}
.tbl th,
.tbl td{border-right:1px #c1c1c1 solid;border-bottom:1px #c1c1c1 solid;font-size:.875rem;padding:3px 8px;}
.tbl th{font-weight:bold;background:linear-gradient(0deg, #f1f1f1, #fff);}
.tbl .lt{text-align:left;}
.tbl .rt{text-align:right;}
.tbl .ct{text-align:center;}