/* 格式化样式 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea,
input {
    margin: 0;
    padding: 0;
}

div,
section,
article {
    box-sizing: border-box;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

body {
    font-size: 14px;
    /* line-height: 1.5; */
    font-family: 'Microsoft Yahei', 'simsun', 'arial', 'tahoma';
    color: var(--primary-color);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-size: 100%;
}

button,
input,
select,
textarea {
    font-size: 100%;
    border: none;
}

fieldset,
img {
    border: 0;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    background: none
}

ul,
ol {
    list-style: none;
}

:focus {
    outline: none;
}


::-webkit-scrollbar {
    width: 2px;
    height: 2px
}

::-webkit-scrollbar-track {
    background: #f6f6f6;
    border-radius: 2px
}

::-webkit-scrollbar-thumb {
    background: #DEDEDE;
    border-radius: 2px
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa
}

::-webkit-scrollbar-corner {
    background: #f6f6f6
}

/* 浮动 */
.clearfix {
    clear: both;
    content: "";
    display: block;
    overflow: hidden
}

.clear {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

@font-face {
    font-family: 'Songti';
    src: url('../font/STSongti-SC-Black.woff2') format('woff2');
}

.font-songti {
    font-family: 'Songti';
}

body {
    font-family: 'MyCustomFont', sans-serif;
}

/* 字体大小 */
.f12 {
    font-size: 12px
}

.f13 {
    font-size: 13px
}

.f14 {
    font-size: 14px
}

.f16 {
    font-size: 16px
}

.f18 {
    font-size: 18px
}

.f20 {
    font-size: 20px
}

.f28 {
    font-size: 28px
}

.f42 {
    font-size: 42px
}

/* 颜色 */
:root {
    --primary-color: #333;
    --secondary-color: #666;
    --basics-color: #fff;
    --active-color: #3A886D;
}

/* 弹性布局 */
.flex {
    display: flex;
}

.flex1 {
    flex: 1;
}

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

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

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

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

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

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

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

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

.none {
    display: none;
}

/*  */
.container {
    padding: 0 15px;
    margin: 0 auto;
    width: 1200px;
}


/* 公共头部 */
.header {
    position: relative;
    width: 100%;
    height: max-content;
    box-sizing: border-box;
}

.header-bg {
    width: 100%;
    height: auto;
}

.header .container {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 0 24px;
    margin: 0 auto;
    height: 64px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0px 4px 16px 3px rgba(40, 93, 74, 0.11);
    border-radius: 32px;
}

.header .container .logo {
    width: 134px;
    height: 34px;
}

.header .container .nav {
    align-items: center;
    /* width: calc(100% - 134px - 48px); */
    line-height: 64px;
}

.header .container .nav .nav-item {
    position: relative;
    margin-right: 28px;
    box-sizing: border-box;
}

.header .container .nav .nav-tel {
    margin-left: auto;
    margin-right: 24px;
    width: 128px;
    height: 38px;
    font-weight: bold;
    font-size: 14px;
    color: #3A886D;
    background: rgba(58, 136, 109, 0.08);
    border-radius: 4px;
}

.header .container .nav .nav-tel img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.header .container .nav .nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    min-width: 64px;
    height: 38px;
    font-weight: 400;
    color: #FFFFFF;
    background: #3A886D;
    border-radius: 8px;
    box-sizing: border-box;
}

.header .container .nav .nav-button+.nav-button {
    margin-left: 24px;
}

.header .container .nav .plain {
    background: #fff;
    color: #3A886D;
    border: 1px solid #3A886D;
}

.header .container .nav .active,
.header .container .nav .nav-item:hover {
    font-weight: bold;
    color: var(--active-color);
}

.header .container .nav .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #3A886D;
    border-radius: 2px;
}

/* 公共底部 */
.footer {
    padding: 60px 0 68px;
    width: 100%;
    background: #3A886D;
}

.footer-main {}

.footer-main .logo {
    width: 190px;
    height: 48px;
}

.footer-main .info {
    margin-top: 60px;

}

.footer-main .info p {
    margin-bottom: 16px;
    font-weight: 400;
    color: var(--basics-color);
    line-height: 20px;
}

.footer-main .info p a {
    color: #fff;
}

.footer-social {}

.footer-social .item+.item {
    margin-left: 40px;
}

.footer-social .item img {
    width: 120px;
    height: 120px;
}

.footer-social .item p {
    margin-top: 16px;
    font-weight: 400;
    color: var(--basics-color);
    line-height: 20px;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .h5-none {
        display: none !important;
    }

    .f14 {
        font-size: 12px !important;
    }

    .f16 {
        font-size: 14px !important;
    }

    .f18 {
        font-size: 16px !important;
    }

    .f20 {
        font-size: 16px !important;
    }

    .f28 {
        font-size: 18px !important;
    }

    .f42 {
        font-size: 24px !important;
    }

    .footer {
        padding: 30px 0 !important;
    }

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

    .footer-main .info {
        margin-top: 10px !important;
    }

    .container {
        width: 100% !important;
    }

    .header {
        padding-top: 64px;
    }

    .header .container {
        position: fixed;
        z-index: 99999;
        top: 0;
        padding: 0 12px;
        border-radius: 0;
    }

    .header .container .nav {
        line-height: 40px !important;
    }

    .header .container .nav .active {
        background: rgba(58, 136, 109, 0.08);
    }

    .header .container .nav .active::after {
        display: none !important;
    }

    .header .container .nav .nav-item {
        display: none;
    }

    .header .container .nav .nav-tel {
        display: none;
    }

    .header .container .nav .nav-button {
        padding: 0 8px;
        min-width: auto;
        height: 34px;
    }

    .header .container .nav .nav-button+.nav-button {
        margin-left: 12px;
    }

    .h5-menu {
        margin-left: 12px;
        width: 22px;
        height: 22px;
        display: block !important;
    }

    .h5-nav {
        position: fixed;
        left: 0;
        z-index: 99;
        top: 64px;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5);
    }

    .header .container .h5-nav .nav-item {
        display: block !important;
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
        background: #fff;
    }

    .header .container .h5-nav .nav-tel {
        display: flex !important;
        width: 100%;
        height: 40px;
        text-align: center;
        margin-right: 0 !important;
        background: #fff !important;
        border-radius: 0 !important;
    }

    .homepage-product {
        padding: 30px 0 0 !important;
    }

    .homepage-product .product-main .tab {
        margin-top: 20px !important;
        letter-spacing: -0.2px;
    }

    .homepage-product .product-main .product-item {
        flex-wrap: wrap;
    }

    .homepage-product .product-main .tab .tab-item {
        padding-bottom: 18px !important;
    }

    .homepage-product .product-main .product-item .info {
        margin-top: 20px !important;
        width: 100%;
    }

    .homepage-product .product-main .product-item .info .text {
        margin-top: 10px !important;
    }

    .homepage-product .product-main .product-item .info .button {
        padding: 0 8px;
        margin-top: 10px !important;
        width: max-content !important;
        height: 34px;
    }

    .homepage-product .product-main .product-item .picture {
        margin-top: 0 !important;
        width: 100% !important;
        height: auto !important;
    }

    .homepage-aboutUs {
        padding: 30px 0 !important;
    }

    .homepage-aboutUs .aboutUs-main {
        flex-wrap: wrap;
    }

    .homepage-aboutUs .aboutUs-main .info {
        width: 100% !important;
    }

    .homepage-aboutUs .aboutUs-main .info .text {
        margin-top: 20px !important;
    }

    .homepage-aboutUs .aboutUs-main .info .statistics-data {
        margin-top: 10px !important;
        width: 100% !important;
    }

    .homepage-curriculumIdea {
        height: max-content !important;
        padding: 30px 0;
    }

    .homepage-curriculumIdea .curriculumIdea-main .text {
        margin-top: 20px !important;
    }

    .homepage-joiningCase {
        padding: 30px 0 !important;
    }

    .homepage-joiningCase .joiningCase-main {
        margin-top: 20px !important;
        flex-wrap: wrap;
    }

    .homepage-joiningCase .joiningCase-main .map {
        width: 100% !important;
        height: auto !important;
    }

    .homepage-joiningCase .joiningCase-main .org-list {
        padding-right: 0 !important;
        width: 100%;
        height: max-content !important;
    }

    .homepage-joiningCase .joiningCase-main .org-list li {
        padding: 10px 0 !important;
        text-align: center;
    }

    .homepage-joiningCase .joiningCase-main .org-list li .address {
        margin-top: 8px !important;
    }

    .homepage-courseEffect {
        padding: 30px 0 !important;

    }

    .courseEffect-main {
        flex-wrap: wrap;
        margin-top: 20px !important;
    }

    .courseEffect-main .user-list {
        display: flex;
        width: 100% !important;
    }

    .courseEffect-main .user-list li {
        flex-direction: column;
        flex: 1;
        padding: 12px !important;
    }

    .courseEffect-main .user-list li .portrait {
        margin: 0 auto 12px !important;
    }

    .courseEffect-main .evaluate-list {
        margin-top: 20px;
        width: 100% !important;
    }

    .courseEffect-main .evaluate-list li .icon {
        margin-top: 14px !important;
    }

    .courseEffect-main .evaluate-list li .evaluate {
        margin-top: 4px !important;
    }



    .page-aboutUs .aboutUs-main .tab {
        height: 60px !important;
        line-height: 60px !important;
    }

    .aboutUs-list {
        padding: 30px 0 !important;
    }

    .page-aboutUs .aboutUs-main .aboutUs-list .aboutUs-item .introduce {
        flex-wrap: wrap;
    }

    .page-aboutUs .aboutUs-main .aboutUs-list .aboutUs-item .introduce:nth-child(2) {
        flex-direction: column-reverse;
    }

    .page-aboutUs .aboutUs-main .aboutUs-list .aboutUs-item .introduce .info {
        width: 100% !important;
    }

    .page-aboutUs .aboutUs-main .aboutUs-list .aboutUs-item .introduce .banner {
        width: 100% !important;
        height: auto !important;
    }

    .page-aboutUs .aboutUs-main .aboutUs-list .aboutUs-item .cards {
        flex-direction: column;
    }

    .page-aboutUs .aboutUs-main .aboutUs-list .aboutUs-item .cards .card {
        flex-shrink: 0;
        margin-right: 0 !important;
        margin-bottom: 20px;
        width: 100%;
    }

    .page-courseSystem {
        padding: 30px 0 !important;
    }

    .page-courseSystem .courseSystem-main .item {
        flex-direction: column;
    }

    .page-courseSystem .courseSystem-main .item:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .page-courseSystem .courseSystem-main .item .info {
        width: 100% !important;
    }

    .page-courseSystem .courseSystem-main .item .banner {
        margin-top: 16px;
        width: 100% !important;
        height: auto !important;
    }

    .page-smartProduct .smartProduct-main .tab .tab-item {
        padding: 0 10px;
        height: 70px !important;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp {
        padding-top: 30px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp .cards {
        flex-direction: column;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp .cards .card {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp .item .item-container {
        padding: 30px 15px;
        flex-direction: column;
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp .item .info {
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp .item .info .title {
        padding-bottom: 6px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp .item .info .text {
        margin-top: 16px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-erp .item .banner {
        width: 100%;
        height: auto;
    }

    .page-smartProduct .smartProduct-list .smartProduct-ycx .banner-container {
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-ycx .ycx-banner {
        width: 100%;
        height: auto;
    }

    .page-smartProduct .smartProduct-list .smartProduct-ycx .item .item-container {
        padding: 30px 15px;
        flex-direction: column !important;
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-ycx .item .info {
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-ycx .item .info .title {
        padding-bottom: 6px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-ycx .item .info .text {
        margin-top: 16px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-ycx .item .banner {
        margin-top: 20px;
        width: 100% !important;
        height: auto !important;
    }



    .page-smartProduct .smartProduct-list .smartProduct-robot .banner-container {
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-robot .robot-banner {
        padding: 30px 0;
        width: 100%;
        height: auto;
    }

    .page-smartProduct .smartProduct-list .smartProduct-robot .item .item-container {
        padding: 30px 15px;
        flex-direction: column;
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-robot .item:nth-child(2n + 1) .item-container {
        flex-direction: column !important;
    }

    .page-smartProduct .smartProduct-list .smartProduct-robot .item .info {
        width: 100%;
    }

    .page-smartProduct .smartProduct-list .smartProduct-robot .item .info .title {
        padding-bottom: 6px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-robot .item .info .text {
        margin-top: 16px;
    }

    .page-smartProduct .smartProduct-list .smartProduct-robot .item .banner {
        margin-top: 20px;
        width: 100% !important;
        height: auto !important;
    }

    .page-joiningCase {
        padding: 30px 0 !important;
    }

    .page-joiningCase .joiningCase-main .org-list li {
        margin-top: 20px !important;
        margin-right: 20px !important;
        width: calc(50% - 10px) !important;
        height: auto;
    }

    .page-joiningCase .joiningCase-main .org-list li:nth-child(2n) {
        margin-right: 0 !important;
    }

    .page-joiningCase .joiningCase-main .org-list li:nth-child(-n + 2) {
        margin-top: 0 !important;
    }

    .page-joiningCase .joiningCase-main .org-list li img {
        width: 100%;
        height: auto;
    }

    .page-contactUs {
        padding: 30px 0 !important;
    }

    .page-contactUs .contactUs-main {
        flex-direction: column-reverse;
    }

    .page-contactUs .contactUs-main .info {
        margin-top: 16px;
        width: 100%;
    }

    .page-contactUs .contactUs-main .info p {
        margin-bottom: 12px;
    }

    .page-contactUs .contactUs-main .map {
        width: 100%;
        height: 300px;
    }

    .contactUs-main {
        flex-direction: column-reverse;
    }

    .contactUs-main .info {
        margin-top: 16px;
        width: 100%;
    }

    .contactUs-main .info p {
        margin-bottom: 12px;
    }

    .contactUs-main .map {
        width: 100% !important;
        height: 300px !important;
    }

    .page-credential {
        
    }

    .page-credential .credential-result {
        flex-direction: column;
    }

    .page-credential .credential-result .info {
        width: 100%;
    }

    .page-credential .credential-picture-box{
        pointer-events: none;
    }
    
    .page-credential .credential-picture-box .credential-picture {
        margin-top: 16px;
        width: 90% !important;
        height: auto;
    }

    .page-credential .magnify {
        display: none;
    }
}


@media screen and (min-width: 1200px) {
    .none {
        display: none !important;
    }

    .pc-none {
        display: none !important;
    }
}