@charset "UTF-8";

.w1600 {
    width: 16rem;
    margin: 0 auto;
    position: relative;
    font-size: 0;
}

@media (max-width: 1680px) {
    .w1600 {
        width: 90%;
    }
}

@media (max-width: 800px) {
    .w1600 {
        width: 94%;
    }
}

:root {
    --themes: #0152a1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all ease 0.5s;
    background-color: #fff;
}

header .hop {
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: all ease 0.5s;
    min-height: 0.9rem;
    align-items: center;
}

header .rav {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    /* padding-left: 0.4rem; */
    font-size: 0;
    display: flex;
    align-items: center;
}

header .rav .search {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    text-align: center;
    cursor: pointer;
    position: relative;
    width: 19px;
    height: 40px;
}

header .rav .search .sc {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

header .rav .search .sc img {
    width: 100%;
    display: block;
}

header .rav .sechom {
    position: absolute;
    z-index: 3;
    right: 0;
    width: 4rem;
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.09);
    padding: 0.1rem;
    top: 100%;
    display: none;
}

header .rav .sechom form {
    width: 100%;
    display: block;
    font-size: 0;
}

header .rav .sechom .input {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 2.4em - 0.2rem);
    margin-right: 0.2rem;
}

header .rav .sechom .input .int {
    width: 100%;
    display: block;
    background-color: #fff;
    line-height: 2.4;
    height: 2.4em;
    color: #111;
    padding: 0 0.1rem;
    border: none;
    background-color: #fff;
}

header .rav .sechom .stn {
    display: inline-block;
    vertical-align: middle;
    width: 2.2em;
    height: 2.2em;
    border-radius: 50%;
    background-color: var(--themes);
    position: relative;
}

header .rav .sechom .stn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    display: block;
    cursor: pointer;
    z-index: 1;
    filter: grayscale(1000%) brightness(2000%);
}

header .rav .sechom .stn input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
}

header .rav .languages {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    margin: 0 0.1rem;
    text-align: left;
    z-index: 3;
    margin-left: 0.4rem;
     text-transform: capitalize;
}

header .rav .languages .lauges {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

header .rav .languages .lauges .lashow {
    width: 100%;
    position: relative;
    cursor: pointer;
    font-size: 0;
    line-height: 40px;
    white-space: nowrap;
    height: 40px;
    padding-right: 16px;
}

header .rav .languages .lauges .lashow .ac {
    display: inline-block;
    vertical-align: middle;
    width: 19px;
    margin-right: 0.1rem;
}

header .rav .languages .lauges .lashow .ac img {
    width: 100%;
    display: block;
}

header .rav .languages .lauges .lashow .am {
    color: #fff;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    min-width: 40px;
}

header .rav .languages .lauges .lashow:after {
    content: ' ';
    position: absolute;
    right: 0rem;
    top: calc(50%);
    transform: translateY(-50%);
    background-image: url("../images/x1.png");
    width: 11px;
    height: 6px;
    background-size: 100%;
}

header .rav .languages .lauges .language {
    position: absolute;
    z-index: 20;
    top: 100%;
    width: 100%;
    display: none;
    width: 60px;
    width: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
}

header .rav .languages .lauges .language .latem {
    width: 100%;
}

header .rav .languages .lauges .language .latem a {
    width: 100%;
    display: block;
    color: #333;
    padding: 0 0.1rem;
    line-height: 3;
    text-align: center;
    position: relative;
    background: #efefef;
    overflow: hidden;
}

header .rav .languages .lauges .language .latem a span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

header .rav .languages .lauges .language .latem a:after {
    content: "";
    position: absolute;
    width: 140%;
    height: 100%;
    left: -10%;
    top: 0;
    z-index: -1;
    transform: translate(-105%, 0) skew(-20deg);
    background: var(--themes);
    z-index: 1;
    animation: outHover 0.5s ease 1 forwards;
}

header .rav .languages .lauges .language .latem a:hover {
    color: #fff;
}

header .rav .languages .lauges .language .latem a:hover span {
    color: #fff;
}

header .rav .languages .lauges .language .latem a:hover:after {
    animation-name: onHover;
}

@keyframes onHover {
    from {
        transform: translate(-110%, 0) skew(-20deg);
    }

    to {
        transform: translate(0, 0) skew(-20deg);
    }
}

@keyframes outHover {
    from {
        transform: translate(0, 0) skew(-20deg);
    }

    to {
        transform: translate(110%, 0) skew(-20deg);
    }
}

header .rav .rd {
    display: inline-block;
    vertical-align: middle;
    width: 0.51rem;
    margin-left: 0.3rem;
    cursor: pointer;
}

header .rav .rd img {
    width: 100%;
    display: block;
}

header .rav .menu {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    display: none;
}

header .rav .menu img {
    width: 100%;
    display: block;
}

header .rav .menu .clk {
    width: 100%;
    height: 100%;
    text-align: center;
    color: #333;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

header .logo {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    font-size: 0;
    white-space: nowrap;
}

header .logo .log {
    width: auto;
    height: 0.4rem;
    display: inline-block;
    vertical-align: middle;
}
header .h-tip{color: #333;font-weight: normal;padding-left: .45rem;line-height: 1;margin-top: 0.07rem;font-weight: bold;}
header .logo .log a,
header .logo .log img {
    height: 100%;
    display: block;
}
@media(max-width: 1706px){
    header .h-tip{font-size: 16px;}
}

header nav {
    display: block;
    text-align: center;
    flex: 1;
}

header nav .natem {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 0;
}

header nav .natem .nas {
    width: auto;
    display: inline-block;
    position: relative;
    margin: 0 0.1rem;
}

header nav .natem .nas a {
    display: inline-block;
    line-height: 0.9rem;
    color: #fff;
    color: #333;
    position: relative;
    padding: 0 0.15rem;
    transition: all ease 0.5s;
}

header nav .natem .nas:after {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: 0rem;
    transform: translateX(-50%);
    opacity: 0;
    height: 3px;
    width: 0;
    background-color: var(--themes);
    border-radius: 1.5px;
    transition: all ease 0.5s;
}

header nav .natem .navuls {
    width: 2.2rem;
    width: max-content;
    position: absolute;
    z-index: 101;
    left: calc(50%);
    top: 100%;
    transform: translateX(-50%);
    display: none;
}

header nav .natem .navuls ul {
    width: 100%;
}

header nav .natem .navuls ul li {
    width: 100%;
    position: relative;
}

header nav .natem .navuls ul li .njm {
    width: 100%;
    font-size: 0;
    background-color: white;
}

header nav .natem .navuls ul li .ns {
    width: 100%;
    display: block;
 
    line-height: 1.5;
    color: #222;
    text-align: center;
 
    padding: 1em 0.1rem;
    position: relative;
    text-align: center;
    background-color: white;
}

header nav .natem .navuls ul li .theul {
    width: max-content;
    background-color: #fff;
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}

header nav .natem .navuls ul li .theul li {
    width: 100%;
    font-size: 0;
}

header nav .natem .navuls ul li .theul li .xn {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 3;
    padding: 0 0.2rem;
    width: 100%;
}

header nav .natem .navuls ul li .theul li .xn:hover {
    color: #fff;
    background-color: var(--themes);
}

header nav .natem .navuls ul li:hover .ns {
    background-color: var(--themes);
    color: #fff;
}

header nav .natem .navuls ul li.has-the:after {
    content: "+";
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    position: absolute;
    background: none;
    right: 0;
    left: auto;
    transform: translateX(0);
    top: 0.05rem;
    font-size: 20px;
    color: #333;
    border: none;
    display: none;
}

header nav .natem .navuls ul li.has-the.show:after {
    content: "-";
}

header nav .natem.has-nav .nas .xs {
    display: inline-block;
}

header nav .natem.has-nav.on .nas a {
    color: var(--themes);
}

header nav .natem.has-nav.on .nas:after {
    opacity: 1;
    width: 100%;
}

header nav .natem.has-nav:hover .nas a {
    color: var(--themes);
}

header nav .natem.has-nav:hover .nas:after {
    opacity: 1;
    width: 100%;
}
@media(max-width: 1100px){
    header{padding-left: 5px;padding-right: 5px;}
    header .w1600{width: 100%;}
}
@media(max-width: 1000px){
    header nav .natem .nas{margin: 0;}
    header nav .natem .nas a{padding: 0 0.05rem;}
}
@media (max-width: 800px) {
    header {
        background-color: #fff;
    }
    header .h-tip{padding-left: 27px;font-size: 16px;}
    header .hop {
        align-items: center;
        padding: 0.1rem 0;
        height: calc(40px + 0.2rem);
    }
    header .logo .log{
        height: 24px;
    }
    header .blace {
        position: fixed;
        z-index: -1;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 450;
        display: none;
        background-color: rgba(0, 0, 0, 0.5);
    }

    header nav {
        width: 100%;
        width: 5rem;
        position: fixed;
        right: -100%;
        top: 0;
        left: auto;
        height: 100vh;
        background-color: #fff;
        margin-right: 0;
        overflow: auto;
        z-index: 500;
        transition: all ease 1.2s;
        padding-left: 0.1rem;
        padding: 0.1rem;
        display: block;
        text-align: left;
        opacity: 0;
        border-top: solid 1px #e5e5e5;
    }

    header nav .natem {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        width: auto;
        width: 100%;
        padding: 0.1rem 0;
        opacity: 0;
        transform: translate(-10px, -30px);
        transition: all .8s ease;
    }

    header nav .natem .nas {
        width: auto;
        display: inline-block;
        text-align: left;
        width: 100%;
        margin: 0;
    }

    header nav .natem .nas a {
        width: auto;
        display: inline-block;
        vertical-align: middle;
        line-height: 2.5;
        color: #333;
        font-weight: bold;
        font-family: 'Alibaba-PuHuiTi-Bold';
        padding: 0 0.3rem;
        position: relative;
    }

    header nav .natem .nas .ik {
        display: none !important;
    }

    header nav .natem .nas a:hover {
        color: var(--themes);
        background-color: transparent;
    }

    header nav .natem .navuls {
        width: 100%;
        position: relative;
        z-index: 101;
        left: 0%;
        top: 0%;
        transform: translateX(0%);
        background: #fff;
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.09);
        display: none;
        text-align: left;
    }

    header nav .natem .navuls ul {
        width: 100%;
        padding: 0.1rem 0.2rem;
    }

    header nav .natem .navuls ul li {
        width: 100%;
        display: block;
        position: relative;
        margin-bottom: 0;
    }

    header nav .natem .navuls ul li .njm {
        background-color: #fff;
        border-top: none;
    }

    header nav .natem .navuls ul li .ns {
        width: auto;
        display: inline-block;
        vertical-align: middle;
        line-height: 3;
        color: #333;
        text-align: left !important;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        padding: 0 0.2rem;
        background: #fff;
        position: relative;
    }

    header nav .natem .navuls ul li .ns:hover {
        color: var(--themes);
    }

    header nav .natem .navuls ul li .theul {
        position: relative;
        left: 0;
    }

    header nav .natem .navuls ul li+li {
        border-top: solid 1px #eee;
    }

    header nav .natem .navuls ul li:hover .ns {
        background-color: transparent;
        color: var(--themes);
    }

    header nav .natem .navuls ul li.has-the:after {
        display: block;
    }

    header nav .natem:before {
        display: none !important;
    }

    header nav .natem.on .nas:after {
        display: none;
    }

    header nav .natem.has-nav .nas .xs {
        display: none;
    }

    header nav .natem.has-nav:after {
        content: "+";
        display: inline-block;
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        position: absolute;
        background: none;
        right: 0;
        left: auto;
        transform: translateX(0);
        top: 0.05rem;
        font-size: 20px;
        color: #333;
        border: none;
    }

    header nav .natem.has-nav.show:after {
        content: "-";
    }

    header nav .natem.animate {
        opacity: 1;
        transform: translate(0, 0);
    }

    header .rav .menu {
        width: 30px;
        height: 30px;
        display: inline-block;
        margin-left: 0.15rem;
    }

    header .rav .menu img {
        width: 100%;
        display: block;
        filter: grayscale(1000%) brightness(2000%);
    }

    header .rav .menu .clk {
        line-height: 30px;
    }

    header .rav .searcom {
        width: 80px;
        background-color: #f8f8f8;
    }

    header .rav .searcom .input input {
        color: #333;
    }

    header .rav .searcom .input input::-webkit-input-placeholder,
    header .rav .searcom .input textarea::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

    header .rav .searcom .input input:-moz-placeholder,
    header .rav .searcom .input textarea:-moz-placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

    header .rav .searcom .input input::-moz-placeholder,
    header .rav .searcom .input textarea::-moz-placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

    header .rav .searcom .input input:-ms-input-placeholder,
    header .rav .searcom .input textarea:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

    header .rav .search {
        width: 20px;
        display: inline-block;
        margin-right: 5px;
    }

    header .rav .search .sc {
        width: 15px;
        height: 15px;
    }

    header .rav .sechom {
        width: 100vw;
        position: fixed;
        left: 0;
        top: calc(40px + 0.2rem);
        padding: 0.15rem;
    }

    header .rav .languages .lauges .lashow .am {
        color: #000;
        font-size: 14px;
    }

    header .hot {
        border-bottom: solid 1px rgba(0, 0, 0, 0.08);
    }

    header .hot .hom .hkr .tc img:first-child {
        display: none;
    }

    header .hot .hom .hkr .tc img:last-child {
        display: block;
    }

    header .hot .hom .hkr .tm {
        color: #222;
    }

    header.menu-state .rav .menu img {
        opacity: 0;
    }

    header.menu-state nav {
        opacity: 1;
        right: 0;
    }

    header.menu-state .blace {
        opacity: 1;
    }
}
@media(max-width: 400px){
    header .h-tip{font-size: 14px;}
}
footer {
    width: 100%;
    background-color: #333;
}

footer .ftop {
    width: 100%;
    padding: 0.8rem 0 1.2rem;
}

footer .fop {
    width: 100%;
    font-size: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .fop .fol {
    display: inline-block;
    vertical-align: top;
    width: calc(400 / 1600 * 100%);
}

footer .fop .fol .fogo {
    width: 100%;
    font-size: 0;
}

footer .fop .fol .fogo a {
    display: inline-block;
    vertical-align: middle;
    width: 2.19rem;
}

footer .fop .fol .fogo a img {
    width: 100%;
    display: block;
}

footer .fop .fol .fum {
    width: 100%;
    color: #fff;
    line-height: 1.5;
    margin-top: 0.35rem;
}

footer .fop .fol .finp {
    width: 100%;
    color: #666;
    line-height: 1.875;
    margin-top: 0.06rem;
}

footer .fop .fol .finp p {
    color: #666;
    line-height: 1.875;
}

footer .fop .fol .share {
    width: 100%;
    font-size: 0;
    margin-top: 0.4rem;
}

footer .fop .fol .share .am {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: relative;
}

footer .fop .fol .share .am a {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    border: solid 1px rgba(255, 255, 255, 0.1);
    display: inline-block;
    vertical-align: middle;
}

footer .fop .fol .share .am .codm {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1.1rem;
    height: 1.1rem;
    background-color: #fff;
    padding: 0.06rem;
    border-radius: 5px;
    top: calc(100% + 0.1rem);
    display: none;
}

footer .fop .fol .share .am .codm:after {
    content: ' ';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    bottom: 100%;
    border: solid 0.05rem;
    border-color: transparent transparent #fff transparent;
}

footer .fop .fol .share .am:hover a {
    border: solid 1px var(--themes);
    background-color: var(--themes);
}

footer .fop .fol .share .am:hover .codm {
    display: block;
}

footer .fop .fol .share .am+.am {
    margin-left: 0.1rem;
}

footer .fop .for {
    display: inline-block;
    vertical-align: top;
    width: calc(1100 / 1600 * 100%);
}

footer .fop .for .flist {
    display: inline-block;
    vertical-align: top;
    width: calc(183 / 1100 * 100%);
    text-align: left;
    padding-right: 0.15rem;
}

footer .fop .for .flist .fit {
    width: 100%;
    font-size: 0;
    margin-bottom: 0.2rem;
}

footer .fop .for .flist .fit a {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1.4;
    font-weight: bold;
    transition: all ease 0.5s;
}

footer .fop .for .flist .fit a:hover {
    color: var(--themes);
}

footer .fop .for .flist .ful {
    width: 100%;
}

footer .fop .for .flist .ful a {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.3);
    transition: all ease 0.5s;
    line-height: 2;
    line-height: 1.5;
    padding: 0.05rem 0;
}

footer .fop .for .flist .ful a:hover {
    color: #fff;
}

footer .fop .for .flist .ful div {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.3);
    line-height: 2;
    transition: all ease 0.5s;
}

footer .fbot {
    width: 100%;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0;
}

footer .fbot .fob {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

footer .fbot .fob .fol,
footer .fbot .fob .for {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

footer .fbot .fob .fm {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    line-height: 1.5;
    width: auto;
}

footer .fbot .fob .fm a {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    line-height: 1.5;
}

footer .fbot .fob .fm a:hover {
    color: #fff;
}

footer .fbot .fob .select {
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
    border: none;
    text-align: left;
    position: relative;
    width: 2.2rem;
    z-index: 1;
    margin-right: 0.2rem;
}

footer .fbot .fob .select .select-con {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 0;
}

footer .fbot .fob .select .select-con .select-value {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    line-height: 3em;
    height: 3em;
    color: #fff;
    cursor: pointer;
    padding: 0 .2rem;
    z-index: 3;
    position: relative;
    border: solid 1px rgba(255, 255, 255, 0.1);
}

footer .fbot .fob .select .select-con select {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
}

footer .fbot .fob .select .select-con select option {
    color: #666;
    font-size: .16rem;
    line-height: 2.5;
    background: #fff;
}

footer .fbot .fob .select .select-con .seluls {
    position: absolute;
    left: 0;
    bottom: calc(100%);
    min-width: 100%;
    max-height: 360px;
    overflow: auto;
    display: none;
    box-sizing: border-box;
    text-align: left;
    background-color: white;
    z-index: 2;
    box-shadow: 0px 7px 59px 0px rgba(30, 112, 38, 0.16);
    overflow: auto;
    /*滚动条里面小方块*/
    /*滚动条里面轨道*/
}

footer .fbot .fob .select .select-con .seluls .option {
    width: 100%;
    color: #333;
    line-height: 1.75;
    cursor: pointer;
    padding: 0.05rem 0.15rem;
}

footer .fbot .fob .select .select-con .seluls .option:hover {
    background-color: var(--themes);
    color: #fff;
}

footer .fbot .fob .select .select-con .seluls .option+.option {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
}

footer .fbot .fob .select .select-con .seluls::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

footer .fbot .fob .select .select-con .seluls::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(4, 55, 147, 0.3);
    background: rgba(4, 55, 147, 0.3);
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

footer .fbot .fob .select .select-con .seluls::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

footer .fbot .fob .select .select-con:after {
    display: inline-block;
    content: "";
    position: absolute;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 14px;
    height: 8px;
    background-image: url("../images/xx1.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 800px) {
    footer .ftop {
        padding: 0.3rem 0 0;
    }

    footer .fop {
        width: 100%;
    }

    footer .fop .fol {
        width: 100%;
    }

    footer .fop .fol .share {
        margin-top: 0.2rem;
    }

    footer .fop .fol .share .am {
        display: inline-block;
        vertical-align: middle;
    }

    footer .fop .fol .share .am a {
        width: 0.6rem;
        height: 0.6rem;
    }

    footer .fop .for .flist {
        width: 100%;
        border-bottom: solid 1px rgba(255, 255, 255, 0.1);
        position: relative;
    }

    footer .fop .for .flist .fit {
        width: 100%;
        margin-bottom: 0;
        padding: 0.25rem 0;
        margin-left: 0;
    }

    footer .fop .for .flist .fit a {
        font-size: 16px;
    }

    footer .fop .for .flist .ful {
        width: 100%;
        font-size: 0;
        padding-bottom: 0.15rem;
        display: none;
        height: auto;
    }

    footer .fop .for .flist .ful a {
        line-height: 2;
    }

    footer .fop .for .flist:last-child {
        border: none;
    }

    footer .fop .for .flist:first-child {
        border-top: none;
    }

    footer .fop .for .flist.has-ful:after {
        content: " ";
        display: inline-block;
        width: 12px;
        height: 7px;
        background-image: url("../images/xx1.png");
        background-position: center;
        background-size: 100% 100%;
        text-align: center;
        position: absolute;
        right: 0.2rem;
        left: auto;
        transform: translateX(0) rotate(180deg);
        top: 0.4rem;
        color: #333;
        border: none;
        transition: all ease 0.5s;
    }

    footer .fop .for .flist.has-ful.show:after {
        content: " ";
        transform: translateX(0) rotate(0deg);
    }
}

.modular {
    width: 100%;
}

.modular .mitop {
    width: 100%;
    text-align: center;
    margin-bottom: 0.6rem;
}

.modular .mitop .mit {
    width: 100%;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
}

.modular .mitop .mx {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin-top: 0.07rem;
}

.newsm {
    width: 100%;
    padding: 1rem 0;
    background-color: #f5f5f5;
}

.newsm .newpers {
    width: 100%;
}

.newsm .newpers .swiper-slide {
    width: 100%;
}

.newsm .newpers .swiper-slide a {
    width: 100%;
    display: block;
}

.newsm .newpers .swiper-slide .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.newsm .newpers .swiper-slide .imgs .img {
    width: 100%;
    padding-top: 60%;
    transition: all ease 0.5s;
}

.newsm .newpers .swiper-slide .lom {
    width: 100%;
    background-color: #fff;
    padding: 0.6rem 0.3rem 0.3rem;
    border-bottom: solid 2px transparent;
    position: relative;
}

.newsm .newpers .swiper-slide .lom .day {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    background-color: var(--themes);
    top: -0.7rem;
    right: 0.3rem;
    text-align: center;
}

.newsm .newpers .swiper-slide .lom .day .dme {
    width: 100%;
    color: #fff;
    font-weight: bold;
}

.newsm .newpers .swiper-slide .lom .day .em {
    width: 100%;
    color: #fff;
}

.newsm .newpers .swiper-slide .lom .xt {
    width: 100%;
    color: #333;
    line-height: 1.5;
    height: 3em;
}

.newsm .newpers .swiper-slide .lom .xm {
    width: 100%;
    color: #666;
    line-height: 1.5;
    height: 3em;
    margin-top: 0.25rem;
}

.newsm .newpers .swiper-slide:hover {
    box-shadow: 0px 7px 59px 0px rgba(30, 112, 38, 0.16);
}

.newsm .newpers .swiper-slide:hover .imgs .img {
    transform: scale(1.1);
}

.newsm .newpers .swiper-slide:hover .lom .xt {
    color: var(--themes);
}

.newsm .mot {
    width: 100%;
    font-size: 0;
    text-align: center;
    margin-top: 0.6rem;
}

.newsm .mot a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 0 0.45rem;
    border-radius: 1.5em;
    line-height: 3;
    color: #fff;
    background-color: var(--themes);
}

.newsm .mot a span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    top: -0.01rem;
    margin-left: 0.1rem;
}

.makes {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.makes .mal {
    display: inline-block;
    vertical-align: middle;
    width: calc(910 / 1920 * 100%);
    position: relative;
}

.makes .mal .hei {
    width: 100%;
    padding-top: 96.70%;
}

.makes .mal .imgs {
    width: calc(600 / 910 * 100%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.makes .mal .imgs .img {
    width: 100%;
    padding-top: 100%;
}

.makes .mar {
    display: inline-block;
    vertical-align: middle;
    width: calc(700 / 1920 * 100%);
    margin-right: calc(160 / 1920 * 100%);
    position: relative;
    z-index: 3;
}

.makes .mar .mir {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.makes .mar .minp {
    width: 100%;
    color: #333;
    line-height: 1.6;
}

.makes .mar .minp p {
    color: #333;
    line-height: 1.6;
}

.makes .mar .mot {
    width: 100%;
    font-size: 0;
    margin-top: 0.6rem;
}

.makes .mar .mot a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 0 0.45rem;
    border-radius: 1.5em;
    line-height: 3;
    color: #fff;
    background-color: var(--themes);
}

.makes .mar .mot a span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    top: -0.01rem;
    margin-left: 0.1rem;
}

.makes .lum {
    position: absolute;
    z-index: 1;
    right: calc(160 / 1920 * 100%);
    font-size: 3rem;
    background: linear-gradient(0deg, rgba(1, 82, 161, 0.1), transparent);
    /* 标准语法 */
    -webkit-background-clip: text;
    /* Chrome, Safari */
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Chrome, Safari */
    color: transparent;
    font-weight: bold;
    bottom: 0.3rem;
}

@media (max-width: 800px) {
    .makes .mal {
        width: 100%;
    }

    .makes .mar {
        width: 100%;
    }
}

.introm {
    width: 100%;
    padding: 1rem 0;
}

.introm .intop {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.introm .intop .inl {
    display: inline-block;
    vertical-align: middle;
    width: calc(620 / 1600 * 100%);
}

.introm .intop .inl .int {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
}

.introm .intop .inr {
    display: inline-block;
    vertical-align: middle;
    width: calc(930 / 1600 * 100%);
}

.introm .intop .inr .rc {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    border: solid 1px #0152a1;
    display: block;
}

.introm .intop .inr .kmt {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin: 0.08rem 0 0.1rem;
}

.introm .intop .inr .kinp {
    width: 100%;
    color: #333;
    line-height: 1.5;
}

.introm .intem {
    width: 100%;
    position: relative;
}

.introm .intem .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.introm .intem .imgs .img {
    width: 100%;
    padding-top: 37.5%;
}

.introm .intem .atn {
    position: absolute;
    left: 45%;
    transform: translate(-50%, -50%);
    top: 0;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 0 0.45rem;
    border-radius: 1.5em;
    line-height: 3;
    color: #fff;
    background-color: var(--themes);
}

.introm .intem .atn span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    top: -0.01rem;
    margin-left: 0.1rem;
}

.service {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.service .sel {
    display: inline-block;
    vertical-align: middle;
    width: calc(1100 / 1920 * 100%);
}

.service .sel .selm {
    width: 100%;
    display: none;
}

.service .sel .selm.on {
    display: block;
}

.service .sel .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service .sel .imgs .img {
    width: 100%;
    padding-top: 63.63%;
    transition: all ease 0.5s;
}

.service .ser {
    display: inline-block;
    vertical-align: middle;
    width: calc(560 / 1920 * 100%);
    margin-left: calc(160 / 1920 * 100%);
}

.service .ser .mir {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.service .ser .minp {
    width: 100%;
    color: #333;
    line-height: 1.6;
}

.service .ser .minp p {
    color: #333;
    line-height: 1.6;
}

.service .ser .mot {
    width: 100%;
    font-size: 0;
    margin-top: 0.6rem;
}

.service .ser .mot a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 0 0.45rem;
    border-radius: 1.5em;
    line-height: 3;
    color: #fff;
    background-color: var(--themes);
}

.service .ser .mot a span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    top: -0.01rem;
    margin-left: 0.1rem;
}

.service .sel  .samllper {
    width: calc(100% - .6rem);
    margin: .3rem auto 0;
    /* margin-top: 0.8rem; */
    position: relative;
}

.service .sel  .samllper .swiper-container {
    padding-top: 0.45rem;
}

.service .sel  .samllper .swiper-scrollbar {
    top: 0.1rem;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.service .sel  .samllper .swiper-container-horizontal>.swiper-scrollbar {
    height: 2px;
    background-color: rgba(102, 102, 102, 0.1);
}

.service .sel  .samllper .swiper-scrollbar-drag {
    background-color: var(--themes);
}

.service .sel  .samllper .pagination {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    font-size: 0;
}

.service .sel  .samllper .pagination .xm {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-weight: bold;
}

.service .sel  .samllper .pagination .xd {
    margin: 0 0.02rem;
}

.service .sel  .samllper .btns {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
}

.service .sel  .samllper .btns .btn {
    display: inline-block;
    vertical-align: middle;
    width: 0.1rem;
    cursor: pointer;
}

.service .sel  .samllper .btns .btn img {
    width: 100%;
    display: block;
}

.service .sel  .samllper .btns .btn img:first-child {
    display: block;
}

.service .sel  .samllper .btns .btn img:last-child {
    display: none;
}

.service .sel  .samllper .btns .btn:hover img:first-child {
    display: none;
}

.service .sel  .samllper .btns .btn:hover img:last-child {
    display: block;
}

.service .sel  .samllper .btns .btn+.btn {
    margin-left: 0.1rem;
}

.service .sel  .samllper .swiper-slide {
    width: 100%;
    position: relative;
    transition: all ease 0.5s;
    opacity: 0.3;
    cursor: pointer;
}

.service .sel  .samllper .swiper-slide .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service .sel  .samllper .swiper-slide .imgs .img {
    width: 100%;
    padding-top: 62.5%;
    transition: all ease 0.5s;
}

.service .sel  .samllper .swiper-slide:hover,
.service .sel  .samllper .swiper-slide.on {
    opacity: 1;
}

.banner {
    width: 100%;
    position: relative;
}

.banner .swiper-slide {
    width: 100%;
    position: relative;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.banner .swiper-slide .imgs.pcm {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.banner .swiper-slide .imgs.pcm .img {
    width: 100%;
    padding-top: 44.79%;
}

.banner .swiper-slide .imgs.phm {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: none;
}

.banner .swiper-slide .imgs.phm .img {
    width: 100%;
    padding-top: 44.79%;
}

.banner .swiper-slide .box {
    /* position: absolute;
    z-index: 4;
    top: 20%;
    transform: translateY(-50%);
    left: 0;
    width: 100%; */
    /* max-width: 80%; */
    /* padding: 0 0.3rem; */
    /* text-shadow: 0 0 0.05rem rgba(0, 0, 0, 0.5); */
    width: 16rem;
    max-width: calc(100% - .6rem);
    margin: 0 auto;
    padding: .5rem 0;
}

.banner .swiper-slide .box .bit {
    width: 100%;
    color: #fff;
    line-height: 1.3;
    text-align: center;
    font-weight: bold;
    opacity: 0;
    transform: translate3d(0, 25%, 0);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s, box-shadow .3s;
    /* text-shadow: 0 0 0.05rem rgba(0, 0, 0, 0.5); */
}

.banner .swiper-slide .box .bit p {
    color: var(--themes);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    padding-left: 0 !important;
}

.banner .swiper-slide .box .eim {
    width: 100%;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    margin-top: 0.1rem;
    opacity: 0;
    transform: translate3d(0, 25%, 0);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s, box-shadow .3s;
}

.banner .swiper-slide .box .eim p {
    color: #fff;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.banner .swiper-slide .box .more {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0;
    opacity: 0;
    transform: translate3d(0, 25%, 0);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s, box-shadow .3s;
}

.banner .swiper-slide .box .more a {
    display: inline-block;
    vertical-align: middle;
    border: solid 1px #fff;
    color: #fff;
    line-height: 3;
    border-radius: 1.5em;
    width: auto;
    padding: 0 0.4rem;
}

.banner .swiper-slide .box .more a span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.2rem;
    width: 0.18rem;
    position: relative;
    top: -0.02rem;
    height: 0.18rem;
    border-radius: 50%;
    background-color: var(--themes);
}

.banner .swiper-slide .box .more a span img {
    width: 100%;
    display: block;
}

.banner .swiper-slide .box .more a span img:first-child {
    display: block;
}

.banner .swiper-slide .box .more a span img:last-child {
    display: none;
}

.banner .swiper-slide .box .more a:hover {
    background-color: var(--themes);
    color: #fff;
    border: solid 1px var(--themes);
}

.banner .swiper-slide .box .more a:hover span {
    background-color: #fff;
}

.banner .swiper-slide .box .more a:hover span img:first-child {
    display: none;
}

.banner .swiper-slide .box .more a:hover span img:last-child {
    display: block;
}

.banner .swiper-slide .box .vob {
    width: 100%;
    font-size: 0;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translate3d(0, 25%, 0);
    transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s, box-shadow .3s;
}

.banner .swiper-slide .box .vob a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    background-color: #fff;
    padding: 0 0.45rem;
    color: #000;
    cursor: pointer;
    line-height: 3;
}

.banner .swiper-slide .box .vob a:hover {
    background-color: var(--themes);
    color: #fff;
}

.banner .swiper-slide .videoc {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all ease 0.5s;
    z-index: 5;
}

.banner .swiper-slide .videoc .vom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.banner .swiper-slide-active .box .bit,
.banner .swiper-slide-active .box .more,
.banner .swiper-slide-active .box .eim,
.banner .swiper-slide-active .box .vob {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.banner .swiper-pagination {
    bottom: 0.3rem;
}

.banner .swiper-pagination-bullet {
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    margin: 0 5px;
}

.banner .swiper-pagination-bullet-active {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background-image: url("../images/i2.png");
    background-size: 100% 100%;
    opacity: 1;
    background-color: transparent;
    border-radius: 0;
}

.banner .btn {
    position: absolute;
    bottom: 0;
    width: 0.29rem;
    cursor: pointer;
    z-index: 2;
    top: 50%;
    height: 0.51rem;
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-50%);
}

.banner .btn img {
    width: 100%;
    display: block;
}

.banner .btn img:first-child {
    display: block;
}

.banner .btn img:last-child {
    display: none;
}

.banner .btn:hover img:first-child {
    display: none;
}

.banner .btn:hover img:last-child {
    display: block;
}

.banner .bl {
    left: 0.6rem;
}

.banner .br {
    right: 0.6rem;
}

@media (max-width: 800px) {
    .banner .swiper-slide .box {
        left: 0;
    }

    .banner .swiper-slide .box .bit {
        font-size: 16px;
    }

    .banner .swiper-slide .box .eim {
        font-size: 12px;
    }

    .banner .swiper-slide .box .more a {
        font-size: 12px;
    }

    .banner .bl {
        left: 0.05rem;
    }

    .banner .br {
        right: 0.05rem;
    }
}

.rightnav {
    position: fixed;
    right: 0.2rem;
    top: 65%;
    z-index: 10;
}

.rightnav .ritm {
    width: 0.6rem;
    height: 0.6rem;
    display: block;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.09);
}

.rightnav .ritm a,
.rightnav .ritm img {
    width: 100%;
    display: block;
}

.rightnav .ritm .ritom {
    position: absolute;
    right: calc(100% + 0.1rem);
    transform: translateY(-50%);
    background-color: var(--themes);
    top: 50%;
    padding: 0.1rem 0.24rem;
    border-radius: 0.3rem;
    white-space: nowrap;
    display: none;
}

.rightnav .ritm .ritom .rum {
    width: 100%;
    color: #fff;
    line-height: 2;
}

.rightnav .ritm:hover {
    background-color: var(--themes);
}

.rightnav .ritm:hover img {
    filter: grayscale(1000%) brightness(2000%);
}

.rightnav .ritm:hover .ritom {
    display: block;
}

.rightnav .ritm+.ritm {
    margin-top: 0.2rem;
}

.nanner {
    width: 100%;
    position: relative;
}

.nanner .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.nanner .imgs .img {
    width: 100%;
    padding-top: 31.25%;
}

.nanner .nox {
    position: absolute;
    left: calc((100% - 16rem) / 2);
    top: 50%;
    transform: translateY(-50%);
}

.nanner .nox .nit {
    width: 100%;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
}

@media (max-width: 1680px) {
    .nanner .nox {
        left: 5%;
    }
}

@media (max-width: 800px) {
    .nanner .nox {
        left: 3%;
    }
}

.crumbs {
    width: 100%;
    background-color: transparent;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 16px 0px rgba(204, 204, 204, 0.28);
}

.crumbs .column {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    font-size: 0;
    position: relative;
}

.crumbs .column .colum {
    width: auto;
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
    z-index: 2;
    position: relative;
}

.crumbs .column .colum .home {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    margin-right: .1rem;
    position: relative;
    top: -0.02rem;
}

.crumbs .column .colum .home img {
    width: 100%;
    display: block;
}

.crumbs .column .colum .sm {
    display: inline-block;
    vertical-align: middle;
    color: #666;
    line-height: 3;
}

.crumbs .column .colum a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #333;
    line-height: 1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.crumbs .column .colum a span {
    display: inline-block;
    color: #333;
    line-height: 3;
    position: relative;
    margin: 0 .08rem;
}

.crumbs .column .colum a span img {
    width: 100%;
    display: block;
}

.crumbs .column .colum a:hover {
    color: var(--themes);
}

.crumbs .column .colum a:last-child span {
    display: none;
}

.crumbs .column .cul {
    display: inline-block;
    vertical-align: middle;
    flex: 1;
    z-index: 2;
    position: relative;
}

.crumbs .column .cul .swiper-slide {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin-right: 0.6rem;
    position: relative;
}

.crumbs .column .cul .swiper-slide a {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1rem;
    width: auto;
    transition: all ease 0.5s;
}

.crumbs .column .cul .swiper-slide a span {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0.02rem;
    background-color: var(--themes);
    transition: all ease 0.5s;
    opacity: 0;
}

.crumbs .column .cul .swiper-slide:after {
    content: ' ';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--themes);
    opacity: 0;
    transition: all ease 0.5s;
    bottom: 0;
}

.crumbs .column .cul .swiper-slide.on a,
.crumbs .column .cul .swiper-slide:hover a {
    color: var(--themes);
}

.crumbs .column .cul .swiper-slide.on:after,
.crumbs .column .cul .swiper-slide:hover:after {
    opacity: 1;
    background-color: var(--themes);
}

.crumbs .column .cul .swiper-scrollbar {
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    display: none;
}

.crumbs .column .cul .swiper-scrollbar-drag {
    background-color: var(--themes);
}

.crumbs .column .cul.pbs .swiper-container {
    padding-bottom: 0.15rem;
}

.crumbs .column .cul.pbs .swiper-scrollbar {
    display: block;
}

.crumbs .column.xl {
    justify-content: space-between;
    font-size: 0;
    align-items: center;
}

.crumbs.no:after {
    display: none;
}

.crumbs.garys {
    background-color: #f3f3f3;
    border-bottom: solid 1px #e2e2e2;
    box-shadow: none;
}

.crumbs.garys .column {
    justify-content: flex-start;
}

@media (max-width: 800px) {
    .crumbs .w1600 {
        width: 100%;
    }

    .crumbs .column {
        flex-direction: column-reverse;
    }

    .crumbs .column .colum {
        padding: 0 0.2rem;
        border-bottom: solid 1px #eee;
    }

    .crumbs .column .cul {
        width: 100%;
        padding: 0 0.2rem;
    }

    .crumbs .column .cul .swiper-wrapper {
        justify-content: flex-start;
    }
}

.hotline {
    width: 100%;
    background-color: #f5f5f5;
    padding: 1rem 0;
}

.hotline .addrlis {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hotline .addrlis .adrem {
    display: inline-block;
    vertical-align: top;
    width: calc(500 / 1600 * 100%);
    margin-right: calc(49 / 1600 * 100%);
    margin-bottom: 0.3rem;
    padding: 0.5rem 0.3rem;
    position: relative;
    background-color: #fff;
    cursor: pointer;
}

.hotline .addrlis .adrem .aid {
    width: 100%;
    color: #333;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.hotline .addrlis .adrem .lx {
    width: 100%;
    height: 1px;
    background-color: #f3f3f3;
    margin: 0.18rem 0;
    position: relative;
    z-index: 2;
    display: block;
}

.hotline .addrlis .adrem .ainp {
    width: 100%;
    color: #666;
    line-height: 2;
    min-height: 6em;
    position: relative;
    z-index: 2;
}

.hotline .addrlis .adrem .ainp p {
    color: #666;
    line-height: 2;
}

.hotline .addrlis .adrem .og {
    position: absolute;
    right: 0.06rem;
    bottom: 0.06rem;
    width: 1.25rem;
    z-index: 1;
    opacity: 0;
}

.hotline .addrlis .adrem .og img {
    width: 100%;
    display: block;
}

.hotline .addrlis .adrem:nth-child(3n) {
    margin-right: 0;
}

.hotline .addrlis .adrem:hover {
    background-color: var(--themes);
}

.hotline .addrlis .adrem:hover .og {
    opacity: 1;
}

.hotline .addrlis .adrem:hover .aid,
.hotline .addrlis .adrem:hover .ainp {
    color: #fff;
}

.hotline .addrlis .adrem:hover .aid p,
.hotline .addrlis .adrem:hover .ainp p {
    color: #fff;
}

.hotline .liaisons {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.hotline .liaisons .liaom {
    display: inline-block;
    vertical-align: top;
    width: calc(500 / 1600 * 100%);
    margin-right: calc(49 / 1600 * 100%);
    margin-bottom: 0.3rem;
    background-color: #fff;
    cursor: pointer;
}

.hotline .liaisons .liaom .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hotline .liaisons .liaom .imgs .img {
    width: 100%;
    padding-top: 60%;
    transition: all ease 0.5s;
}

.hotline .liaisons .liaom .lom {
    width: 100%;
    padding: 0.4rem 0.3rem 0.6rem;
}

.hotline .liaisons .liaom .lom .vit {
    width: 100%;
    color: #333;
    line-height: 1.5;
}

.hotline .liaisons .liaom .lom .lx {
    width: 100%;
    height: 1px;
    margin: 0.18rem 0;
    background-color: #f3f3f3;
    display: block;
}

.hotline .liaisons .liaom .lom .vuls {
    width: 100%;
    font-size: 0;
}

.hotline .liaisons .liaom .lom .vuls .vli {
    width: 100%;
    font-size: 0;
    padding: 0.04rem 0;
}

.hotline .liaisons .liaom .lom .vuls .vli .vc {
    display: inline-block;
    vertical-align: top;
    width: 18px;
    margin-right: 0.1rem;
    margin-top: calc(1em - 9px);
}

.hotline .liaisons .liaom .lom .vuls .vli .vc img {
    width: 100%;
    display: block;
}

.hotline .liaisons .liaom .lom .vuls .vli .cm {
    width: calc(100% - 18px - 0.1rem);
    display: inline-block;
    vertical-align: top;
    color: #666;
    line-height: 2;
}

.hotline .liaisons .liaom:nth-child(3n) {
    margin-right: 0;
}

.hotline .liaisons .liaom:hover .imgs .img {
    transform: scale(1.1);
}

.message {
    width: 100%;
    padding: 1rem 0;
}

.message .form {
    width: 100%;
    display: block;
}

.message .row {
    width: 100%;
    font-size: 0;
}

.message .row .inputs {
    display: inline-block;
    vertical-align: top;
    width: calc(500 / 1600 * 100%);
    margin-right: calc(49 / 1600 * 100%);
    margin-bottom: 0.3rem;
}

.message .row .inputs:nth-child(3n) {
    margin-right: 0;
}

.message .row .inp {
    width: 100%;
    display: block;
}

.message .row .int {
    width: 100%;
    display: block;
    padding: 0 0.2rem;
    border: solid 1px #dfdddd;
    background-color: #fff;
    border-radius: 4px;
    color: #333;
    line-height: 3;
    height: 3em;
}

.message .name {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.14rem;
}

.message .name span {
    display: inline-block;
    color: #ea0004;
    line-height: 1.5;
    margin-right: 0.03rem;
}

.message .text,
.message .area {
    width: 100%;
    display: block;
}

.message .txt {
    width: 100%;
    display: block;
    padding: 0.2rem;
    border: solid 1px #dfdddd;
    background-color: #fff;
    border-radius: 4px;
    line-height: 1.875;
    color: #333;
}

.message .sob {
    width: 100%;
    font-size: 0;
    margin-top: 0.5rem;
}

.message .sob .stn {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: relative;
    padding: 0 0.45rem;
    background-color: var(--themes);
    color: #fff;
    line-height: 3;
    border-radius: 1.5em;
    position: relative;
    top: 0;
    transition: all ease 0.5s;
}

.message .sob .stn span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 0.1rem;
    position: relative;
    top: -0.02rem;
}

.message .sob .stn .std {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 2;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.message .sob .stn:hover {
    top: -0.1rem;
}

.development {
    width: 100%;
    padding: 1rem 0;
}

.development .devom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.development .devom .dml {
    display: inline-block;
    vertical-align: middle;
    width: calc(800 / 1600 * 100%);
}

.development .devom .dml .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.development .devom .dml .imgs .img {
    width: 100%;
    padding-top: 67.5%;
}

.development .devom .dmr {
    display: inline-block;
    vertical-align: middle;
    width: calc(690 / 1600 * 100%);
}

.development .devom .dmr .dir {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.development .devom .dmr .dinp {
    width: 100%;
    color: #333;
    line-height: 2;
}

.development .devom .dmr .dinp p {
    color: #333;
    line-height: 2;
}

.development .danner {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

.development .danner .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.development .danner .imgs .img {
    width: 100%;
    padding-top: 31.25%;
}

.development .danner .vox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    text-align: center;
}

.development .danner .vox .vix {
    width: 100%;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.12rem;
}

.development .danner .vox .sinp {
    width: 100%;
    color: #fff;
    line-height: 1.875;
}

.development .danner .vox .sinp p {
    color: #fff;
    line-height: 1.875;
}

.development .danner .atn {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: relative;
    padding: 0 0.45rem;
    background-color: var(--themes);
    color: #fff;
    line-height: 3;
    border-radius: 1.5em;
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
    transition: all ease 0.5s;
}

.development .danner .atn span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 0.1rem;
    position: relative;
    top: -0.02rem;
}

.development .danner .atn:hover {
    bottom: 0.1rem;
}

@media (max-width: 800px) {
    .development .danner .imgs .img {
        padding-top: 65%;
    }
}

.recruits {
    width: 100%;
    padding: 1rem 0;
}

.recruits .recrum {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recruits .recrum .rel {
    display: inline-block;
    vertical-align: middle;
    width: calc(300 / 1600 * 100%);
}

.recruits .recrum .rel .vd {
    width: 100%;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.recruits .recrum .rel .soem {
    width: 100%;
    display: block;
}

.recruits .recrum .rel .soem .input {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 0.6rem);
}

.recruits .recrum .rel .soem .input input {
    width: 100%;
    display: block;
    height: 0.6rem;
    line-height: 0.6rem;
    padding: 0 0.2rem;
    color: #333;
    border: none;
    background-color: #f3f3f3;
}

.recruits .recrum .rel .soem .stn {
    display: inline-block;
    vertical-align: middle;
    width: 0.6rem;
    height: 0.6rem;
    background-color: var(--themes);
    position: relative;
}

.recruits .recrum .rel .soem .stn img {
    width: 100%;
    display: block;
}

.recruits .recrum .rel .soem .stn .stp {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.recruits .recrum .rel .screen {
    width: 100%;
    margin-top: 0.25rem;
}

.recruits .recrum .rel .screen .screm {
    width: 100%;
    padding: 0.2rem 0;
}

.recruits .recrum .rel .screen .screm .sir {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.recruits .recrum .rel .screen .screm .sepm {
    width: 100%;
}

.recruits .recrum .rel .screen .screm .sepm .label {
    width: 100%;
    display: block;
    position: relative;
    font-size: 0;
}

.recruits .recrum .rel .screen .screm .sepm .label .ic {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    margin-right: 0.16rem;
}

.recruits .recrum .rel .screen .screm .sepm .label .ic img {
    width: 100%;
    display: block;
}

.recruits .recrum .rel .screen .screm .sepm .label .ic img:first-child {
    display: block;
}

.recruits .recrum .rel .screen .screm .sepm .label .ic img:last-child {
    display: none;
}

.recruits .recrum .rel .screen .screm .sepm .label .cm {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 18px - 0.16rem);
    color: #333;
    line-height: 1.5;
}

.recruits .recrum .rel .screen .screm .sepm .label .siem {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    opacity: 0;
}

.recruits .recrum .rel .screen .screm .sepm .label.selected .ic img:first-child {
    display: none;
}

.recruits .recrum .rel .screen .screm .sepm .label.selected .ic img:last-child {
    display: block;
}

.recruits .recrum .rel .screen .screm .sepm .label+.label {
    margin-top: 0.14rem;
}

.recruits .recrum .rel .screen .screm+.screm {
    width: 100%;
    border-top: solid 1px #dedede;
}

.recruits .recrum .rer {
    display: inline-block;
    vertical-align: middle;
    width: calc(1200 / 1600 * 100%);
}

.recruits .recrum .rer .rim {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.24rem;
}

.recruits .recrum .rer .rim span {
    color: var(--themes);
    margin: 0 0.04rem;
}

.recruits .recrum .rer .recrulis {
    width: 100%;
}

.recruits .recrum .rer .recrulis .retom {
    width: 100%;
    background-color: #ffffff;
    border: solid 1px #dedede;
    padding: 0 0.5rem;
}

.recruits .recrum .rer .recrulis .retom .retop {
    width: 100%;
    font-size: 0;
    display: flex;
    align-items: center;
    padding: 0.35rem 0;
    cursor: pointer;
}

.recruits .recrum .rer .recrulis .retom .retop .name {
    display: inline-block;
    vertical-align: middle;
    width: calc(40% - 0.4rem);
    color: #333;
    line-height: 1.5;
}

.recruits .recrum .rer .recrulis .retom .retop .lei,
.recruits .recrum .rer .recrulis .retom .retop .place {
    display: inline-block;
    vertical-align: middle;
    width: calc(30%);
    color: #666;
    text-align: center;
}

.recruits .recrum .rer .recrulis .retom .retop .atn {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    border: solid 1px var(--themes);
}

.recruits .recrum .rer .recrulis .retom .retop .atn img {
    width: 100%;
    display: block;
}

.recruits .recrum .rer .recrulis .retom .retop .atn img:first-child {
    display: block;
}

.recruits .recrum .rer .recrulis .retom .retop .atn img:last-child {
    display: none;
}

.recruits .recrum .rer .recrulis .retom .recont {
    width: 100%;
    padding: 0.4rem 0 0.6rem;
    border-top: solid 1px #dedede;
    display: none;
}

.recruits .recrum .rer .recrulis .retom .recont .ream {
    width: 100%;
}

.recruits .recrum .rer .recrulis .retom .recont .ream .rid {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.recruits .recrum .rer .recrulis .retom .recont .ream .rinp {
    width: 100%;
    color: #666;
    line-height: 2;
}

.recruits .recrum .rer .recrulis .retom .recont .ream .rinp p {
    color: #666;
    line-height: 2;
}

.recruits .recrum .rer .recrulis .retom .recont .ream+.ream {
    margin-top: 0.34rem;
}

.recruits .recrum .rer .recrulis .retom .recont .cob {
    width: 100%;
    font-size: 0;
    margin-top: 0.45rem;
}

.recruits .recrum .rer .recrulis .retom .recont .cob a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: relative;
    padding: 0 0.45rem;
    background-color: var(--themes);
    color: #fff;
    line-height: 3;
    border-radius: 1.5em;
    position: relative;
    top: 0;
    transition: all ease 0.5s;
}

.recruits .recrum .rer .recrulis .retom .recont .cob a span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 0.1rem;
    position: relative;
    top: -0.02rem;
}

.recruits .recrum .rer .recrulis .retom .recont .cob a:hover {
    top: -0.1rem;
}

.recruits .recrum .rer .recrulis .retom+.retom {
    margin-top: 0.3rem;
}

.recruits .recrum .rer .recrulis .retom.show .retop .atn img:first-child {
    display: none;
}

.recruits .recrum .rer .recrulis .retom.show .retop .atn img:last-child {
    display: block;
}

@media (max-width: 800px) {
    .recruits .recrum .rel .screen .screm .sepm .label {
        display: inline-block;
        vertical-align: top;
        width: auto;
        margin-right: 0.3rem;
        margin-bottom: 0.15rem;
    }

    .recruits .recrum .rel .screen .screm .sepm .label+.label {
        margin-top: 0rem;
    }
}

.popox {
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 51;
    display: none;
}

.popox .pox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    max-width: 80%;
    z-index: 11;
    background-color: #fff;
    border-radius: 0.1rem;
    padding: 0.6rem;
}

.popox .pox .pot {
    width: 100%;
    text-align: center;
    margin-bottom: 0.34rem;
}

.popox .pox .pot .pit {
    width: 100%;
    color: #333;
    line-height: 1.2;
}

.popox .pox .pot .pim {
    width: 100%;
    color: #666;
    line-height: 1.5;
    margin-top: 0.06rem;
}

.popox .pox .sub {
    width: 100%;
    font-size: 0;
    text-align: center;
}

.popox .pox .sub .stn {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: relative;
    padding: 0 0.45rem;
    background-color: var(--themes);
    color: #fff;
    line-height: 3;
    border-radius: 1.5em;
    position: relative;
    top: 0;
    transition: all ease 0.5s;
}

.popox .pox .sub .stn span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 0.1rem;
    position: relative;
    top: -0.02rem;
}

.popox .pox .sub .stn .svn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
}

.popox .pox .close {
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
    cursor: pointer;
    color: #333;
    z-index: 3;
}

.popox .pox .form {
    width: 100%;
    display: block;
}

.popox .pox .row {
    width: 100%;
    font-size: 0;
}

.popox .pox .row .input {
    display: inline-block;
    vertical-align: middle;
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
}

.popox .pox .row .input input {
    width: 100%;
    display: block;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #dfdddd;
    padding: 0 0.15rem;
    line-height: 3;
    height: 3em;
}

.popox .pox .row .input:nth-child(2n) {
    margin-right: 0rem;
}

.popox .pox .row .input.w100 {
    width: 100%;
    margin-right: 0;
}

.popox .pox .text {
    width: 100%;
    margin-bottom: 0.2rem;
}

.popox .pox .text .area {
    width: 100%;
    display: block;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #dfdddd;
    color: #333;
    line-height: 1.5;
    padding: 0.15rem;
}

.popox .pox .upload {
    width: 100%;
    margin-bottom: 0.2rem;
}

.popox .pox .upload .uit {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.1rem;
}

.popox .pox .upload .uit span {
    color: #ccc;
}

.popox .pox .upload .ing {
    width: 100%;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #dfdddd;
    padding: 0.1rem;
    display: flex;
    align-items: center;
    position: relative;
}

.popox .pox .upload .ing .name {
    display: inline-block;
    vertical-align: middle;
    flex: 1;
    padding-right: 0.2rem;
    color: #ccc;
    padding-left: 0.1rem;
}

.popox .pox .upload .ing .name.hide {
    display: none;
}

.popox .pox .upload .ing .lame {
    display: inline-block;
    vertical-align: middle;
    flex: 1;
    padding-right: 0.2rem;
    color: #333;
    display: none;
    padding-left: 0.1rem;
}

.popox .pox .upload .ing .lame.show {
    display: inline-block;
    vertical-align: middle;
}

.popox .pox .upload .ing .vtm {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    background-color: #f8212c;
    line-height: 3;
    border-radius: 1.5em;
    padding: 0 0.3rem;
    color: #fff;
}

.popox .pox .upload .ing .ftm {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
}

.sustainable {
    width: 100%;
    padding: 1rem 0;
    overflow: hidden;
}

.sustainable .sutop {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.sustainable .sutop .sul {
    display: inline-block;
    vertical-align: top;
    width: calc(300 / 1600 * 100%);
}

.sustainable .sutop .sul .xit {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
}

.sustainable .sutop .sur {
    display: inline-block;
    vertical-align: top;
    width: calc(990 / 1600 * 100%);
}

.sustainable .sutop .sur .sinr {
    width: 100%;
    color: #333;
    line-height: 1.6;
}

.sustainable .sutop .sur .sinr p {
    color: #333;
    line-height: 1.6;
}

.sustainable .sumg {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sustainable .sumg .img {
    width: 100%;
    padding-top: 37.5%;
}

.sustainable .sbeomlis {
    width: 100%;
    font-size: 0;
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
}

.sustainable .sbeomlis .sbeom {
    display: inline-block;
    vertical-align: top;
    width: calc(790 / 1600 * 100%);
    margin-right: calc(19 / 1600 * 100%);
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.06);
    padding: 0.6rem;
}

.sustainable .sbeomlis .sbeom .sc {
    display: block;
    width: 0.6rem;
}

.sustainable .sbeomlis .sbeom .sc img {
    width: 100%;
    display: block;
}

.sustainable .sbeomlis .sbeom .sik {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin: 0.15rem 0 0.2rem;
}

.sustainable .sbeomlis .sbeom .sinp {
    width: 100%;
    color: #666;
    line-height: 1.875;
}

.sustainable .sbeomlis .sbeom .sinp p {
    color: #666;
    line-height: 1.875;
}

.sustainable .sbeomlis .sbeom:nth-child(2n) {
    margin-right: 0;
}

.sustainable .activity {
    width: 100%;
    margin-top: 0.8rem;
}

.sustainable .activity .actper {
    width: 100%;
    position: relative;
}

.sustainable .activity .actper .swiper-slide {
    width: 100%;
    position: relative;
    background-color: #fff;
    cursor: pointer;
    height: auto;
}

.sustainable .activity .actper .swiper-slide .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sustainable .activity .actper .swiper-slide .imgs .img {
    width: 100%;
    padding-top: 53.84%;
    transition: all ease 0.5s;
}

.sustainable .activity .actper .swiper-slide .pom {
    width: 100%;
    padding: 0.4rem;
}

.sustainable .activity .actper .swiper-slide .pom .pt {
    width: 100%;
    color: #222;
    line-height: 1.5;
    height: 3em;
}

.sustainable .activity .actper .swiper-slide .pom .sim {
    width: 100%;
    color: #666;
    line-height: 1.75;
}

.sustainable .activity .actper .swiper-slide .pom .sim p {
    color: #666;
    line-height: 1.75;
}

.sustainable .activity .actper .swiper-slide:hover .imgs .img {
    transform: scale(1.1);
}

.sustainable .activity .actper .btn {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.06);
    background-color: #fff;
}

.sustainable .activity .actper .btn img {
    width: 100%;
    display: block;
}

.sustainable .activity .actper .btn img:first-child {
    display: block;
}

.sustainable .activity .actper .btn img:last-child {
    display: none;
}

.sustainable .activity .actper .btn:hover {
    background-color: var(--themes);
}

.sustainable .activity .actper .btn:hover img:first-child {
    display: none;
}

.sustainable .activity .actper .btn:hover img:last-child {
    display: block;
}

.sustainable .activity .actper .bl {
    left: -0.9rem;
}

.sustainable .activity .actper .br {
    right: -0.9rem;
}

@media (max-width: 1680px) {
    .sustainable .activity .actper .bl {
        left: -0.3rem;
    }

    .sustainable .activity .actper .br {
        right: -0.3rem;
    }
}

@media (max-width: 800px) {
    .sustainable .activity .actper .bl {
        left: -0.14rem;
    }

    .sustainable .activity .actper .br {
        right: -0.14rem;
    }
}

.pages {
    width: 100%;
    padding: 0.22rem 0 0.25rem;
    font-size: 0;
    text-align: center;
    margin-top: 0.2rem;
}

.pages .page {
    display: inline-block;
    vertical-align: middle;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    text-align: center;
    color: #666;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 0.05rem 0.1rem;
}

.pages .page.ltn {
    background-image: url("../images/b1.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pages .page.rtn {
    background-image: url("../images/b2.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pages .page.on {
    background-color: var(--themes);
    color: #fff;
}

.pages .page.ltn:hover {
    background-image: url("../images/b3.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pages .page.on.ltn {
    background-image: url("../images/b3.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pages .page.on.rtn {
    background-image: url("../images/b4.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pages .page.rtn:hover {
    background-image: url("../images/b4.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pages .page.auto {
    width: auto;
    padding: 0 0.24rem;
}

.pages .page:hover {
    background-color: var(--themes);
    color: #fff;
}

@media (max-width: 900px) {
    .pages .page {
        width: 0.8rem;
        height: 0.8rem;
        line-height: 0.8rem;
        font-size: 16px;
        margin: 0 0.1rem 0.1rem;
    }
}

.newpom {
    width: 100%;
    padding: 1rem 0;
    background-color: #f5f5f5;
}

.newpom .newlist {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.newpom .newlist .newom {
    display: inline-block;
    vertical-align: top;
    width: calc(500 / 1600 * 100%);
    margin-right: calc(49 / 1600 * 100%);
    margin-bottom: 0.5rem;
}

.newpom .newlist .newom a {
    width: 100%;
    display: block;
}

.newpom .newlist .newom .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.newpom .newlist .newom .imgs .img {
    width: 100%;
    padding-top: 60%;
    transition: all ease 0.5s;
}

.newpom .newlist .newom .imgs .day {
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    background-color: var(--themes);
    top: 0.2rem;
    right: 0.2rem;
    text-align: center;
}

.newpom .newlist .newom .imgs .day .dme {
    width: 100%;
    color: #fff;
    font-weight: bold;
}

.newpom .newlist .newom .imgs .day .em {
    width: 100%;
    color: #fff;
}

.newpom .newlist .newom .lom {
    width: 100%;
    background-color: #fff;
    padding: 0.4rem 0.3rem 0.3rem;
    border-bottom: solid 2px transparent;
    position: relative;
}

.newpom .newlist .newom .lom .xt {
    width: 100%;
    color: #333;
    line-height: 1.5;
    height: 3em;
}

.newpom .newlist .newom .lom .xm {
    width: 100%;
    color: #666;
    line-height: 1.5;
    height: 3em;
    margin-top: 0.25rem;
}

.newpom .newlist .newom:hover {
    box-shadow: 0px 7px 59px 0px rgba(30, 112, 38, 0.16);
}

.newpom .newlist .newom:hover .imgs .img {
    transform: scale(1.1);
}

.newpom .newlist .newom:hover .lom .xt {
    color: var(--themes);
}

.newpom .newlist .newom:nth-child(3n) {
    margin-right: 0;
}

.newpom .seropm {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.newpom .seropm .select {
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
    border: none;
    text-align: left;
    position: relative;
    width: 5rem;
    z-index: 1;
    margin-right: 0.2rem;
}

.newpom .seropm .select .select-con {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 0;
}

.newpom .seropm .select .select-con .select-value {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    line-height: 3em;
    height: 3em;
    color: #333;
    cursor: pointer;
    padding: 0 .3rem;
    z-index: 3;
    border-radius: 1.5em;
    position: relative;
    background-color: #fff;
}

.newpom .seropm .select .select-con select {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
}

.newpom .seropm .select .select-con select option {
    color: #666;
    font-size: .16rem;
    line-height: 2.5;
    background: #fff;
}

.newpom .seropm .select .select-con .seluls {
    position: absolute;
    left: 0;
    top: calc(100% - 1.5em);
    min-width: 100%;
    max-height: 360px;
    overflow: auto;
    display: none;
    box-sizing: border-box;
    text-align: left;
    background-color: white;
    z-index: 2;
    box-shadow: 0px 7px 59px 0px rgba(30, 112, 38, 0.16);
    padding-top: 1.5em;
    overflow: auto;
    /*滚动条里面小方块*/
    /*滚动条里面轨道*/
}

.newpom .seropm .select .select-con .seluls .option {
    width: 100%;
    color: #333;
    line-height: 2;
    cursor: pointer;
    padding: 0.05rem 0.15rem;
}

.newpom .seropm .select .select-con .seluls .option:hover {
    background-color: var(--themes);
    color: #fff;
}

.newpom .seropm .select .select-con .seluls .option+.option {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.newpom .seropm .select .select-con .seluls::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.newpom .seropm .select .select-con .seluls::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(4, 55, 147, 0.3);
    background: rgba(4, 55, 147, 0.3);
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.newpom .seropm .select .select-con .seluls::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.newpom .seropm .select .select-con:after {
    display: inline-block;
    content: "";
    position: absolute;
    right: .3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 11px;
    height: 6px;
    background-image: url("../images/x1.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.newpom .seropm .foem {
    display: inline-block;
    vertical-align: middle;
    display: flex;
    align-items: center;
    width: 5rem;
    padding: 0 0.3rem;
    background-color: #fff;
    border-radius: 1.5em;
}

.newpom .seropm .foem .stn {
    width: 18px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.newpom .seropm .foem .stn img {
    width: 100%;
    display: block;
}

.newpom .seropm .foem .stn .inh {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.newpom .seropm .foem .sin {
    display: inline-block;
    vertical-align: middle;
    flex: 1;
    width: calc(100% - 23px);
    color: #333;
    line-height: 3;
    height: 3em;
    border: none;
    background-color: transparent;
}

@media (max-width: 800px) {
    .newpom .newlist .newom .imgs .day {
        width: 1rem;
        height: 1rem;
    }

    .newpom .newlist .newom .imgs .day .dme {
        font-size: 16px;
    }
}

.netails {
    width: 100%;
    padding: 1rem 0;
}

.netails .netail {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.netails .netail .nel {
    display: inline-block;
    vertical-align: top;
    width: calc(1100 / 1600 * 100%);
}

.netails .netail .nel .nit {
    width: 100%;
    color: #222;
    font-weight: bold;
    line-height: 1.2;
}

.netails .netail .nel .nim {
    width: 100%;
    font-size: 0;
    padding: 0.24rem 0 0.14rem;
}

.netails .netail .nel .nim span {
    display: inline-block;
    vertical-align: middle;
    color: #666;
    line-height: 1.5;
    margin-right: 0.3rem;
    margin-bottom: 0.1rem;
}

.netails .netail .nel .ninp {
    width: 100%;
    color: #666;
    line-height: 1.75;
    padding: 0.6rem 0;
    border-top: solid 1px rgba(0, 0, 0, 0.08);
    border-bottom: solid 1px rgba(0, 0, 0, 0.08);
    word-break: break-all;
}
.netails .netail .nel .ninp img{
    max-width: 9.6rem;
}
.netails .netail .nel .ninp p {
    color: #666;
    line-height: 1.75;
}

.netails .netail .nel .not {
    width: 100%;
    font-size: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.netails .netail .nel .not .nml {
    display: inline-block;
    vertical-align: middle;
    flex: 1;
    padding-right: 0.4rem;
}

.netails .netail .nel .not .nml .nem {
    width: 100%;
    padding: 0.06rem 0;
}

.netails .netail .nel .not .nml .nem a {
    width: 100%;
    display: block;
    color: #666;
    line-height: 1.5;
}

.netails .netail .nel .not .nml .nem a:hover {
    color: var(--themes);
}

.netails .netail .nel .not .nmr {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.netails .netail .nel .not .nmr a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    background-color: var(--themes);
    color: #fff;
    line-height: 3;
    height: 3em;
    border-radius: 1.5em;
    padding: 0 0.4rem;
    transition: all ease 0.5s;
    position: relative;
    top: 0;
}

.netails .netail .nel .not .nmr a span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -0.02rem;
    width: 14px;
    margin-left: 0.12rem;
}

.netails .netail .nel .not .nmr a span img {
    width: 100%;
    display: block;
}

.netails .netail .nel .not .nmr a:hover {
    top: -0.1rem;
}

.netails .netail .ner {
    display: inline-block;
    vertical-align: top;
    width: calc(400 / 1600 * 100%);
    position: sticky;
    top: 1rem;
}

.netails .netail .ner .nir {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.15rem;
}

.netails .netail .ner .nerlis {
    width: 100%;
}

.netails .netail .ner .nerlis .nerom {
    width: 100%;
    padding: 0.25rem 0;
    border-bottom: solid 1px rgba(0, 0, 0, 0.08);
}

.netails .netail .ner .nerlis .nerom a {
    width: 100%;
    display: block;
}

.netails .netail .ner .nerlis .nerom .imgs {
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    position: relative;
    overflow: hidden;
}

.netails .netail .ner .nerlis .nerom .imgs .img {
    width: 100%;
    padding-top: 66.66%;
    transition: all ease 0.5s;
}

.netails .netail .ner .nerlis .nerom .rem {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 120px - 0.2rem);
    margin-left: 0.2rem;
}

.netails .netail .ner .nerlis .nerom .rem .xt {
    width: 100%;
    color: #333;
    line-height: 1.5;
}

.netails .netail .ner .nerlis .nerom .rem .time {
    width: 100%;
    color: #999;
    line-height: 1.5;
    margin-top: 0.1rem;
}

.netails .netail .ner .nerlis .nerom:hover .imgs .img {
    transform: scale(1.1);
}

.netails .netail .ner .nerlis .nerom:hover .rem .xt {
    color: var(--themes);
}

@media (max-width: 800px) {
    .netails .netail .ner {
        position: relative;
        top: 0;
    }
}

.culoms {
    width: 100%;
    padding: 0.8rem 0;
    background-color: #f5f5f5;
}

.culoms .cuomlis {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.culoms .cuomlis .cuoms {
    display: inline-block;
    vertical-align: top;
    width: calc(799 / 1600 * 100%);
    background-color: #fff;
    position: relative;
    padding: 0.6rem;
}

.culoms .cuomlis .cuoms .uit {
    width: 100%;
    color: #333;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 0.24rem;
    position: relative;
    z-index: 2;
}

.culoms .cuomlis .cuoms .sinp {
    width: 100%;
    color: #333;
    line-height: 1.875;
    position: relative;
    z-index: 2;
}

.culoms .cuomlis .cuoms .sinp p {
    color: #333;
    line-height: 1.875;
}

.culoms .cuomlis .cuoms .vc {
    position: absolute;
    right: 0.3rem;
    bottom: 0.3rem;
    height: 1.6rem;
    z-index: 1;
    width: auto;
}

.culoms .cuomlis .cuoms .vc img {
    height: 100%;
    display: block;
}

.eanner {
    width: 100%;
}

.eanner .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.eanner .imgs .img {
    width: 100%;
    padding-top: 31.25%;
}

.Navigation {
    width: 100%;
    padding: 1rem 0;
}

.Navigation .navml {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.Navigation .navml .nml {
    display: inline-block;
    vertical-align: middle;
    width: calc(550 / 1600 * 100%);
}

.Navigation .navml .nml .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.Navigation .navml .nml .imgs .img {
    width: 100%;
    padding-top: 100%;
}

.Navigation .navml .nmr {
    display: inline-block;
    vertical-align: middle;
    width: calc(680 / 1600 * 100%);
}

.Navigation .navml .nmr .mir {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.Navigation .navml .nmr .nmrlist {
    width: 100%;
    font-size: 0;
}

.Navigation .navml .nmr .nmrlist .nmre {
    width: 100%;
    font-size: 0;
}

.Navigation .navml .nmr .nmrlist .nmre .nc {
    display: inline-block;
    vertical-align: middle;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    margin-right: 0.28rem;
    border: solid 1px var(--themes);
}

.Navigation .navml .nmr .nmrlist .nmre .nc img {
    width: 100%;
    display: block;
}

.Navigation .navml .nmr .nmrlist .nmre .nms {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 0.8rem - 0.28rem);
}

.Navigation .navml .nmr .nmrlist .nmre .nms .nt {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
}

.Navigation .navml .nmr .nmrlist .nmre .nms .np {
    width: 100%;
    color: #333;
    line-height: 1.5;
    margin-top: 0.06rem;
}

.Navigation .navml .nmr .nmrlist .nmre+.nmre {
    margin-top: 0.6rem;
}

.superclass {
    width: 100%;
    padding: 1.8rem 0;
}

.superclass .supem {
    width: 100%;
    max-width: 8.1rem;
}

.superclass .supem .sit {
    width: 100%;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.superclass .supem .sinp {
    width: 100%;
    color: #fff;
    line-height: 1.8;
}

.superclass .supem .sinp p {
    color: #fff;
    line-height: 1.8;
}

.cores {
    width: 100%;
    padding: 1.2rem 0;
    background-color: #f0f5f9;
}

.cores .coreper {
    width: 100%;
}

.cores .coreper .swiper-container {
    padding-top: 0.1rem;
}

.cores .coreper .swiper-slide {
    width: 100%;
    background-color: #fff;
    padding: 0.6rem 0.5rem 0.8rem;
    height: auto;
    transition: all ease 0.5s;
    position: relative;
    top: 0;
}

.cores .coreper .swiper-slide .vc {
    display: block;
    margin: 0 auto 0.3rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    border: dashed 1px var(--themes);
}

.cores .coreper .swiper-slide .vc img {
    width: 100%;
    display: block;
}

.cores .coreper .swiper-slide .xt {
    width: 100%;
    text-align: center;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.cores .coreper .swiper-slide .sinp {
    width: 100%;
    color: #666;
    line-height: 1.75;
    text-align: center;
}

.cores .coreper .swiper-slide .sinp p {
    color: #666;
    line-height: 1.75;
}

.cores .coreper .swiper-slide:hover {
    top: -0.1rem;
}

.describe {
    width: 100%;
    padding-top: 1rem;
    overflow: hidden;
}

.describe .desom {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.describe .desom .del {
    display: inline-block;
    vertical-align: middle;
    width: calc(960 / 1920 * 100%);
}

.describe .desom .del .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.describe .desom .del .imgs .img {
    width: 100%;
    padding-top: 89.58%;
}

.describe .desom .der {
    display: inline-block;
    vertical-align: middle;
    width: calc(720 / 1920 * 100%);
    margin-left: calc(70 / 1920 * 100%);
}

.describe .desom .der .dir {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0.45rem;
}

.describe .desom .der .dinp {
    width: 100%;
    color: #333;
    line-height: 1.75;
    overflow: auto;
    max-height: 6rem;
    padding-right: 0.24rem;
}

.describe .desom .der .dinp::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.describe .desom .der .dinp::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(4, 55, 147, 0.3);
    background: rgba(4, 55, 147, 0.3);
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.describe .desom .der .dinp::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.describe .desom .der .dinp p {
    color: #333;
    line-height: 1.75;
}

.group {
    width: 100%;
    padding: 1rem 0;
    position: relative;
}

.group .rc {
    position: absolute;
    z-index: 1;
    right: 0.2rem;
    top: 0.2rem;
    width: 2.58rem;
}

.group .rc img {
    width: 100%;
    display: block;
}

.group .w1600 {
    position: relative;
    z-index: 2;
}

.group .groem {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.group .groem .gml {
    display: inline-block;
    vertical-align: middle;
    width: calc(1000 / 1600 * 100%);
}

.group .groem .gml .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.group .groem .gml .imgs .img {
    width: 100%;
    padding-top: 60%;
}

.group .groem .gmr {
    display: inline-block;
    vertical-align: middle;
    width: calc(500 / 1600 * 100%);
}

.group .groem .gmr .gir {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.group .groem .gmr .ginp {
    width: 100%;
    color: #333;
    line-height: 1.75;
}

.group .groem .gmr .ginp p {
    color: #333;
    line-height: 1.75;
}

.Speechs {
    width: 100%;
    background-color: #f0f5f9;
    padding: 1rem 0;
}

.Speechs .speechlis {
    width: 100%;
    font-size: 0;
}

.Speechs .speechlis .speem {
    width: 100%;
    background-color: #fff;
    padding: 0.5rem 0.6rem;
    overflow: hidden;
}

.Speechs .speechlis .speem .sc {
    display: inline-block;
    vertical-align: middle;
    width: 3.6rem;
    margin-right: 0.7rem;
    border-radius: 50%;
}

.Speechs .speechlis .speem .sc img {
    width: 100%;
    display: block;
}

.Speechs .speechlis .speem .seom {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 3.6rem - 0.7rem);
    position: relative;
}

.Speechs .speechlis .speem .seom .di {
    position: absolute;
    display: block;
}

.Speechs .speechlis .speem .seom .di img {
    width: 100%;
    display: block;
}

.Speechs .speechlis .speem .seom .d1 {
    width: 0.5rem;
    left: -0.57rem;
    top: -0.28rem;
}

.Speechs .speechlis .speem .seom .d2 {
    width: 0.49rem;
    right: 0.3rem;
    bottom: -0.57rem;
}

.Speechs .speechlis .speem .seom .sep {
    width: 100%;
    color: #333;
    line-height: 1.2;
}

.Speechs .speechlis .speem .seom .lx {
    width: 100%;
    background-color: #f3f3f3;
    height: 1px;
    margin: 0.25rem 0 0.25rem;
}

.Speechs .speechlis .speem .seom .simp {
    width: 100%;
    color: #666;
    line-height: 1.875;
}

.Speechs .speechlis .speem .seom .simp p {
    color: #666;
    line-height: 1.875;
}

.Speechs .speechlis .speem+.speem {
    margin-top: 0.6rem;
}

@media (max-width: 800px) {
    .Speechs .speechlis .speem {
        padding: 24px 24px 40px;
    }

    .Speechs .speechlis .speem .sc {
        width: 3.6rem;
        margin: 0 auto 30px;
        display: block;
        max-width: 100%;
    }

    .Speechs .speechlis .speem .seom {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
}

.mission {
    width: 100%;
    padding: 1rem 0 0;
}

.mission .manner {
    width: 100%;
    position: relative;
    padding-top: 0;
}

.mission .manner .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mission .manner .imgs .img {
    width: 100%;
    padding-top: 36.45%;
}

.mission .manner .sthpem {
    width: 100%;
    /* position: absolute; */
    z-index: 3;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    top: 0;
}

.mission .shpems {
    width: 100%;
    background-color: var(--themes);
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
}

.mission .shpems .shem {
    width: 100%;
    flex: 1;
    display: block;
    text-align: center;
    padding: 0 0.4rem;
    border-right: solid 1px rgba(255, 255, 255, 0.1);
}

.mission .shpems .shem .sc {
    display: block;
    margin: 0 auto 0.28rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    border: solid 1px #fff;
}

.mission .shpems .shem .sc img {
    width: 100%;
    display: block;
}

.mission .shpems .shem .svt {
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 1.5;
}

.mission .shpems .shem .sim {
    width: 100%;
    color: #fff;
    line-height: 1.5;
    margin-top: 0.16rem;
}

.mission .shpems .shem:nth-child(3n) {
    border: none;
}

@media (max-width: 800px) {
    .mission {
        width: 100%;
    }
    .modular .mitop{
        margin-bottom: 0.4rem;
    }
    .mission .manner {
        padding-top: 0;
    }

    .mission .manner .sthpem {
        position: relative;
    }

    .mission .manner .sthpem .w1600 {
        width: 100%;
    }

    .mission .shpems {
        width: 100%;
        padding: 0;
        flex-wrap: wrap;
    }

    .mission .shpems .shem {
        width: 100%;
        flex: none;
        padding: 20px;
        border: none;
    }
}

.historys {
    width: 100%;
    padding: 1rem 0;
}

.historys .history {
    width: 100%;
    position: relative;
}

.historys .history .lx {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 1px;
    top: 0;
    background-color: #e3e3e3;
}

.historys .history .mob {
    width: 100%;
    font-size: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.historys .history .mob .xtn {
    display: inline-block;
    vertical-align: middle;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: #fff;
    border: solid 1px var(--themes);
    cursor: pointer;
}

.historys .history .mob .xtn img {
    width: 100%;
    display: block;
}

.historys .history .hiteom {
    width: 100%;
    position: relative;
    z-index: 2;
}

.historys .history .hiteom .hitm {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    cursor: pointer;
}

.historys .history .hiteom .hitm .hml {
    display: inline-block;
    vertical-align: middle;
    width: calc(750 / 1600 * 100%);
}

.historys .history .hiteom .hitm .hml .year {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    text-align: right;
}

.historys .history .hiteom .hitm .hmr {
    width: calc(750 / 1600 * 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.historys .history .hiteom .hitm .hmr .imgs {
    display: inline-block;
    vertical-align: middle;
    width: 3rem;
    position: relative;
    overflow: hidden;
}

.historys .history .hiteom .hitm .hmr .imgs .img {
    width: 100%;
    padding-top: 66.66%;
    transition: all ease 0.5s;
}

.historys .history .hiteom .hitm .hmr .lems {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 3rem - 1rem);
    color: #333;
    line-height: 1.6;
}

.historys .history .hiteom .hitm .hmr .lems p {
    color: #333;
    line-height: 1.6;
}

.historys .history .hiteom .hitm .pi1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.3rem;
    z-index: 1;
    transition: all ease 0.5s;
    opacity: 1;
}

.historys .history .hiteom .hitm .pi1 img {
    width: 100%;
    display: block;
}

.historys .history .hiteom .hitm .pi2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    z-index: 1;
    transition: all ease 0.5s;
    opacity: 0;
}

.historys .history .hiteom .hitm .pi2 img {
    width: 100%;
    display: block;
}

.historys .history .hiteom:hover {
    background-color: #f0f5f9;
}

.historys .history .hiteom:hover .hitm .hmr .imgs .img {
    transform: scale(1.1);
}

.historys .history .hiteom:hover .hitm .pi1 {
    opacity: 0;
}

.historys .history .hiteom:hover .hitm .pi2 {
    opacity: 1;
}

.historys .history .hiteom:nth-child(2n) .hitm {
    flex-direction: row-reverse;
}

.historys .history .hiteom:nth-child(2n) .hitm .hml .year {
    text-align: left;
}

.historys .history .hiteom:nth-child(2n) .hitm .hmr {
    flex-direction: row;
}

.historys .history .hiteom:nth-child(2n) .hitm .hmr .lems {
    text-align: right;
}

@media (max-width: 800px) {
    .historys .history .lx {
        left: 0.6rem;
        transform: translateX(0);
    }

    .historys .history .mob {
        padding-left: 0.6rem;
    }

    .historys .history .hiteom .hitm .hml {
        width: 100%;
        padding-left: 1.2rem;
    }

    .historys .history .hiteom .hitm .hml .year {
        width: 100%;
        text-align: left !important;
        margin-bottom: 14px;
    }

    .historys .history .hiteom .hitm .hmr {
        width: 100%;
        padding-left: 1.2rem;
    }

    .historys .history .hiteom .hitm .hmr .imgs {
        width: 100%;
        margin-bottom: 20px;
    }

    .historys .history .hiteom .hitm .hmr .lems {
        width: 100%;
        text-align: left !important;
    }

    .historys .history .hiteom .hitm .pi1 {
        top: 50%;
        transform: translateY(-50%);
        left: 0.25rem;
    }

    .historys .history .hiteom .hitm .pi2 {
        top: 50%;
        transform: translateY(-50%);
        left: 0.15rem;
    }
}

.workshops {
    width: 100%;
    padding: 1rem 0;
}

.workshops .wookper {
    width: 100%;
    position: relative;
}

.workshops .wookper .swiper-slide {
    width: 100%;
    position: relative;
    transition: all ease 0.5s;
    transform: scale(0.6);
    opacity: 0.5;
}

.workshops .wookper .swiper-slide .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.workshops .wookper .swiper-slide .imgs .img {
    width: 100%;
    padding-top: 62.5%;
    transition: all ease 0.5s;
}

.workshops .wookper .swiper-slide .vim {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 0.3rem;
    z-index: 3;
    text-align: center;
    color: #fff;
    line-height: 1.5;
    opacity: 0;
    transition: all ease 0.5s;
}

.workshops .wookper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.workshops .wookper .swiper-slide-active .vim {
    opacity: 1;
}

.workshops .wookper .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: #f3f3f3;
    cursor: pointer;
    z-index: 2;
}

.workshops .wookper .btn img {
    width: 100%;
    display: block;
}

.workshops .wookper .btn img:first-child {
    display: block;
}

.workshops .wookper .btn img:last-child {
    display: none;
}

.workshops .wookper .btn:hover {
    background-color: var(--themes);
}

.workshops .wookper .btn:hover img:first-child {
    display: none;
}

.workshops .wookper .btn:hover img:last-child {
    display: block;
}

.workshops .wookper .bl {
    left: calc(450 / 1920 * 100%);
}

.workshops .wookper .br {
    right: calc(450 / 1920 * 100%);
}

@media (max-width: 800px) {
    .workshops .wookper .bl {
        left: calc(100 / 1920 * 100%);
    }

    .workshops .wookper .br {
        right: calc(100 / 1920 * 100%);
    }
}

.bussines {
    width: 100%;
    margin-bottom: 1.5rem;
    background-color: #f0f5f9;
}

.bussines .busomd {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    justify-content: space-between;
    align-items: flex-end;
}

.bussines .busomd .bul {
    display: inline-block;
    vertical-align: middle;
    width: calc(680 / 1600 * 100%);
    padding: 1.2rem 0 1rem;
}

.bussines .busomd .bul .bid {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.bussines .busomd .bul .sinm {
    width: 100%;
    color: #333;
    line-height: 1.6;
}

.bussines .busomd .bul .sinm p {
    color: #333;
    line-height: 1.6;
}

.bussines .busomd .bul .busslist {
    width: 100%;
    margin-top: 0.24rem;
}

.bussines .busomd .bul .busslist .subm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #bfd2e0;
    padding: 0.25rem 0;
}

.bussines .busomd .bul .busslist .subm .sul {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.bussines .busomd .bul .busslist .subm .sul .xum {
    width: 100%;
    color: #333;
}

.bussines .busomd .bul .busslist .subm .sul .xum span {
    display: inline-block;
    color: var(--themes);
}

.bussines .busomd .bul .busslist .subm .sur {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #666;
    line-height: 1.5;
}

.bussines .busomd .bur {
    display: inline-block;
    vertical-align: middle;
    width: calc(700 / 1600 * 100%);
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(4, 55, 147, 0.15);
    position: relative;
    bottom: -1.2rem;
    padding: 0.6rem;
}

.bussines .busomd .bur .rib {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.bussines .busomd .bur .serom {
    width: 100%;
}

.bussines .busomd .bur .serom .select {
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
    border: none;
    text-align: left;
    position: relative;
    width: 100%;
    z-index: 1;
}

.bussines .busomd .bur .serom .select .select-con {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 0;
}

.bussines .busomd .bur .serom .select .select-con .select-value {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    line-height: 3em;
    height: 3em;
    color: #666;
    cursor: pointer;
    padding: 0 .2rem;
    z-index: 3;
    position: relative;
    background-color: #f0f5f9;
}

.bussines .busomd .bur .serom .select .select-con select {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
}

.bussines .busomd .bur .serom .select .select-con select option {
    color: #666;
    font-size: .16rem;
    line-height: 2.5;
    background: #fff;
}

.bussines .busomd .bur .serom .select .select-con .seluls {
    position: absolute;
    left: 0;
    top: calc(100%);
    min-width: 100%;
    max-height: 360px;
    overflow: auto;
    display: none;
    box-sizing: border-box;
    text-align: left;
    background-color: white;
    z-index: 2;
    box-shadow: 0px 7px 59px 0px rgba(30, 112, 38, 0.16);
    overflow: auto;
    /*滚动条里面小方块*/
    /*滚动条里面轨道*/
}

.bussines .busomd .bur .serom .select .select-con .seluls .option {
    width: 100%;
    color: #333;
    line-height: 1.75;
    cursor: pointer;
    padding: 0.05rem 0.15rem;
}

.bussines .busomd .bur .serom .select .select-con .seluls .option:hover {
    background-color: var(--themes);
    color: #fff;
}

.bussines .busomd .bur .serom .select .select-con .seluls .option+.option {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.bussines .busomd .bur .serom .select .select-con .seluls::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.bussines .busomd .bur .serom .select .select-con .seluls::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(4, 55, 147, 0.3);
    background: rgba(4, 55, 147, 0.3);
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.bussines .busomd .bur .serom .select .select-con .seluls::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.bussines .busomd .bur .serom .select .select-con:after {
    display: inline-block;
    content: "";
    position: absolute;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 11px;
    height: 6px;
    background-image: url("../images/x1.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.bussines .busomd .bur .restlist {
    width: 100%;
    margin-top: 0.15rem;
    padding-right: 0.14rem;
    overflow: auto;
    max-height: 6rem;
}

.bussines .busomd .bur .restlist::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.bussines .busomd .bur .restlist::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(4, 55, 147, 0.3);
    background: rgba(4, 55, 147, 0.3);
    scrollbar-arrow-color: rgba(0, 0, 0, 0.1);
}

.bussines .busomd .bur .restlist::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.bussines .busomd .bur .restlist .reli {
    width: 100%;
    padding: 0.24rem 0;
    border-bottom: solid 1px #f3f3f3;
}

.bussines .busomd .bur .restlist .reli .rit {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.bussines .busomd .bur .restlist .reli .puls {
    width: 100%;
    font-size: 0;
}

.bussines .busomd .bur .restlist .reli .pli {
    width: auto;
    font-size: 0;
    margin-right: 0.4rem;
    margin-bottom: 0.14rem;
    display: inline-block;
    vertical-align: top;
}

.bussines .busomd .bur .restlist .reli .pli .ic {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    margin-right: 0.14rem;
}

.bussines .busomd .bur .restlist .reli .pli .ic img {
    width: 100%;
    display: block;
}

.bussines .busomd .bur .restlist .reli .pli .cm {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .bussines {
        margin-bottom: 0;
    }

    .bussines .busomd .bul {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }

    .bussines .busomd .bur {
        width: 100%;
        position: relative;
        bottom: 0;
        padding: 20px;
    }
}

.honors {
    width: 100%;
    padding: 1rem 0;
    background-color: #fff;
}

.honors .honlist {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.honors .honlist .hoem {
    display: inline-block;
    vertical-align: top;
    width: calc(500 / 1600 * 100%);
    margin-right: calc(49 / 1600 * 100%);
    margin-bottom: 0.4rem;
    position: relative;
}

.honors .honlist .hoem a {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #f0f5f9;
    padding: 0.34rem;
}

.honors .honlist .hoem .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.honors .honlist .hoem .imgs .img {
    width: 100%;
    padding-top: 70%;
    transition: all ease 0.5s;
}

.honors .honlist .hoem .kim {
    width: 100%;
    text-align: center;
    color: #333;
    line-height: 1.5;
    margin-top: 0.2rem;
}

.honors .honlist .hoem .mkm {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgba(1, 82, 161, 0.7);
    transition: all ease 0.5s;
    opacity: 0;
}

.honors .honlist .hoem .mkm .mtn {
    display: inline-block;
    vertical-align: middle;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #fff;
}

.honors .honlist .hoem .mkm .mtn img {
    width: 100%;
    display: block;
}

.honors .honlist .hoem:nth-child(3n) {
    margin-right: 0;
}

.honors .honlist .hoem:hover .imgs .img {
    transform: scale(1.1);
}

.honors .honlist .hoem:hover .mkm {
    opacity: 1;
}

.authentication {
    width: 100%;
    padding: 1rem 0;
}

.authentication .authper {
    width: 100%;
    padding-left: calc(((100% - 16rem) / 2));
    position: relative;
}

.authentication .authper .swiper-container {
    padding-bottom: 0.9rem;
}

.authentication .authper .swiper-slide {
    width: 100%;
}

.authentication .authper .swiper-slide a {
    width: 100%;
    display: block;
    background-color: #fff;
}

.authentication .authper .swiper-slide .lom {
    width: 100%;
    padding: 0.3rem;
}

.authentication .authper .swiper-slide .lom .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.authentication .authper .swiper-slide .lom .imgs .img {
    width: 100%;
    padding-top: 123.33%;
    transition: all ease 0.5s;
}

.authentication .authper .swiper-slide .cmp {
    width: 100%;
    background-color: #fff;
    padding: 0.3rem;
    border-top: solid 1px #f3f3f3;
}

.authentication .authper .swiper-slide .cmp .cim {
    width: 100%;
    text-align: center;
    color: #333;
    line-height: 1.5;
}

.authentication .authper .swiper-container-horizontal>.swiper-scrollbar {
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    width: calc(100% - ((100% - 16rem) / 2) - 1.6rem);
}

.authentication .authper .swiper-scrollbar-drag {
    background-color: var(--themes);
}

.authentication .authper .btns {
    position: absolute;
    bottom: 0;
    right: calc(((100% - 16rem) / 2));
    right: 0;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    width: auto;
}

.authentication .authper .btns .btn {
    display: inline-block;
    vertical-align: middle;
    width: 0.6rem;
    height: 0.6rem;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff;
}

.authentication .authper .btns .btn img {
    width: 100%;
    display: block;
}

.authentication .authper .btns .btn img:first-child {
    display: block;
}

.authentication .authper .btns .btn img:last-child {
    display: none;
}

.authentication .authper .btns .btn:hover {
    background-color: var(--themes);
}

.authentication .authper .btns .btn:hover img:first-child {
    display: none;
}

.authentication .authper .btns .btn:hover img:last-child {
    display: block;
}

.authentication .authper .btns .btn+.btn {
    margin-left: 0.2rem;
}

.authentication .authper .pagination {
    position: absolute;
    bottom: 0.24rem;
    left: 0;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.authentication .authper .pagination .xm {
    display: inline-block;
    width: auto;
    color: #999;
}

.authentication .authper .pagination .now {
    color: var(--themes);
    margin-right: 0.01rem;
}

@media (max-width: 1680px) {
    .authentication .authper {
        padding-left: 5%;
    }

    .authentication .authper .swiper-container-horizontal>.swiper-scrollbar {
        width: calc(100% - 5% - 1.6rem);
    }

    .authentication .authper .btns {
        right: 5%;
    }
}

.business {
    width: 100%;
    padding: 0.8rem 0;
}

.business .businm {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.business .businm .bul {
    display: inline-block;
    vertical-align: top;
    width: calc(340 / 1600 * 100%);
}

.business .businm .bul .serlist {
    width: 100%;
}

.business .businm .bul .serlist .srem {
    width: 100%;
    background-color: #f5f5f5;
}

.business .businm .bul .serlist .srem .seop {
    width: 100%;
    font-size: 0;
    padding: 0.15rem 0.1rem 0.15rem 0.3rem;
    box-sizing: border-box;
}

.business .businm .bul .serlist .srem .seop .lm {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 40px - 0.4rem);
    color: #333;
    line-height: 1.5;
}

.business .businm .bul .serlist .srem .seop .rc {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    cursor: pointer;
    transition: all ease 0.5s;
    margin-left: 0.4rem;
}

.business .businm .bul .serlist .srem .seop .rc img {
    width: 100%;
    display: block;
}

.business .businm .bul .serlist .srem .seop .rc img:first-child {
    display: block;
}

.business .businm .bul .serlist .srem .seop .rc img:last-child {
    display: none;
}

.business .businm .bul .serlist .srem .seuls {
    width: 100%;
    display: none;
    margin-top: 0rem;
    padding-left: 0.1rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

.business .businm .bul .serlist .srem .seuls .sli {
    width: 100%;
    position: relative;
}

.business .businm .bul .serlist .srem .seuls .sli a {
    width: 100%;
    display: block;
    color: #666;
    line-height: 1.5;
    padding: 0.14rem 0.2rem;
}

.business .businm .bul .serlist .srem .seuls .sli:after {
    content: ' ';
    position: absolute;
    right: 0;
    height: 0.34rem;
    width: 2px;
    background-color: var(--themes);
    top: 50%;
    opacity: 0;
    transition: all ease 0.5s;
    transform: translateY(-50%);
}

.business .businm .bul .serlist .srem .seuls .sli.active,
.business .businm .bul .serlist .srem .seuls .sli:hover {
    background-color: #fff;
}

.business .businm .bul .serlist .srem .seuls .sli.active a,
.business .businm .bul .serlist .srem .seuls .sli:hover a {
    color: var(--themes);
}

.business .businm .bul .serlist .srem .seuls .sli.active:after,
.business .businm .bul .serlist .srem .seuls .sli:hover:after {
    opacity: 1;
}

.business .businm .bul .serlist .srem .seuls .sli+.sli {
    margin-top: 1px;
}

.business .businm .bul .serlist .srem.has-seul .seop .rc {
    display: inline-block;
    vertical-align: middle;
}

.business .businm .bul .serlist .srem.has-seul.show .seop {
    background-color: var(--themes);
}

.business .businm .bul .serlist .srem.has-seul.show .seop .lm {
    color: #fff;
}

.business .businm .bul .serlist .srem.has-seul.show .seop .rc img {
    filter: grayscale(1000%) brightness(2000%);
}

.business .businm .bul .serlist .srem.has-seul.show .seop .rc img:first-child {
    display: none;
}

.business .businm .bul .serlist .srem.has-seul.show .seop .rc img:last-child {
    display: block;
}

.business .businm .bul .serlist .srem+.srem {
    margin-top: 0.1rem;
}

.business .businm .bur {
    display: inline-block;
    vertical-align: top;
    width: calc(1200 / 1600 * 100%);
}

.business .businm .bur .burlist {
    width: 100%;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.business .businm .bur .burlist .burom {
    display: inline-block;
    vertical-align: top;
    width: calc(380 / 1200 * 100%);
    margin-right: calc(29 / 1200 * 100%);
    margin-bottom: 0.3rem;
}

.business .businm .bur .burlist .burom a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0.2rem 0.2rem 0.3rem;
    border: solid 1px #d9d9d9;
}

.business .businm .bur .burlist .burom .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.business .businm .bur .burlist .burom .imgs .img {
    width: 100%;
    padding-top: 100%;
    transition: all ease 0.5s;
}

.business .businm .bur .burlist .burom .mit {
    width: 100%;
    text-align: center;
    color: #333;
    line-height: 1.5;
    margin-top: 0.15rem;
}

.business .businm .bur .burlist .burom .more {
    width: 100%;
    font-size: 0;
    text-align: center;
    margin-top: 0.2rem;
}

.business .businm .bur .burlist .burom .more .mvn {
    display: inline-block;
    vertical-align: middle;
    color: var(--themes);
    line-height: 2.8em;
    border: solid 1px var(--themes);
    border-radius: 1.4em;
    width: auto;
    padding: 0 0.35rem;
}

.business .businm .bur .burlist .burom:nth-child(3n) {
    margin-right: 0;
}

.business .businm .bur .burlist .burom:hover .imgs .img {
    transform: scale(1.1);
}

.business .businm .bur .burlist .burom:hover .more .mvn {
    background-color: var(--themes);
    color: #fff;
}

.petails {
    width: 100%;
    padding: 0.8rem 0;
    background-color: #f3f3f3;
}

.petails .petail {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.petails .petail .pel {
    display: inline-block;
    vertical-align: middle;
    width: calc(900 / 1600 * 100%);
}

.petails .petail .pel .pelper {
    width: 100%;
    position: relative;
}

.petails .petail .pel .pelper .swiper-slide {
    width: 100%;
    background-color: #fff;
}

.petails .petail .pel .pelper .swiper-slide .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.petails .petail .pel .pelper .swiper-slide .imgs .img {
    width: 100%;
    padding-top: 66.66%;
    transition: all ease 0.5s;
}

.petails .petail .pel .pelper .swiper-pagination {
    bottom: 0.3rem;
}

.petails .petail .per {
    display: inline-block;
    vertical-align: middle;
    width: calc(580 / 1600 * 100%);
}

.petails .petail .per .pit {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.petails .petail .per .sip {
    width: 100%;
    color: #333;
    line-height: 1.75;
}

.petails .petail .per .sip p {
    color: #333;
    line-height: 1.75;
}

.petails .petail .per .mot {
    width: 100%;
    font-size: 0;
    margin-top: 0.4rem;
}

.petails .petail .per .mot a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 0 0.45rem;
    border-radius: 1.5em;
    line-height: 3;
    color: #fff;
    background-color: var(--themes);
    transition: all ease 0.5s;
    position: relative;
    top: 0;
}

.petails .petail .per .mot a span {
    display: inline-block;
    vertical-align: middle;
    width: 0.08rem;
    height: 0.08rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    top: -0.01rem;
    margin-left: 0.1rem;
}

.petails .petail .per .mot a:hover {
    top: -0.1rem;
}

.nevtond {
    width: 100%;
}

.nevtond .natops {
    width: 100%;
    position: relative;
    border-bottom: solid 1px #e3e3e3;
}

.nevtond .natops .tondnav {
    width: 100%;
    font-size: 0;
}

.nevtond .natops .tondnav .swiper-slide {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    line-height: 1rem;
    position: relative;
    color: #333;
    margin-right: 0.45rem;
    cursor: pointer;
}

.nevtond .natops .tondnav .swiper-slide.on {
    color: var();
}

.nevtond .natops .tondnav .swiper-slide.on:after {
    content: ' ';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    height: 2px;
    background-color: var(--themes);
}

.nevtond .nacont {
    width: 100%;
    padding: 0.8rem 0;
}

.nevtond .nacont .nocems {
    width: 100%;
}

.nevtond .nacont .nocem {
    width: 100%;
}

.nevtond .nacont .nocem .netop {
    width: 100%;
    background-color: #f3f3f3;
    position: relative;
    padding: 0.15rem 0.24rem;
    margin-bottom: 0.24rem;
}

.nevtond .nacont .nocem .netop .xl {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.04rem;
    height: 0.36rem;
    background-color: var(--themes);
}

.nevtond .nacont .nocem .netop .nt {
    width: 100%;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
}

.nevtond .nacont .nocem .ninp {
    width: 100%;
    color: #333;
    line-height: 1.75;
}

.nevtond .nacont .nocem .ninp p {
    color: #333;
    line-height: 1.75;
}

.nevtond .nacont .nocem .ncerper {
    width: 100%;
}

.nevtond .nacont .nocem .ncerper .swiper-slide {
    width: 100%;
    position: relative;
}

.nevtond .nacont .nocem .ncerper .swiper-slide .imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.nevtond .nacont .nocem .ncerper .swiper-slide .imgs .img {
    width: 100%;
    padding-top: 65.38%;
    transition: all ease 0.5s;
}

.nevtond .nacont .nocem .ncerper .swiper-slide .pem {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 0.15rem 0.2rem;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(1, 82, 161, 0.7);
}

.nevtond .nacont .nocem .ncerper .swiper-slide .pem .pm {
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 1.5;
}

.nevtond .nacont .nocem+.nocem {
    margin-top: 1rem;
}

/* 2026-3-18加 */
.wa-main{width: 100%;padding: 1.5rem .3rem;}
.wa-inner{width: 17.6rem;max-width: 100%;margin: 0 auto;}
.wa-cont{width: 100%;display: flex;flex-wrap: wrap;align-items:center;justify-content: space-between;}
.wa-left{width: calc(560/1760*100%);}
.wa-top{width: 100%;padding-bottom: .25rem;margin-bottom: .25rem;border-bottom: 1px solid #f3f3f3;}
.wa-titles{width: 100%;margin-bottom: .2rem;color: #333333;font-weight: bold;line-height: 1.2;}
.wa-intro{width: 100%;color: #333333;line-height: 1.8;}
.wa-bottom{width: 100%;}
.wa-subtitle{width: 100%;margin-bottom: .3rem;color: #0152a1;font-weight: bold;line-height: 1.27;}
.wa-tr{width: 100%;padding-bottom: .05rem;display: flex;flex-wrap: wrap;justify-content: space-between;}
.wa-td{display: flex;align-items: center;cursor: pointer;width: calc(50% - .1rem);padding: .15rem .2rem;margin-bottom: .2rem;background-color: #f5f5f5;}
.wa-name{position: relative;width: 100%;padding-left: calc(8px + .1rem);color: #333333;font-weight: bold;line-height: 1.5;}
.wa-name:before{content: '';position: absolute;top: .75em;left: 0;margin-top: -4px;width: 8px;height: 8px;border-radius: 50%;background-color: #0152a1;}
.wa-td:hover .wa-name{color: #0152a1;}
.wa-img2{width: 100%;}
.wa-img2 img{max-width: 100%;} 
.wa-right{width: calc(1100/1760*100%);position: relative;}
.wa-swiper1{width: 100%;}
.wa-b{width: 100%;}
.wa-item{width: 100%;}
.wa-img{width: 100%;position: relative;overflow: hidden;padding-top: calc(700/1100*100%);}
.wa-img img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;}
.wa-swiper2{position: absolute;bottom: 0;left: 0;z-index: 38;width: 100%;padding: .2rem .1rem;background-color: rgba(255,255,255,.1);backdrop-filter: blur(8px);}
.wa-c{width: 5.4rem;max-width: 100%;}
.wa-nav{width: 33.33%;padding: 0 .1rem;}
.wa-bg{transition: all .3s;opacity: .5;display: block;cursor: pointer;width: 100%;position: relative;overflow: hidden;padding-top: calc(100/160*100%);}
.wa-bg img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;}
.wa-nav.active .wa-bg{opacity: 1;border: solid .04rem #0152a1;}

@media (max-width: 800px) {
    .wa-left{width: 100%;margin-bottom: .5rem;}
    .wa-right{width: 100%;}
}

.wb-cont{width: calc(100% + .3rem);position: relative;left: -.15rem;}
.wb-swiperbox{width: 100%;}
.wb-swiper{width: 100%;overflow: visible;}
.wb-item{opacity: 0;transition: all ease .5s;visibility: hidden;z-index: -1;width: 50%;padding: 0 .15rem;}
.wb-link{display: block;cursor: pointer;width: 100%;}
.wb-img{position: relative;width: 100%;padding-top: calc(600/900*100%);overflow: hidden;}
.wb-img img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: contain;transform: scale(1.00);transition: all .5s;}
.wb-text{width: 100%;padding-top: .15rem;}
.wb-name{width: 100%;color: #333;line-height: 1.6;}
.wb-link:hover .wb-img img{transform: scale(1.05);}
.wb-link:hover .wb-name{color: var(--themes);}
.wb-item.swiper-slide-active{z-index: 8;visibility: visible;opacity: 1;}
.wb-item.swiper-slide-active + .wb-item{z-index: 8;visibility: visible;opacity: 1;}
.wb-item.swiper-slide-active + .wb-item + .wb-item{z-index: 8;visibility: visible;opacity: 1;}

