@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    color: inherit;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: PingFang SC, "Microsoft YaHei";
    font-size: 16px;
    color: #000;
}

img {
    display: block;
    width: 100%;
}

.con {
    max-width: 1200px;
    /* width: 1200px; */
    margin: 0 auto;
    box-sizing: border-box;

}

@media screen and (max-width:1300px) {
    .con {
        box-sizing: border-box;
        padding: 0 20px;
    }
}

@media screen and (max-width:680px) {
    body {
        padding-top: 60px;
        font-size: 12px;
    }

    .con {
        padding: 0 10px;
    }
}


/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: 'iconfont';  /* Project id 5139137 */
    src: url('//at.alicdn.com/t/c/font_5139137_yxzxi51gbo.woff2?t=1773480575287') format('woff2'),
         url('//at.alicdn.com/t/c/font_5139137_yxzxi51gbo.woff?t=1773480575287') format('woff'),
         url('//at.alicdn.com/t/c/font_5139137_yxzxi51gbo.ttf?t=1773480575287') format('truetype');
  }

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}


/* ?????????????????? */

@media screen and (min-width:681px) {
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        transition: all 0.3s;
    }

    .hd {
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .hd-logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hd-logo-img {
        height: 35px;
    }

    .hd-logo-img img {
        height: 100%;
        width: auto;
    }

    .hd-logo-name {
        display: flex;
        flex-wrap: wrap;
        margin-left: 8px;
        width: 100px;
    }

    .hd-logo-name dt {
        width: 100%;
        letter-spacing: 8px;
        font-weight: bold;
    }

    .hd-logo-name dd {
        font-size: 8px;
        color: #000;
    }


    .hd-nav {
        display: flex;
        justify-content: space-between;
        margin-left: 5%;
        margin-right: auto;

    }

    .navbar-item {
        position: relative;
    }

    .navbar-item>a {
        display: block;
        height: 60px;
        line-height: 60px;
        margin: 0 15px;
        text-align: center;
        position: relative;
    }

    .navbar-active {
        font-weight: bold;
        color: #000 !important;
    }

    .navbar-item>a:hover {
        font-weight: bold;
    }

    .navbar-item>a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        background: #fb9337;
        height: 0px;
        width: 100%;
        border-radius: 10px;
        transition: all 0.4s;
    }

    .navbar-item>a:hover::after {
        height: 3px;
    }

    .navbar-item-child {
        position: absolute;
        background: white;
        width: 100%;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        box-shadow: 2px 5px 5px #ccd4e0;
        opacity: 0;
        height: 0;
        overflow: hidden;
    }

    .navbar-item:hover .navbar-item-child {
        opacity: 1;
        transition: all 0.3s;
        height: auto;
    }

    .navbar-item-child li a {
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        display: block;
        text-align: center;
        height: 100%;
    }

    .navbar-item-child li a:hover {
        color: #006cff;
    }


    .navbar-item>i {
        display: none;
    }

    .hd-butt {
        display: flex;
    }

    .hd-butt>i {
        display: none;
    }

    .hdlianxi-item:nth-child(1) a {
        display: block;
        width: 150px;
        line-height: 36px;
        text-align: center;
        font-size: 14px;
        border-radius: 4px;
        margin-right: 16px;
        background: #fb9337;
        border: 1px solid transparent;
        color: white;
    }

    .hdlianxi-item:nth-child(1) i {
        color: white;
        margin-right: 5px;
        /* font-size: 30px; */
    }


    .hdlianxi-item:nth-child(2) a {
        display: block;
        width: 80px;
        line-height: 36px;
        text-align: center;
        font-size: 14px;
        border-radius: 4px;
        margin-right: 16px;

        background: #fff;
        border: 1px solid #ccd4e0;

    }

    .hdlianxi-item:nth-child(2):hover a {
        background: #006cff;
        color: white;
        transition: all 0.3s;
    }


    .hdlianxi-item:nth-child(3) a {
        display: block;
        width: 80px;
        line-height: 36px;
        text-align: center;
        font-size: 14px;
        border-radius: 4px;

        border: 1px solid transparent;
    }


    .hdlianxi-item2 {
        position: relative;
    }
    .hdlianxi-item2 a {
        margin-right: 0 !important;
    }
    .hdlianxi-item-img {
        
        position: absolute;
        right: 0;
        top: 55px;
        box-sizing: border-box;
        border-radius: 10px;
        overflow: hidden;
        padding: 3px;
        background: white;
        border: 1px solid #f0f0f1;
        box-shadow: 5px 5px 15px #24283014;
        height: 0;
        width: 0;
        opacity: 0;
        z-index: -1;
    }

    .hdlianxi-item:hover .hdlianxi-item-img{
        z-index: 1;
        height: auto;
        opacity: 1;
        transition: all 0.3s;
        width: 120px;
    }
}



@media screen and (max-width:680px) {
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
    }

    .hd {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }


    .hd-logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hd-logo-img {
        height: 35px;
    }

    .hd-logo-img img {
        height: 100%;
        width: auto;
    }

    .hd-logo-name {
        display: flex;
        flex-wrap: wrap;
        margin-left: 8px;
        width: 100px;
    }

    .hd-logo-name dt {
        width: 100%;
        letter-spacing: 8px;
        font-weight: bold;
        font-size: 15px;
    }

    .hd-logo-name dd {
        font-size: 8px;
        color: #000;
    }

    .hd-nav {
        position: absolute;
        width: 100%;
        background: white;
        top: 58px;
        height: auto;
        width: 100%;
        left: 0;
        box-sizing: border-box;
        padding: 15px 20px;
        display: none;
    }

    .navbar-item {
        border-bottom: 1px solid #e9ebec;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }

    .navbar-item>a {
        font-size: 16px;
        line-height: 50px;
        display: block;
        text-align: left;
    }

    .navbar-item>i {
        font-size: 30px;
        transform: rotate(0);
        transition: all 0.3s;
    }

    .navbar-item-i-active {
        transform: rotate(180deg) !important;
    }


    .navbar-item-child {
        width: 100%;
        display: none;
    }

    .navbar-item-child li {
        width: 100%;
        text-align: center;
    }

    .navbar-item-child li a {
        display: block;
        padding-bottom: 15px;
        width: 100%;
    }


    .hdlianxi-item {
        display: none;
    }
    .hdlianxi-item-img {
        display: none;
    }
    .hd-butt {
        display: flex;
        align-items: center;
    }




    .hd-butt>i {
        font-size: 22px;
        transform: rotate(0deg);
        transition: all 0.3s;
    }

    .hd-butt-i-active {
        transform: rotate(90deg) !important;

    }
}

/* ?????????????????? */


/* ?????????????????? */
footer {
    padding-top: 80px;
    background: url('../images/footer-bg.png') no-repeat center;
    background-size: cover;
}

.ft1 {
    padding-bottom: 40px;
    border-bottom: 1px solid #acb3bd;
}

.ft1-des {
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
    text-align: center;
}

.ft1-des span {
    color: #006cff;
}

.ft1-lianjie {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.ft1-lianjie a {
    width: 136px;
    line-height: 42px;
    text-align: center;
    border-radius: 8px;
}

.ft1-lianjie a:nth-child(1) {
    background: #fb9337;
    color: white;
    margin-right: 20px;
}

.ft1-lianjie a:nth-child(2) {
    /* border: 1px solid #ccd4e0; */
    background: white;
}

.ft2 {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}

.ft2-logo {
    display: flex;
    align-items: center;
}

.ft2-logo-img {
    height: 40px;

}

.ft2-logo-img img {
    height: 40px;
    width: auto;
}

.ft2-logo-name {
    margin-left: 8px;
}

.ft2-logo-name dt {
    letter-spacing: 8px;
    font-weight: bold;
}

.ft2-logo-name dd {
    font-size: 8px;
}

.ft2-ewm {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.ft2-ewm-item {
    width: 88px;
}

.ft2-ewm-item:nth-child(1) {
    margin-right: 25px;
}

.ft2-ewm-img {
    width: 88px;
}

.ft2-ewm-img img {
    width: 100%;
}

.ft2-ewm-item div {
    color: #494f57;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}



.ft2-item2 {
    width: 50%;
    display: flex;
}

.ft2-item2>.ftnav-item {
    width: 50%;
}

.ft2-item2>.ftnav-item>a {
    display: block;
    color: #121315;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.ft2-item2>.ftnav-item .ftnav-item {
    color: #494f57;
    line-height: 38px;
    font-size: 13px;
}







.ft2-item3 dt {
    color: #121315;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.ft2-item3 dd {
    color: #494f57;
    line-height: 38px;
    font-size: 13px;
}


.ft3 {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    font-size: 12px;
    color: #494f57;
}

.link-item {
    margin-right: 10px;
    margin-bottom: 5px;
}


.ft4 {
    text-align: center;
    font-size: 10px;
    color: #767e89;
    padding: 20px 0 40px;
}

.fg {
    margin: 0 5px;
}

@media screen and (max-width:680px) {
    footer {
        padding-top: 60px;
    }

    .ft1 {
        padding-bottom: 100px;
        border-bottom: none;
    }

    .ft1-des {
        font-size: 28px;
        line-height: 40px;
    }

    .ft1-lianjie {
        display: none;
    }

    .ft2 {
        display: none;
    }

    .ft3 {
        display: none;
    }

    .ft4 {
        display: none;
    }
}


/* ?????????????????? */



/* ????????????????????? */

.banner {
    position: relative;
    overflow: hidden;
}



.banner-item {
    position: relative;
}

.banner-item-con {
    position: absolute;
    z-index: 800;
    height: 100%;
    width: 75%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.banner-item-con div:nth-child(1) {
    font-size: 65px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 9px;
}

.banner-item-con div:nth-child(2) {
    font-size: 40px;
    letter-spacing: 5px;
}

.banner-item-con a {
    padding: 16px 0;
    background: #006cff;
    color: white;
    text-align: center;
    width: 180px;
    font-size: 20px;
    display: block;
    margin-top: 80px;
    border-radius: 10px;
    transition: all 0.3s linear;

}

.banner-item-con a:hover {
    background: #10A56E;
}

.banner .pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.banner .swiper-pagination-bullet {
    width: 20px;
    height: 5px;
    border-radius: 1px;
    margin: 0 5px !important;
    transition: all 0.5s linear;

}

.banner .swiper-pagination-bullet-active {
    background: white !important;
    width: 35px;

}

@media screen and (max-width:680px) {
    .banner-out {
        box-sizing: border-box;
        overflow: hidden;
        width: 96%;
        margin: 10px auto 0;
    }

    .banner-item-con div:nth-child(1) {
        font-size: 16px;
        letter-spacing: normal;
        margin-bottom: 0;
    }

    .banner-item-con div:nth-child(2) {
        font-size: 12px;
        letter-spacing: normal;
    }

    .banner-item-con a {
        display: none;
    }

    .banner-out .swiper {
        border-radius: 15px;
        overflow: hidden;
    }

    .banner .pagination {
        bottom: -10px;
    }

    .banner .swiper-pagination-bullet {
        width: 10px;
        height: 2px;
    }
}


/* ????????????????????? */


/* ???????????????????????? */
.scindex-title {
    text-align: center;
}

.scindex-title h3 {
    font-size: 36px;
}

.scindex-title div {
    color: #767e89;
    margin-top: 5px;
    box-sizing: border-box;
    padding: 0 20px;
}

@media screen and (max-width:680px) {
    .scindex-title h3 {
        font-size: 20px;
    }
}

/* ???????????????????????? */

/* ???????????????????????? */
.sc-lx {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.sc-lx a {
    width: 136px;
    line-height: 42px;
    text-align: center;
    background: #fb9337;
    color: white;
    border-radius: 4px;
    transition: all 0.3s;
}

.sc-lx a:hover {
    background: #fb9237dd;
}

@media screen and (max-width:680px) {
    .sc-lx {
        margin-top: 20px;
    }
}

/* ???????????????????????? */


/* sc1?????? */
.sc1-out {
    padding-top: 40px;
}

.sc1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc1-item {
    width: 30%;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s;
}

.sc1-item:hover {
    box-shadow: 5px 5px 15px #e5e1e1;

}

@media screen and (max-width:680px) {
    .sc1-out {
        padding-top: 30px;
    }

    .sc1-item {
        width: 32%;
        border-radius: 10px;
    }
}

/* sc1?????? */


/* sc2?????? */
.sc2-out {
    /* padding-top: 60px; */
    background: linear-gradient(#fff, #CFE2FF);
}

.sc2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.sc2-item {
    width: 30%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.sc2-item:nth-child(1) {
    margin-bottom: 30px;
}

.sc2-item:nth-child(2) {
    margin-bottom: 30px;
}

.sc2-item:nth-child(3) {
    margin-bottom: 30px;
}


.sc2-item:hover {
    box-shadow: 5px 5px 15px #e5e1e1;
}

.sc2-item-img {
    height: 145px;
    overflow: hidden;
}

.sc2-item-img-wai {
    background: #fb9337;
    box-sizing: border-box;
    padding-top: 18px;
    padding-left: 18px;
    padding-right: 18px;
}

.sc2-item-img-nei {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 5px 5px 15px #b9b8b877;
}

.sc2-item-con {
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: white;
}

.sc2-item-con-des {
    font-size: 12px;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 2;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
    color: #767e89;
    margin-top: 10px;
    text-align: justify;
}

.sc2-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    /* ???????????? */
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
}

.sc2-item-bg a {
    width: 80px;
    line-height: 36px;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;

}

.sc2-item-bg a:nth-child(2) {
    background: #fb9337;
    color: white;
}

.sc2-item-bg a:nth-child(1) {
    background: white;
    box-sizing: border-box;
    border: 1px solid #e9ebec;
    margin-right: 10px;
    /* display: none; */
}

.sc2-item:hover .sc2-item-bg {
    opacity: 1;
}

@media screen and (max-width:680px) {
    .sc2-out {
        padding-top: 40px;
    }

    .sc2 {
        margin-top: 20px;
    }

    .sc2-item {
        margin-bottom: 15px !important;
        width: 49%;
    }

    .sc2-item-img {
        height: 85px;
    }

    .sc2-item-con {
        padding: 10px;
    }

    .sc2-item-img-wai {
        padding-top: 12px;
        padding-left: 12px;
        padding-right: 12px
    }
}

/* sc2?????? */

/* sc3?????? */
.sc3-out {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(#CFE2FF, #fff);
}

.sc3 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc3-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 22%;
    border-radius: 12px;
    border: 1px solid #e9ebec;
    box-sizing: border-box;
    padding: 25px 30px;
}

.sc3-item-img {
    width: 40px;
    height: 40px;
}

.sc3-item-con {
    text-align: center;
    margin-top: 14px;
}

.sc3-item-con h4 {
    color: #121315;
}

.sc3-item-con div {
    color: #767e89;
    font-size: 13px;
    margin-top: 4px;
}

@media screen and (max-width:680px) {
    .sc3-out {
        padding-top: 40px;
    }

    .sc3 {
        margin-top: 20px;
    }

    .sc3-item {
        width: 49%;
    }
}

/* sc3?????? */

/* mm???????????? */
.mm-out {
    /* background: #f6f6f6; */
    padding: 80px 0 40px;
}

.mm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.mm-left {
    width: 70%;

}

.mm-right {
    width: 27%;
}

.mmright-item {
    /* border: 1px solid #e9ebec; */
    box-sizing: border-box;
    padding: 20px 15px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 5px 5px 15px #f1f1f1;
}

.mmright-item-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
}

@media screen and (max-width:680px) {
    .mm-out {
        padding: 0px 0 0px;
    }

    .mm-left {
        width: 100%;
    }

    .mm-right {
        width: 100%;
    }

    .mmright-item {
        margin-bottom: 20px;
    }
}

/* mm???????????? */




/* sc4?????? */
.sc4 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc4-item {
    width: 32%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
    margin-top: 30px;
    border: 1px solid #e9ebec;
    box-sizing: border-box;
}

.sc4-item:nth-child(1) {
    margin-top: 0px;
}

.sc4-item:nth-child(2) {
    margin-top: 0px;
}

.sc4-item:nth-child(3) {
    margin-top: 0px;
}

.sc4-item:hover {
    box-shadow: 5px 5px 15px #e5e1e1;
}

.sc4-item-img {
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc4-item-img img {
    width: 100%;
}

.sc4-item-con {
    box-sizing: border-box;
    padding: 15px;
}

.sc4-item-con h4 {
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 1;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
}

.sc4-item-con-des {
    font-size: 12px;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 2;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
    color: #767e89;
    margin-top: 10px;
    text-align: justify;
}

.sc4-item-con-other {
    font-size: 12px;
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
}

.sc4-item-con-other span {
    color: #767e89;
    margin-right: 10px;
}

@media screen and (max-width:680px) {
    .sc4 {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .sc4-item {
        width: 49%;
        margin-top: inherit;
    }

    .sc4-item:nth-child(1) {
        margin-top: 0px;
    }

    .sc4-item:nth-child(2) {
        margin-top: 0px;
    }

    .sc4-item:nth-child(3) {
        margin-top: inherit;
    }

    .sc4-item:nth-child(4) {
        margin-top: inherit;
    }

    .sc4-item-img {
        height: 100px;
    }

    .sc4-item-con {
        padding: 10px;
    }
}

/* sc4?????? */

/* pagebar?????? */
.pagebar {
    display: flex;
    justify-content: center;
    padding-top: 40px;

}

.pagebar .page-status {
    display: none;
}

.pagebar span {}

.pagebar a {
    line-height: 25px;
    width: 25px;
    padding: 8px;
    text-align: center;
    background: #efeeee;
    margin: 0 4px 0;
    font-size: 12px;
    border-radius: 3px;
}

.pagebar a:hover {
    background: #fb9337;
    color: white;
}

.page-num-current {
    background: #fb9337 !important;
    color: white;
}

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

/* pagebar?????? */


/* sc5?????? */
.sc5-out {
    background: linear-gradient(#CFE2FF, #fff);
    height: 450px;
    position: relative;

}

.sc5 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sc5-con {
    z-index: 99;
    text-align: center;
    width: 75%;
}

.sc5-con-name {
    font-size: 55px;
    font-weight: bold;
}

.sc5-con-des {
    margin-top: 25px;
    color: #242830;
    line-height: 28px;
    background: linear-gradient(45deg, white, transparent) !important;
    box-shadow: 5px 5px 15px #24283014;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
    text-align: justify;
}

.sc5-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.1;
}


@media screen and (max-width:680px) {
    .sc5 {
        padding: 0;
        width: 96%;
        margin: 10px auto 0;
        border-radius: 15px;
        overflow: hidden;
    }
}

/* sc5?????? */


/* ????????????????????? */
.newsnav-item {
    font-size: 14px;
    line-height: 30px;
    margin-left: 10px;
}

.newsnav-item a {
    display: block;
    color: #636466;
    line-height: 40px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s;
}

.newsnav-item a:hover {
    color: #fb9337;
}

/* ????????????????????? */





/* ?????????????????? */

.aranlx {
    position: sticky;
    top: 80px;
}


.arlx {
    display: flex;
    justify-content: space-between;
}

.arlx-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.arlx-item-img img {
    display: block;
    /* max-width: 90px !important; */
}

.arlx-item-des {
    text-align: center;
    margin-top: 4px;
    font-size: 12px;
}

.anlx {
    margin-top: 10px;
}

.anlx-anniu {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.anlx-anniu a {
    display: block;
    background: #268bfb;
    color: white;
    text-align: center;
    line-height: 28px;
    font-size: 12px !important;

    border-radius: 4px;
}

.anlx-anniu-a1 {
    width: 60%;
}

.anlx-anniu-a2 {
    width: 35%;
    background-color: #fb9337 !important;
}

.anlx-dianhua {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
    color: #268bfb;
}

.anlx-dizhi {
    font-size: 14px;
    margin-top: 6px;
}

/* ?????????????????? */


/* sc6?????? */
.sc6 {
    box-shadow: 5px 5px 15px #f1f1f1;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
}

.sc6 h1 {
    font-size: 48px;
    line-height: 68px;
    font-weight: 700;
}

.sc6-other {
    color: #00000073;
    font-size: 14px;
    padding: 16px 0;
    margin-top: 8px;
    border-bottom: 1px dashed #e5e5e5
}

.sc6-other span {
    margin-right: 10px;
}

.sc6-other span:nth-child(1) {
    color: #121315;
}

.sc6-zhaiyao {
    margin-top: 32px;
    padding: 24px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 28px;
    background-image: linear-gradient(128deg, #efe8fd99, #e9e8ff99);
    color: #000000a6;
}

.sc6-article {
    margin-top: 40px;
    font-size: 18px;
    color: #242830;
    line-height: 32px;
}

.sc6-article img {
    margin: auto;
    display: block;
    max-width: 80% !important;
}

.sc6-img {
    margin-top: 20px !important;
    display: block;
}

.sc6-tags {
    font-size: 14px;
    color: #726e6e;
    padding-top: 30px;
}

.sc6-tags span {
    margin-right: 15px;
}

.sc6-page {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 36px;
    margin-top: 40px;
    color: #000000d9;
    border-top: 1px dashed #e5e5e5;
    padding-top: 30px;
}

.sc6-page-item {
    width: 49%;
}

.sc6-page-item:nth-child(2) {
    text-align: right;
}

.sc6-page-item:hover {
    color: #fb9337;
}

.sc6-sm {
    margin-top: 32px;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 20px;
    color: #000000a6;
    background-color: #00000005;
}


@media screen and (max-width:680px) {
    .sc6 h1 {
        font-size: 24px;
        line-height: 34px;
        margin-top: 20px;
    }

    .sc6-page-item {
        font-size: 14px;
        line-height: 28px;
    }
}


/* sc6?????? */


/* sc7?????? */
.sc7-out {
    margin-top: 40px;
}

.sc7-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
}

.sc7-item {
    border-top: 1px solid #f4f4f4;
    margin-top: 25px;
    box-sizing: border-box;
    padding: 15px;
    box-shadow: 5px 5px 15px #f1f1f1;
    transition: all 0.3s;
    border-radius: 10px;
}

.sc7-item h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.sc7-neirong {
    display: flex;
    justify-content: space-between;
}

.sc7-item:nth-child(1) {
    margin-top: 0;
    border-top: none;
}

.sc7-item:hover {
    box-shadow: 5px 5px 15px #e5e1e1;
}

.sc7-item-img {
    width: 26%;
    overflow: hidden;
    max-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.sc7-item-con {
    width: 70%;
    position: relative;
}

.sc7-item-con-dse {
    margin-top: 15px;
    font-size: 13px;
    line-height: 24px;
    text-align: justify;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 2;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
    color: #767e89;
}

.sc7-item-con-time {
    margin-top: 40px;
    font-size: 12px;
    text-align: right;
    color: #494f57;
}

@media screen and (max-width:680px) {
    .sc7-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .sc7-item-img {
        width: 45%;
    }

    .sc7-item-con {
        width: 52%;
    }

    .sc7-item-con-dse {
        margin-top: 0;
        line-height: 20px;
    }

    .sc7-item-con-time {
        margin-top: 10px;
    }
}

/* sc7?????? */


/* sc8?????? */
.sc8-out {
    padding-bottom: 60px;
}

.sc8 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.sc8-item {
    width: 24%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
    margin-top: 30px;
    border: 1px solid #e9ebec;
    box-sizing: border-box;
}

.sc8-item:nth-child(1) {
    margin-top: 0px;
}

.sc8-item:nth-child(2) {
    margin-top: 0px;
}

.sc8-item:nth-child(3) {
    margin-top: 0px;
}

.sc8-item:nth-child(4) {
    margin-top: 0px;
}

.sc8-item:hover {
    box-shadow: 5px 5px 15px #e5e1e1;
}

.sc8-item-img {
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc8-item-img img {
    width: 100%;
}

.sc8-item-con {
    box-sizing: border-box;
    padding: 15px;
}

.sc8-item-con h4 {
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 1;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
}

.sc8-item-con-des {
    font-size: 12px;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 2;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
    color: #767e89;
    margin-top: 10px;
    text-align: justify;
}

.sc8-item-con-other {
    font-size: 12px;
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
}

.sc8-item-con-other span {
    color: #767e89;
    margin-right: 10px;
}

@media screen and (max-width:680px) {
    .sc8 {
        margin-top: 20px;
        padding-bottom: 40px;
    }

    .sc8-item {
        width: 49%;
        margin-top: inherit;
    }

    .sc8-item:nth-child(1) {
        margin-top: 0px;
    }

    .sc8-item:nth-child(2) {
        margin-top: 0px;
    }

    .sc8-item:nth-child(3) {
        margin-top: inherit;
    }

    .sc8-item:nth-child(4) {
        margin-top: inherit;
    }

    .sc8-item-img {
        height: 100px;
    }

    .sc8-item-con {
        padding: 10px;
    }
}

/* sc8?????? */


/* sc9 ?????? */
.sc9-out {
    margin-top: 40px;
}

.sc9-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
}

.sc9-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f4f4f4;
    padding-top: 8px;
    margin-top: 10px;
    box-sizing: border-box;
    transition: all 0.3s;
    border-radius: 10px;
    transform: translateY(0);
}

.sc9-item:hover {
    transform: translateY(-5px);
}

.sc9-item:nth-child(1) {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.sc9-item-img {
    width: 26%;
    overflow: hidden;
    border-radius: 5px;
    max-height: 80px;

}

.sc9-item-con {
    width: 70%;
    position: relative;
}

.sc9-item-con h4 {
    font-size: 16px !important;
}


.sc9-item-con-dse {
    margin-top: 5px;
    font-size: 10px;
    line-height: 16px;
    text-align: justify;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 2;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
    color: #767e89;
}

/* sc9 ?????? */

/* ????????????????????? */
@font-face {
    font-family: 'iconfont';
    /* Project id 5015961 */
    src: url('//at.alicdn.com/t/c/font_5015961_epk47ms297m.woff2?t=1757303097708') format('woff2'),
        url('//at.alicdn.com/t/c/font_5015961_epk47ms297m.woff?t=1757303097708') format('woff'),
        url('//at.alicdn.com/t/c/font_5015961_epk47ms297m.ttf?t=1757303097708') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

.gd-box {
    position: fixed;
    right: 1px;
    bottom: 35vh;
    z-index: 999;
}

.gd-box a {
    color: inherit;
    text-decoration: none;

}

.gd-item {
    height: 50px;
    width: 50px;
    background: white;
    color: white;
    box-sizing: border-box;
    /* border: 1px solid #e6eaf0; */
    box-shadow: 0 0 0 1px #e6eaf0, 0 4px 10px rgba(12, 31, 80, .08);
    border-radius: 8px;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.gd-item:hover {
    background: #268bfb;
}

.gd-item-img {
    display: flex;
    justify-content: center;
}

.gd-item-img i {
    font-size: 20px;
    color: #6c6c72;
    transition: all 0.3s;
}

.gd-item:hover .gd-item-img i {
    color: white;
}

.gd-item-title {
    font-size: 10px;
    margin-top: 5px;
}

.gd-item:hover .gd-item-title {
    color: white;
}

.gd-item-con {
    position: absolute;
    background: white;
    right: 60px;
    width: 128px;
    top: 0;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 8px;
    display: none;
    box-sizing: 5px 5px 15px #f1f1f1;
    border: 1px solid #e6eaf0;
    ;
}

.gd-item:hover .gd-item-con {
    display: block;
}

.gd-item2-con {
    height: 100%;
    width: 140px;
}

.gd-item2-con-d1 {
    font-size: 10px;
    color: #6c6c72;
    text-align: center;
}

.gd-item2-con-d2 {
    font-size: 16px;
    color: #268bfb;
    margin-top: 3px;
}

.gd-item3-con-d1 {
    font-size: 10px;
    color: #6c6c72;
    text-align: center;
}

.gd-item3-con-d2 {
    width: 100%;
}

.gd-item3-con-d2 img {
    width: 100%;
    display: block;
}

@media screen and (max-width: 720px) {
    .gd-box {
        left: 0;
        bottom: 0px;
        width: 100%;
    }

    .gd {
        display: flex;
        justify-content: space-around;
    }

    .gd-item {
        width: 31%;
        margin-bottom: 4px;
        height: 40px;
    }

    .gd-item-img i {
        color: #268bfb;
    }

    .gd-item-title {
        margin-top: 1px;
    }

    .gd-item-con {
        display: none;
    }

    .gd-item:hover .gd-item-con {
        display: none;
    }
}

@media screen and (min-width: 321px) {
    .gd-box {
        line-height: normal;
    }

}


/* ?????????????????? */



/* sc10?????? */
.sc10-out {
    background-image: url(../images/section1-bg.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;

}

.sc10 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 650px;
}

.sc10-left {
    width: 55%;
}

.sc10-left-p1 {
    margin-top: 60px;
}

.sc10-left-p1 div {
    font-size: 32px;
    font-weight: bold;
}

.sc10-left-p1 h1 {
    font-size: 60px;
}

.sc10-left-p2 {
    color: #494f57;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 28px;
    margin-top: 25px;
    margin-bottom: 60px;
}

.sc10-left-p3 a {
    width: 136px;
    line-height: 42px;
    text-align: center;
    background: #fb9337;
    color: white;
    border-radius: 4px;
    display: block;
    transition: all 0.3s;
}

.sc10-left-p3 a:hover {
    background: #fb9237dd;
}



.sc10-right {
    width: 35%;
    position: relative;
    right: 5%;

}

.sc10-right-img img {
    width: 100%;
}

@media screen and (max-width:680px) {
    .sc10 {
        flex-wrap: wrap;
        box-sizing: border-box;
        /* padding-top: 100px; */
        flex-direction: column-reverse;
        height: auto;
    }

    .sc10-left {
        width: 100%;
        text-align: center;
    }

    .sc10-left-p1 {
        margin-top: 40px;
    }

    .sc10-left-p1 div {
        font-size: 20px;
    }

    .sc10-left-p1 h1 {
        font-size: 40px;
    }

    .sc10-left-p2 {
        font-size: 16px;
        line-height: 24px;
    }

    .sc10-left-p3 {
        display: flex;
        justify-content: center;
        margin-bottom: 0px;
    }

    .sc10-right {
        width: 100%;
    }

    .sc10-right {
        left: 0;
    }
}

/* sc10?????? */


/* sc11?????? */
.sc11 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.sc11-item {
    width: 20%;
    margin-top: 40px;
}

.sc11-item-img {
    display: flex;
    justify-content: center;
}

.sc11-item-img img {
    height: 100px;
    width: 100px
}

.sc11-item-con {
    text-align: center;
}

.sc11-item-con dt {
    color: #121315;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.sc11-item-con dd {
    color: #767e89;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
}

@media screen and (max-width:680px) {
    .sc11-item {
        margin-top: 20px;
        width: 48%;
    }

    .sc11-item-con dt {
        font-size: 16px;
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .sc11-item-con dd {
        font-size: 12px;
        line-height: 18px;
    }
}

/* sc11?????? */


/* sc12?????? */
.sc12-out {
    padding: 0 0 80px;
}

.sc12 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.sc12-item {
    width: 13%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #e9ebec;
    margin-top: 16px;
    border-radius: 6px;
}

.sc12-item-img {}


@media screen and (max-width:680px) {
    .sc12-item {
        width: 23%;
        margin-top: 8px;
        padding: 5px;
        border-radius: 3px;
    }
}

/* sc12?????? */


/* sc13?????? */
.sc13-out {
    padding: 180px 0 80px;
    background: linear-gradient(#CFE2FF, #fff);
}


.sc13 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sc13-des1 {
    font-size: 54px;
    line-height: 80px;
    font-weight: bold;
    color: #242830;
    letter-spacing: 5px;
}

.sc13-des1 span {
    color: #006cff;
}

.sc13-des2 {
    margin: 20px 0 0;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    color: #242830;
}

.sc13-des3 {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.sc13-des3 a {
    margin: 0 10px;
}

.sc13-des3-a1 {
    width: 136px;
    line-height: 42px;
    text-align: center;
    background: #fb9337;
    color: white;
    border-radius: 4px;
    display: block;
    transition: all 0.3s;
}

.sc13-des3-a1:hover {
    background: #fb9237dd;
}

.sc13-des3-a2 {
    width: 136px;
    line-height: 42px;
    text-align: center;
    background: white;
    color: #000;
    border-radius: 4px;
    display: block;
    transition: all 0.3s;
    border: 1px solid #ccd4e0;
}

.sc13-des3-a2:hover {
    background: #006cff;
    color: white;
}

.sc13-des4 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.sc13-des4-item {
    margin: 0 15px;
}

.sc13-des4-item-ico {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.6s;
}

.sc13-des4-item-ico:hover {
    transform: scale(1.05);
}

.sc13-des4-item-ico i {
    color: white;
    font-size: 30px;
}

.sc13-des4-item-des {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

.sc13-des5 {
    text-align: center;
    margin-top: 70px;
    color: #0c0223;
}
@media screen and (max-width:680px) {
    .sc13-out {
        padding: 80px 10px 60px;
        box-sizing: border-box;
    }
    .sc13-des1 {
        text-align: center;
        font-size: 40px;
    line-height: 53px;
    }
    .sc13-des2 {
        font-size: 16px;
        text-align: center;
    }
    .sc13-des3 {
        margin-top: 40px;
    }
    .sc13-des5 {
        margin-top: 45px;
    }
    .sc13-des4 {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .sc13-des4-item {
        width: 23%;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .sc13-des4-item:nth-child(1) {
        margin-bottom: 14px;
    }
    .sc13-des4-item:nth-child(2) {
        margin-bottom: 14px;
    }
    .sc13-des4-item:nth-child(3) {
        margin-bottom: 14px;
    }
    .sc13-des4-item:nth-child(4) {
        margin-bottom: 14px;
    }
    .sc13-des4-item-ico {
        width: 50px;
        height: 50px;
    }
    .sc13-des4-item-ico i {
        font-size: 24px;
    }
    .sc13-des4-item-des {
        font-size: 13px;
        margin-top: 7px;
    }
    .sc13-out-mall .sc13-des4-item {
        width: 18%;
    }
    .sc13-out-mall .sc13-des4-item:nth-child(5) {
        margin-bottom: 14px;
    }
}

/* sc13?????? */


/* sc14?????? */
.sc14 {
    margin-top: 40px;
}

.sc14-img {
    width: 60vw;
    margin: auto;
    border-radius: 5px;
}

.sc14-img img {
    width: 100%;
    box-shadow: 5px 5px 15px #24283014;
}
@media screen and (max-width:680px) { 
    .sc14-img {
        width: 96vw;
    }
}
/* sc14?????? */




/* sc15?????? */
.sc15-out {
    padding: 80px 0;
}

.sc15-item {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sc15-item-neirong {
    width: 45%;
}

.sc15-item-neirong-des {
    color: rgba(0, 0, 0, .6);
    font-size: 20px;
    font-weight: 400;
    height: 28px;
    line-height: 33px;
}

.sc15-item-neirong-title {
    color: #121315;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sc15-item-neirong-con {
    color: #767e89;
    font-size: 16px;
    line-height: 28px;
}

.sc15-item-neirong-a {
    width: 136px;
    line-height: 42px;
    text-align: center;
    background: #fb9337;
    color: white;
    border-radius: 4px;
    display: block;
    transition: all 0.3s;
    margin-top: 30px;
}

.sc15-item-neirong-a:hover {
    background: #fb9237dd;
}


.sc15-item-ico {
    width: 45%;

}
.sc15-item-ico-img {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 20px #CFE2FF;
}
@media screen and (max-width:680px) {
    .sc15-out {
        padding: 60px 0;
    }
    .sc15-item {
        margin-top: 40px;
    }
    .sc15-item:nth-child(1) {
        flex-direction: column-reverse;
    }
    .sc15-item:nth-child(3) {
        flex-direction: column-reverse;
    }
    .sc15-item-neirong {
        width: 100%;
        margin-top: 30px;
    }
    .sc15-item-neirong-des {
        font-size: 14px;
    }
    .sc15-item-ico {
        width: 100%;
    }
}
/* sc15?????? */



/* sc16?????? */
.sc16-out {
    padding-bottom: 80px;
}

.sc16 {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc16-item {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #e9ebec88;
    box-sizing: border-box;
    padding: 0 30px;
}

.sc16-item:nth-child(1) {
    border-left: none
}

.sc16-item-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: red;
}

.sc16-item-img i {
    font-size: 30px;
    color: white;
}

.sc16-item-con {
    text-align: center;
}

.sc16-item-con-title {
    font-size: 20px;
    line-height: 28px;
    color: #0f1335;
    margin-top: 15px;
}

.sc16-item-con-des {
    color: #0f1335;
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
}
@media screen and (max-width:680px) {
    .sc16-item {
        width: 48%;
    }
    .sc16-item {
        padding: 0 15px;
    }
    .sc16-item:nth-child(1) {
        margin-bottom: 20px;
    }
    .sc16-item:nth-child(2) {
        margin-bottom: 20px;
    }
    .sc16-item-con-des {
        margin-top: 5px;
        font-size: 12px;
    }
}
/* sc16?????? */



/* sc17?????? */
.sc17-out {
    margin-top: 40px;
}

.sc17 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc17-item {
    width: 21%;
    border-radius: 8px;
    box-shadow: 5px 5px 15px #24283014;
    box-sizing: border-box;
    padding: 20px;
    background: #F3FAFB;
}

.sc17-item span {
    display: block;
    width: 50px;
    height: 6px;
    background: #CFE2FF;
    margin: 10px auto 15px;
    border-radius: 10px;
}

.sc17-item h4 {
    color: #141e31;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
}

.sc17-item p {
    color: #5e6d82;
    font-size: 14px;
    line-height: 24px;
    margin-top: 30px;
    text-align: justify;
}
@media screen and (max-width:680px) {
    .sc17-item {
        width: 48%;
        padding: 14px;
    }
    .sc17-item:nth-child(1) {
        margin-bottom: 15px;
    }
    .sc17-item:nth-child(2) {
        margin-bottom: 15px;
    }
}

/* sc17?????? */


/* sc18?????? */
.sc18-out {

    background: url(../images/bg1.png) 50% no-repeat;
    background-size: cover;
}

.sc18 {
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sc18-p1 {
    font-size: 50px;
}

.sc18-p2 {
    color: #525967;
    margin-top: 12px;
    line-height: 26px;
    font-size: 18px;
}

.sc18-p3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
    background: linear-gradient(45deg, white, transparent) !important;
    /* width: 80%; */
    box-sizing: border-box;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 5px 5px 15px #24283014;
}

.sc18-p3-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 30px;
}

.sc18-p3-item-ico {
    /* width: 60px; */
    /* height: 60px; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc18-p3-item-ico i {
    font-size: 40px;
    color: white;
}

.sc18-p3-item-con {
    text-align: center;
    margin-top: 15px;
}

.sc18-p3-item-con dt {
    font-size: 16px;
    line-height: 24px;
}

.sc18-p3-item-con dd {
    font-size: 12px;
    margin-top: 5px;
    color: #525967;
}
@media screen and (max-width:680px) {
    .sc18-out {
        padding: 80px 10px 60px;
        box-sizing: border-box;
    }
    .sc18-p1 {
        text-align: center;
        font-size: 40px;
    }
    .sc18-p3 {
        padding: 14px;
    }
    .sc18-p3-item {
        width: 48%;
        margin: 0;
    }
    .sc18-p3-item:nth-child(1) {
        margin-bottom: 15px;
    }
    .sc18-p3-item:nth-child(2) {
        margin-bottom: 15px;
    }
    .sc18-p3-item-con dd {
        display: none;
    }
}

/* sc18?????? */






/* sc19?????? */
.sc19-out {
    background: linear-gradient(#fff, #CFE2FF);
}

.sc19-out1 {
    background: linear-gradient(#CFE2FF, #fff);
    padding-top: 80px;
}

.sc19 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc19-item {
    width: 23.5%;
    box-sizing: border-box;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 5px 5px 15px #24283014;
    background: #F3FAFB;
    position: relative;
    overflow: hidden;
}

.sc19-out1 .sc19-item {
    background: white;
}

.sc19-item span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: #CFE2FF;
    right: 15px;
    top: 15px;
    box-shadow: 5px 5px 15px #24283014;
}

.sc19-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: red;
}

.sc19-item-name {
    font-size: 20px;
    letter-spacing: 3px;
}

.sc19-item-des {
    font-size: 13px;
    margin-top: 20px;
    color: #525967;
    text-align: justify;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    /* -webkit-line-clamp: 4; */
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
    line-height: 20px;
}

.sc19-item-img {
    max-height: 150px;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: centere;
    box-shadow: 5px 5px 15px #24283014;
}

.sc19-item-img img {
    display: block;
    height: auto !important;
}
@media screen and (max-width:680px) {
    .sc19-item {
        width: 96%;
        margin-bottom: 20px;
    }
}
/* sc19?????? */


/* sc20?????? */
.sc20-out {
    padding: 80px 0;
}

.sc20-item {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sc20-item-neirong {
    width: 45%;
}

.sc20-item-neirong-des {
    color: rgba(0, 0, 0, .6);
    font-size: 20px;
    font-weight: 400;
    height: 28px;
    line-height: 33px;
}

.sc20-item-neirong-title {
    color: #121315;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sc20-item-neirong-con {
    color: #767e89;
    font-size: 16px;
    line-height: 28px;
}

.sc20-item-neirong-a {
    width: 136px;
    line-height: 42px;
    text-align: center;
    background: #fb9337;
    color: white;
    border-radius: 4px;
    display: block;
    transition: all 0.3s;
    margin-top: 30px;
}

.sc20-item-neirong-a:hover {
    background: #fb9237dd;
}

.sc20-item-neirong-ff {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc20-item-neirong-ff-item {
    background: white;
    width: 30%;
    text-align: center;
    display: flex;
    align-items: center;
    border: 1px solid #ccd4e0;
    box-sizing: border-box;
    padding: 12px 8px;
    margin-top: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 5px 5px 15px #24283014;
}

.sc20-item-neirong-ff-item:hover {
    background: #006cff;
    color: white;
}

.sc20-item-neirong-ff-item-ico {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.sc20-item-neirong-ff-item-ico i {
    font-size: 20px;
}

.sc20-item-neirong-ff-item:hover .sc20-item-neirong-ff-item-ico i {
    color: white !important;
}

.sc20-item-neirong-ff-item span {
    font-size: 14px;
}


.sc20-item-ico {
    width: 45%;

}

.sc20-item-ico-img {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 20px #CFE2FF;
}
@media screen and (max-width:680px) {
    .sc20-item-neirong {
        width: 100%;
    }
    .sc20-item-neirong-ff-item {
        padding: 5px;
        width: 32%;
    }
    .sc20-item-neirong-ff-item span {
        font-size: 10px;
    }
    .sc20-item-ico {
        width: 100%;
        margin-top: 20px;
    }
}
/* sc20?????? */






/* sc21?????? */
.sc21 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc21-item {
    width: 23.5%;
    box-sizing: border-box;
    padding: 30px 15px 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #F3FAFB;
    box-shadow: 5px 5px 15px #24283014;
    position: relative;
}

.sc21-item span {
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: red;
}

.sc21-item-name {
    display: flex;
    align-items: center;
    color: #141e31;
    font-size: 20px;
}

.sc21-item-ico {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.sc21-item-ico i {
    font-size: 28px;
}

.sc21-item-des {
    font-size: 13px;
    margin-top: 20px;
    color: #525967;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* -webkit-line-clamp: 4; */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
}
@media screen and (max-width:680px) {
    .sc21-item {
        width: 48%;
    }
    .sc21-item:nth-child(1) {
        margin-bottom: 20px;
    }
    .sc21-item:nth-child(2) {
        margin-bottom: 20px;
    }
}
/* sc21?????? */


/* sc22?????? */
.sc22-out {
    padding-top: 80px;
    padding-bottom: 80px;
}

.sc22-item {
    padding: 80px 80px 120px;
    margin-top: 70px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px #24283014;
}

.sc22-item-bg1 {
    background-size: cover !important;
    opacity: 0.2;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.sc22-item-bg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

}

.sc22-item-con {
    width: 70%;
}

.sc22-item-con-name {
    font-size: 40px;
    color: #0a0a0a;
    font-weight: bold;
}

.sc22-item-con-des {
    font-size: 20px;
    color: #000;
    margin-top: 30px;
    line-height: 36px;
    text-align: justify;
}

.sc22-item-con {
    position: relative;
    z-index: 10;
}

.sc22-item-a {
    position: absolute;
    right: 80px;
    bottom: 60px;
    width: 136px;
    line-height: 42px;
    text-align: center;
    background: #fb9337;
    color: white;
    border-radius: 4px;
    display: block;
    transition: all 0.3s;
}

.sc22-item span {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 50px;
    height: 8px;
    border-radius: 50px;
    background: #f3f8f8;
    z-index: 10;
    box-shadow: 5px 5px 15px #2428304d;
}

.sc22-item:nth-child(1) .sc22-item-bg2 {
    background: linear-gradient(135deg, #ffecdcef 30%, #f3fafbcb 80%);
}

.sc22-item:nth-child(2) .sc22-item-bg2 {
    background: linear-gradient(135deg, #9a7cfeec 30%, #01dca2b1 80%);
}

.sc22-item:nth-child(3) .sc22-item-bg2 {
    background: linear-gradient(135deg, #de5eefde 30%, #70c3ffd8 80%);
}

.sc22-item:nth-child(4) .sc22-item-bg2 {
    background: linear-gradient(135deg, #acd1dd 30%, hsla(157, 95%, 48%, 0.759) 80%);
}

@media screen and (max-width:680px) {
    .sc22-item {
        width: 94%;
        padding: 40px 30px !important;
    }
    .sc22-item-con {
        width: 100%;
    }
    .sc22-item-a {
        display: none;
    }
}


/* sc22?????? */


/* sc23 ?????? */
.sc23-out {
    padding: 80px 0 0;
    background: url(../images/bg1.png) 50% no-repeat;
    background-size: cover;
}

.sc23 {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 100px;
    align-items: center;
}

.sc23-left {
    width: 50%;
}

.sc23-left ul {
    margin-left: 20%;
}

.sc23-left ul a {
    color: #858889;
    color: #333;
    font-size: 35px;
    line-height: 70px;
    display: block;
    letter-spacing: 1px;
    transition: all 0.1s;
}

.sc23-left ul a:hover {
    color: #fb9337;
}



.sc23-right {
    width: 50%;
}

.sc23-right-con {
    width: 80%;
    background: #cfe2ffa4;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 16px;
}

.sc23-right-con div:nth-child(1) {
    color: #888888;
    font-size: 18px;
}

.sc23-right-con div:nth-child(2) {
    font-size: 65px;
    font-weight: bold;
    margin-top: 6px;
    letter-spacing: 6px;
}

.sc23-right-con div:nth-child(3) {
    margin-top: 75px;
    font-size: 20px;
    color: #888888;
    letter-spacing: 2px;
    text-decoration: underline;
}

.sc23-right-con div:nth-child(4) {
    margin-top: 5px;
    font-size: 15px;
    color: #888888;
}

@media screen and (max-width:780px) {
    .sc23-out {
        padding-top: 40px;
    }

    .sc23 {
        flex-wrap: wrap;
        padding-bottom: 40px;
    }

    .sc23-right {
        width: 100%;
    }

    .sc23-right-con {
        width: 95%;
        margin: auto;
    }

    .sc23-right-con div:nth-child(2) {
        font-size: 40px;
    }

    .sc23-right-con div:nth-child(3) {
        margin-top: 36px;
        font-size: 16px;
    }



    .sc23-left {
        width: 100%;
    }

    .sc23-left ul {
        margin-left: 0;
        width: 95%;
        margin: 30px auto 0;
        font-size: 30px;
        line-height: 52px;
    }

    .sc23-left ul a {
        font-size: 30px;
        line-height: 50px;
    }
}


/* sc23 ?????? */


/* sc24 ?????? */
.sc24-out {
    padding: 100px 0 0;

}

.sc24 {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 100px;
}

.sc24-left {
    width: 40%;
}

.sc24-left span {
    font-size: 27px;
    color: #979797;
    display: block;
    text-align: center;
    text-decoration: underline;
}








.sc24-right {
    width: 50%;
}





.sc24-item1-con {
    font-size: 18px;
    line-height: 32px;
    text-align: justify;
    color: #000;
}

.sc24-item1-con p:nth-child(1) {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
}

.sc24-item1-con p span {
    font-weight: bold;
    margin-right: 10px;
}












.sc24-item2-title {
    font-size: 22px;
    color: #000;
    font-weight: bold;
}

.sc24-item2-title dd {
    font-size: 16px;

}

.sc24-item2-lx {
    margin-top: 50px;
    line-height: 32px;
    font-size: 16px;
    letter-spacing: 2px;
}

.sc24-item2-lx span {
    font-weight: bold;
}



.sc24-item1-swp {
    margin-top: 30px;
}

.swp1 .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 15px #24283014;
}


#map {
    height: 350px;
    width: 100%;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0 0 30px 1px #e9e8e8;
}




.ac24-item2-ewm {
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
}

.ac24-item2-ewm div {
    width: 120px;
    margin-right: 40px;
    text-align: center;
}




.sc24-item3 img {
    width: 200px;
}

.sc24-item3-title {
    color: #000;
    display: flex;
    justify-content: flex-start;
}

.sc24-item3-title dt {
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 25px;
}

.sc24-item3-title dd {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bold;
}

.sc24-item3-des {
    text-align: justify;
    margin-top: 50px;
    font-size: 18px;
    line-height: 32px;
}

.sc24-item3-kh {
    margin-top: 50px;
}

.sc24-item3-kh dt {
    color: #000;
    font-weight: bold;
    font-size: 18px
}

.sc24-item3-kh dd {
    font-size: 18px;
    line-height: 32px;
    text-align: justify;
    margin-top: 5px;
}





@media screen and (max-width:780px) {
    .sc24-out {
        padding-top: 40px;
    }

    .sc24 {
        flex-wrap: wrap;
        padding-bottom: 40px;
    }

    .sc24-left {
        width: 100%;
        margin-bottom: 35px;
    }

    .sc24-left span {
        text-align: left;
    }

    .sc24-right {
        width: 100%;
    }
}


.position-out {
    padding: 0 0 30px;
}

@media screen and (max-width:780px) { 
    .position-out {
        margin-top: 20px;
    }
}


/* sc25?????? */
.sc25-out {
    padding-top: 60px;
    background: linear-gradient(#fff, #CFE2FF);
}

.sc25 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc25-item {
    width: 32%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    margin-top: 20px;
}

.sc25-item:nth-child(1) {
    margin-top: 0;
}

.sc25-item:nth-child(2) {
    margin-top: 0;
}

.sc25-item:nth-child(3) {
    margin-top: 0;
}


.sc25-item:hover {
    box-shadow: 5px 5px 15px #e5e1e1;
}

.sc25-item-img {
    height: 110px;
    overflow: hidden;
}

.sc25-item-img-wai {
    background: #fb9337;
    box-sizing: border-box;
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
}

.sc25-item-img-nei {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 5px 5px 15px #b9b8b877;
}

.sc25-item-con {
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: white;
}

.sc25-item-con-des {
    font-size: 12px;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 2;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
    color: #767e89;
    margin-top: 10px;
    text-align: justify;
}

.sc25-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    /* ???????????? */
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
}

.sc25-item-bg a {
    width: 80px;
    line-height: 36px;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;

}

.sc25-item-bg a:nth-child(2) {
    background: #fb9337;
    color: white;
}

.sc25-item-bg a:nth-child(1) {
    background: white;
    box-sizing: border-box;
    border: 1px solid #e9ebec;
    margin-right: 10px;
    /* display: none; */
}

.sc25-item:hover .sc2-item-bg {
    opacity: 1;
}

@media screen and (max-width:680px) {
    .sc25-out {
        padding-top: 40px;
    }

    .sc25 {
        margin-top: 20px;
    }

    .sc25-item {
        margin-bottom: 15px !important;
        width: 49%;
    }

    .sc25-item-img {
        height: 85px;
    }

    .sc25-item-con {
        padding: 10px;
    }
}

/* sc25?????? */


/* sc26?????? */
.sc26 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc26-item {
    width: 48%;
    box-shadow: 5px 5px 15px #24283014;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

.sc26-item:nth-child(1) {
    margin-top: 0;
}

.sc26-item:nth-child(2) {
    margin-top: 0;
}

.sc26-item-img {
    max-height: 200px;
    overflow: hidden;
}

.sc26-item-img img {
    transform: scale(1);
    transition: all 2s;
}

.sc26-item:hover .sc26-item-img img {
    transform: scale(1.05);
}

.sc26-item-con {
    box-sizing: border-box;
    padding: 20px;
}

.sc26-item-con-title {
    font-size: 22px;
    font-weight: bold;
    display: -webkit-box;
    /* ???????????????????????? */
    -webkit-box-orient: vertical;
    /* ?????????????????? */
    -webkit-line-clamp: 1;
    /* ???????????? 2 ??? */
    overflow: hidden;
    /* ?????????????????? */
    text-overflow: ellipsis;
    /* ??????????????????????????? */
}

.sc26-item-con-tags {
    margin-top: 16px;
}

.sc26-item-con-tags span {
    padding: 5px;
    background: #8e9bac;
    font-size: 12px;
    color: white;
}
@media screen and (max-width:680px) {
    .sc26-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* sc26?????? */




/* sc27?????? */
.sc27 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc27-item {
    width: 32%;
    margin-top: 30px;
    box-shadow: 5px 5px 15px #24283014;
    border-radius: 8px;
}

.sc27-item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    background: white;
}

.sc27-item-img img {
    height: 70%;
    width: auto;
}

.sc27-item-con {
    padding: 20px;
    box-sizing: border-box;
    font-size: 18px;
}
@media screen and (max-width:680px) {
    .sc27-item {
        width: 48%;
    }
    .sc27-item-con {
        text-align: center;
    }
}
/* sc27?????? */



/* sc28?????? */
.sc28-out {
    background: url(../images/bg5.jpg) no-repeat center;
    background-size: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc28-con {
    width: 60%;
}


/* sc28?????? */



/* sc29?????? */
.sc29 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.sc29-item {
    width: 26%;
    background: white;
    box-shadow: 5px 5px 15px #24283014;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 2%;
    position: relative;
}

.sc29-item-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sc29-item-ico i{
    font-size: 50px;
}
.sc29-item-des {
    text-align: center; 
}
.sc29-item-des dt{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sc29-item-des dd{
    color: #5e6d82;
    line-height: 24px;
    font-size: 14px;
}
.sc29-item span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #01DCA1;
    right: 20px;
    top: 20px;
}

@media screen and (max-width:680px) {
    .sc29-out {
        margin-top: 0;
    }
    .sc29-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* sc29?????? */

/* sc30 */
.sc30-out {
    margin-top: 80px;
}
.sc30 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.sc30-item {
    width: 32%;
    box-sizing: border-box;
    box-shadow: 5px 5px 15px #24283014;
    border-radius: 8px;
    padding: 25px 0 25px 15px;
    background: url(../images/sc30bg.png) no-repeat 50%;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;

}
.sc30-item:nth-child(1) {
    margin-top: 0;
}
.sc30-item:nth-child(2) {
    margin-top: 0;
}
.sc30-item:nth-child(3) {
    margin-top: 0;
}
.sc30-item-con {
    width: 70%;
}
.sc30-item-con-title {
    color: #141e31;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}
.sc30-item-con-des {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #525967;;
}
.sc30-item-img {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc30-item-ico {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sc30-item-ico i {
    font-size: 45px;
}
@media screen and (max-width:680px) {
    .sc30-out {
        margin-top: 40px;
    }
    .sc30-item {
        width: 100%;
        margin-top: 10px;
    
    }

}
/* sc30 */

/* sc31 */
.sc31-out {
    margin-top: 80px;
}
.sc31 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sc31-item {
    width: 49%;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(90deg, #f5f5fd 100%, #e9f4ff 0);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 5px 5px 15px #24283014;
    flex-wrap: wrap;
}
.sc31-item-con {
    width: 60%;
}
.sc31-item-con-title dt{
    color: #737EFE;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}
.sc31-item-con-title dd {
    font-size: 12px;
    color: #b8b8b8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 6px;
}
.sc31-item-con-des {
    margin-top: 15px;
}
.sc31-item-con-des li {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.sc31-item-con-des li i {
    width: 8%;
    font-size: 16px;
}
.sc31-item-con-des li span {
    font-size: 13px;
    color: #525967;
    text-align: justify;
    width: 92%;
}

.sc31-item-img {
    width: 35%;
    transition: all 0.9s;
    transform: translateY(0);

}
.sc31-item:hover .sc31-item-img{
    transform: translateY(-60px);
}
@media screen and (max-width:680px) {
    .sc31-out {
        margin-top: 40px;
    }
    .sc31-item {
        width: 100%;
        margin-bottom: 20px;
        justify-content: center;
        align-items: center;
    }
    .sc31-item-con-title {
        text-align: center;
    }
    .sc31-item-con {
        width: 100%;
    }
    .sc31-item-img {
        width: 70%;
        margin-top: 20px;
    }
}
/* sc31 */

/* sc32?????? */
.sc32-out {
   margin-top: 80px;
}

.sc32 {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sc32-item {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #e9ebec88;
    box-sizing: border-box;
    padding: 0 30px;
}

.sc32-item:nth-child(1) {
    border-left: none
}

.sc32-item-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: red;
}

.sc32-item-img i {
    font-size: 30px;
    color: white;
}

.sc32-item-con {
    text-align: center;
}

.sc32-item-con-title {
    font-size: 20px;
    line-height: 28px;
    color: #0f1335;
    margin-top: 15px;
}

.sc32-item-con-des {
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
    color: #525967;
}
@media screen and (max-width:680px) {
    .sc32-out {
        margin-top: 40px;
    }
    .sc32-item {
        width: 48%;
    }
    .sc32-item {
        padding: 0 15px;
    }
    .sc32-item:nth-child(1) {
        margin-bottom: 20px;
    }
    .sc32-item:nth-child(2) {
        margin-bottom: 20px;
    }
    .sc32-item-con-des {
        margin-top: 5px;
        font-size: 12px;
    }
}
/* sc32?????? */

/* sc33 */
.sc33-out {
    margin-top: 80px;
    margin-bottom: 80px;
}
.sc33 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.sc33-item {
    width: 15%;
    height: 80px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

.sc33-item img {
    width: 90%;
}
@media screen and (max-width:680px) {
    .sc33-out {
        margin-top: 40px;
    }
    .sc33-item {
        height: 36px;
    }
}
/* sc33 */



.aaaaa {
    color: #70C3FF;
    color: #FFECDC;
    color: #2B41DB;
    color: #01DCA1;
    color: #4FE8CD;
    color: #FEFCD0;
    color: #BFD4FF;
    color: #14EF87;
    color: #70C3FF;
    color: #2B41DB;
    color: #01DCA1;
    color: #4FE8CD;
    color: #BFD4FF;
    color: #14EF87;
    color: #82B219;
    color: #9A7CFE;
    color: #DF5EEF;
    color: #737EFE;
    color: #F6685B;
    color: #86B41B;

}