.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: #FFFFFF;
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    padding: 0 5%;
}

.header .links {
    width: calc(95% - 150px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

.header .links ul li {
    position: relative;
    margin-right: 60px;
}

.header .links ul li .a1 {
    color: #0994D7;
    display: block;
    padding: 40px 0;
    position: relative;
    font-weight: bold;
}

.header .links ul li .a1::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 17px;
    height: 2px;
    background: #0994D7;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 600ms;
}

.header .links ul li .a1:hover {
    color: #008FD7;
}

.header .links ul li .a1:hover::after {
    opacity: 1;
}

.header .links ul li .aList {
    position: absolute;
    top: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    width: calc(100% + 140px);
    padding: 20px 0 0 0;
    display: none;
    left: -70px;
}

.header .links ul li .aList::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid white;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    top: -10px;
}

.header .links ul li .aList a {
    padding: 0 20px;
    color: #333333;
    display: block;
    position: relative;
    transition: all 600ms;
    margin-bottom: 15px;
}

.header .links ul li .aList a img {
    position: absolute;
    right: 15px;
    top: 0;
    opacity: 0;
    transition: all 600ms;
}

.header .links ul li .aList a:hover {
    color: #0099E5;
}

.header .links ul li .aList a:hover img {
    opacity: 1;
}

.header .links ul .active a::after {
    opacity: 1;
}

.header .links ul .pitchon a::after {
    opacity: 1;
}

.header .links .r {
    display: flex;
    align-items: center;
    width: 240px;
    justify-content: space-between;
}

.header .links .r .yy {
    position: relative;
    padding: 25px 0;
}

.header .links .r .yy .lan-list {
    position: absolute;
    width: calc(100% + 50px);
    transition: 0.5s;
    left: -25px;
    text-align: center;
    top: 100%;
    display: none;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.header .links .r .yy .lan-list::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid white;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    top: -10px;
}

.header .links .r .yy .lan-list a {
    display: block;
    padding: 12px 0;
    color: #666666;
    transition: all 600ms;
}

.header .links .r .yy .lan-list a:hover {
    color: #0099E5;
}

.header .links .r .yy:hover .lan-list {
    display: block;
}

.header .links .r .yy .lan {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
}

.header .links .r .yy .lan p {
    margin-right: 15px;
}

.fixed {
    width: 240px;
    position: fixed;
    left: 5%;
    top: 180px;
    z-index: 100;
}

.fixed .item {
    /*修改左侧悬浮菜单的宽度*/
    width: 220px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    display: flex;
    padding: 20px 20px;
    cursor: pointer;
}

.fixed .item .pic {
    position: relative;
}

.fixed .item .pic img {
}

.fixed .item .pic img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.fixed .item p {
    margin-left: 20px;
    color: #333333;
    font-size: 20px;
}

.fixed .item:hover {
    background: #0994D7;
}

.fixed .item:hover p {
    color: white;
}

.fixed .item:hover .pic img:nth-child(1) {
    opacity: 0;
}

.fixed .item:hover .pic img:nth-child(2) {
    opacity: 1;
}

.fixed .active {
    background: #0994D7;
}

.fixed .active p {
    color: white;
}

.fixed .active .pic img:nth-child(1) {
    opacity: 0;
}

.fixed .active .pic img:nth-child(2) {
    opacity: 1;
}

.fixed .pitchon {
    background: #0994D7;
}

.fixed .pitchon p {
    color: white;
}

.fixed .pitchon .pic img:nth-child(1) {
    opacity: 0;
}

.fixed .pitchon .pic img:nth-child(2) {
    opacity: 1;
}

.home .main .lNav .stick .pitchon {
    background: #0994D7;
}

.home .main .lNav .stick .pitchon p {
    color: white;
}

.home .main .lNav .stick .pitchon .pic img:nth-child(1) {
    opacity: 0;
}

.home .main .lNav .stick .pitchon .pic img:nth-child(2) {
    opacity: 1;
}

.fixed .search {
    width: 260px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    padding: 20px 20px;
}

.fixed .search .pt {
    color: #333333;
    font-size: 20px;
    margin-bottom: 15px;
}

.fixed .search .ss {
    position: relative;
}

.fixed .search .ss input {
    width: 100%;
    background: white;
    outline: none;
    border: none;
    color: #999999;
    font-size: 14px;
    text-indent: 10px;
    padding: 10px 0;
}

.fixed .search .ss img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.fixed .recommend {
    width: 260px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    padding: 20px 20px;
}

.fixed .recommend .pt {
    color: #333333;
    font-size: 20px;
    margin-bottom: 15px;
}

.fixed .recommend .anews a {
    display: block;
    margin-bottom: 15px;
}

.fixed .recommend .anews a .p1 {
    color: #666666;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    transition: all 600ms;
    line-height: 1.6;
}

.fixed .recommend .anews a .time {
    color: #999999;
}

.fixed .recommend .anews a:hover .p1 {
    color: #0994D7;
}

.fixed2 .item {
    position: relative;
    flex-wrap: wrap;
}

.fixed2 .item .jt {
    position: absolute;
    right: 30px;
    top: 25px;
}

.fixed2 .item .jt img {
    vertical-align: middle;
    transition: all 600ms;
}

.fixed2 .item .jt img:nth-child(2) {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.fixed2 .item:hover .jt img:nth-child(1) {
    opacity: 0;
}

.fixed2 .item:hover .jt img:nth-child(2) {
    opacity: 1;
}

.fixed2 .aList {
    background: rgba(9, 148, 215, 0.05);
    transform: translateY(-10px);
    padding: 10px 20px 10px 20px;
    display: none;
}

.fixed2 .aList a {
    display: block;
    color: #666666;
    padding: 10px 0;
    transition: all 600ms;
}

.fixed2 .aList a:hover {
    color: #0994D7;
}

.fixed2 .aList .active2 {
    color: #0994D7;
}

.fixed2 .showList {
    display: block;
}

.fixed2 .active .jt img:nth-child(1) {
    opacity: 0;
}

.fixed2 .active .jt img:nth-child(2) {
    opacity: 1;
}

.pheader {
    display: none;
    position: fixed;
    top: 0;
    height: 60px;
    width: 100%;
    left: 0;
    z-index: 1002;
}

.pheader .menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0px 14px 28px 0px rgba(0, 0, 0, 0.04);
}

.pheader .menu a {
    margin-left: 20px;
    transform: translateY(2px);
}

.pheader .menu a img {
    width: 120px;
    object-fit: contain;
}

.pheader .menu .lan {
    position: absolute;
    right: 80px;
    margin-left: 0;
}

.pheader .menu .lan img {
    width: 40px;
}

.pheader .menu .navbox {
    margin-right: 20px;
}

.pheader .menu .navbox .line {
    width: 30px;
    height: 2px;
    background-color: black;
    margin: 8px 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.pheader .menu .activeBox .line:nth-child(1) {
    transform: rotate(45deg) translateY(14px);
}

.pheader .menu .activeBox .line:nth-child(2) {
    transform: translateX(30px);
    opacity: 0;
}

.pheader .menu .activeBox .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-14px);
}

.menuList {
    position: fixed;
    left: 0;
    top: 59px;
    width: 100%;
    z-index: 1001;
    background-color: #0994D7;
    display: none;
    height: calc(100vh - 59px);
}

.menuList .item {
    padding: 18px 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.menuList .item a {
    color: white;
    display: block;
    font-size: 20px;
    font-weight: lighter;
    position: relative;
}

.menuList .item a img {
    position: absolute;
    right: 0;
    width: 25px;
    transition: all 600ms;
}

.menuList .item a .rotate {
    transform: rotate(45deg);
}

.menuList .item .aList a {
    margin-top: 10px;
}

.menuList .item .pList {
    margin-top: 10px;
    display: none;
    line-height: 2.5;
}

.menuList .item .pList a {
    font-size: 18px;
    padding-left: 20px;
}

.activeList {
    transform: translateY(0);
}

.foot {
    background: url("../images/fbg.png") no-repeat;
    background-size: cover;
    padding: 0 6%;
    position: relative;
}

.foot .bg {
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
}

.foot .dom1 {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    width: 100%;
}

.foot .dom1 .links {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.foot .dom1 .links .item p {
    color: white;
    font-size: 18px;
    font-weight: lighter;
    margin-bottom: 40px;
}
.foot .dom1 .links .item p a{color: white;}

.foot .dom1 .links .item .aList a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: lighter;
    transition: all 600ms;
}

.foot .dom1 .links .item .aList a:hover {
    color: white;
}

.foot .dom1 .address {
    width: 30%;
}

.foot .dom1 .address .logo {
    margin-bottom: 20px;
}

.foot .dom1 .address .des {
    color: white;
    font-size: 20px;
    font-weight: lighter;
    line-height: 2;
}

.foot .dom1 .address .des span {
    font-family: DIN-Bold;
}

.foot .dom2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(238, 238, 238, 0.1);
    padding: 40px 0;
}

.foot .dom2 p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.foot .dom2 p a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 600ms;
}

.foot .dom2 p a:hover {
    color: white;
}

.foot .dom2 .r {
    color: rgba(255, 255, 255, 0.5);
}

.foot .dom2 .r a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0 10px;
    display: inline-block;
}

@media screen and (max-width: 1440px) {
    .header .links ul li {
        margin-right: 30px;
    }
}

@media screen and (max-width: 1160px) {
    .header .links {
        width: calc(98% - 150px);
    }

    .header .links ul li {
        margin-right: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        display: none;
    }

    .fixed {
        display: none;
    }

    .pheader {
        display: flex;
    }

    .foot .dom1 {
        padding: 30px 0;
    }

    .foot .dom1 .links {
        display: none;
    }

    .foot .dom1 .address {
        width: 100%;
    }

    .foot .dom2 {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        line-height: 2;
        text-align: center;
    }
}

/*# sourceMappingURL=header.css.map */
.content .dom1 p {
    line-height: 1.8em;
}

.content ul li {
    display: flex;
    align-items: center;
    color: #333333;
    margin-bottom: 20px;
    font-weight: lighter;
    text-indent: 20px;
    position: relative;
}

.content ul li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #22A6E9;
    border-radius: 50%;
    min-width: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}