@charset "utf-8";
html {
    --theme: #85bf44;
    --subtint: #d02d25;
    --theme2: #fff;
    --background: #fff;
    --main: #303030;
    --routine: #606266;
    --minor: #909399;
    --seat: #c0c4cc;
    --classA: #f6f6f6;
    --classB: rgb(3 3 3 / 50%);
    --classC: #f4f4f4;
    --radius-inner: 4px;
    --radius-outer: 8px;
    --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    --box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    letter-spacing: 0.02em;
}
a {
    text-decoration: none;
}
body {
    margin: 0;
    padding: 0;
    font: 14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: var(--background);
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, p, pre, code, form, fieldset, legend, input, button, textarea, blockquote {
    margin: 0;
    padding: 0;
}
input{
    outline: 0;
}

textarea {
    font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial;
}

img {
    display: block;
    border: 0;
    max-width: 100%;
}

a{
    text-decoration : none;
}
a:hover{
    text-decoration : none;
    color: var(--theme);
}
a:visited{
    text-decoration : none;
}
a:active{
    text-decoration : none;
}
a:link{
    text-decoration : none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E2E2E2;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--theme) ;
}
::selection {
  background-color: var(--theme) ;
  color: var(--theme2);
}
::-moz-selection {
  background-color: var(--theme) ;
  color: var(--theme2);
}
::-webkit-selection {
  background-color: var(--theme) ;
  color: var(--theme2);
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
    clear: both;
}

.w1200 {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
}

.fr{
    float: right;
}
.fl{
    float: left;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex_d-c {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex_wrap {
    -webkit-box-pack: wrap;
    -ms-flex-pack: wrap;
    -webkit-justify-content: wrap;
    flex-wrap: wrap;
}

.flex_j-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex_j-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_j-s-b {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex_a-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.flex_a-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex_a-b {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ellipsis-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.show {
    display: block;
}

.pc_block {
    display: block;
}

.pc_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.pc_table {
    display: table;
}

.pc_table_cell {
    display: table-cell;
}

.m_block,.m_flex,.m_table,.m_table_cell {
    display: none;
}

.transi05 {
    transition: all 0.5s;
}

.hide {
    display: none;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #131a27;
    box-shadow: var(--box-shadow);
    transition: top 0.35s;
}

.header .head {}

.header .logo img {
    height: 75px;
}

.header .total_nav>li {
    float: left;
    position: relative;
}

.header .total_nav>li>a {
    position: relative;
    height: 88px;
    line-height: 88px;
    font-size: 15px;
    padding: 0 8px;
    margin-right: 15px;
    transition: color 0.35s;
    white-space: nowrap;
    color: var(--seat);
    display: block;
}

.header .total_nav>li>a.lower_level {
    display: none;
}

.header .total_nav>li:hover>a, .header .total_nav>li.active>a {
    color: var(--theme);
}

.header .total_nav>li>a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 6px 6px 0 0;
    opacity: 0;
    transition: all 0.5s;
    transform: scaleX(0.25);
    background-color: var(--theme);
}

.header .total_nav>li.active>a:after {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.header .total_nav .nav_list {
    display: none;
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
}

.header .total_nav .nav_list li {
    display: inline-block;
    width: auto;
    min-width: 100px;
    background: rgb(0 0 0 / 70%);
    line-height: 40px;
    padding: 0px 10px;
    border-bottom: 1px solid #333;
}

.header .total_nav .nav_list li a {
    display: block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    transition: all 0.4s;
}

.banner img {
    max-width: 100%;
}

.banner .swiper-pagination-bullet {
    width: 20px;
    border-radius: var(--radius-outer);
    background: var(--seat);
    opacity: 0.8;
}

.banner .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    background: var(--theme);
}

@-webkit-keyframes img_change {
    0% {
        -webkit-transform:scale(1)
    }
    50% {
        -webkit-transform:scale(1.2)
    }
    100% {
        -webkit-transform:scale(1)
    }
}
@-moz-keyframes img_change {
    0% {
        -moz-transform:scale(1)
    }
    50% {
        -moz-transform:scale(1.2)
    }
    100% {
        -moz-transform:scale(1)
    }
}
@-o-keyframes img_change {
    0% {
        -o-transform:scale(1)
    }
    50% {
        -o-transform:scale(1.2)
    }
    100% {
        -o-transform:scale(1)
    }
}
@keyframes img_change {
    0% {
        transform:scale(1)
    }
    50% {
        transform:scale(1.2)
    }
    100% {
        transform:scale(1)
    }
}

@-webkit-keyframes p_change {
    0% {
        -webkit-transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(15px);
    }
    100% {
        -webkit-transform:translateX(0);
    }
}
@-moz-keyframes p_change {
    0% {
        -moz-transform:translateX(0);
    }
    50% {
        -moz-transform:translateX(15px);
    }
    100% {
        -moz-transform:translateX(0);
    }
}
@-o-keyframes p_change {
    0% {
        -o-transform:translateX(0);
    }
    50% {
        -o-transform:translateX(15px);
    }
    100% {
        -o-transform:translateX(0);
    }
}
@keyframes p_change {
    0% {
        transform:translateX(0);
    }
    50% {
        transform:translateX(15px);
    }
    100% {
        transform:translateX(0);
    }
}


.side_kf {
    position: fixed;
    right: 1%;
    bottom: 100px;
    font-size: 24px;
    z-index: 1040;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-inner);

}
.side_kf .side_item {
    border: 1px solid #ebebeb;
    height: 50px;
    position: relative;
    width: 50px;
    border-radius: 100%;
    text-align: center;
    margin-top: 4px;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgb(193 193 193 / 40%);
}
.side_kf .side_item img {
    margin: 0 auto;
    display: block;
    padding: 8px;
    width: 100%;
}
.side_item:hover .si_hover_tel {
    display: block;
}
.side_item:hover .si_hover_ewm {
    display: block;
}
.si_hover_tel {
    position: absolute;
    top: 8px;
    right: 65px;
    background: var(--theme);
    color: #ffffff;
    border-radius: var(--radius-inner);
    padding: 0 10px;
    width: 195px;
    line-height: 36px;
    cursor: pointer;
    display: none;
}
.si_hover_tel:after,.si_hover_tel:before {
    position: absolute;
    bottom: 10px;
    right: -9px;
    content: '';
    display: inline-block;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid var(--theme);
}
.si_hover_ewm {
    position: absolute;
    top: -130px;
    right: 65px;
    width: 150px;
    background: var(--theme);
    padding: 5px;
    border-radius: var(--radius-inner);
    cursor: pointer;
    display: none;
}
.si_hover_ewm p {
    font-size: 14px;
    text-align: center;
    color: #fafafc;
    padding-bottom: 3px;
}
.si_hover_ewm img {
    width: 100%;
}
.si_hover_ewm:after,.si_hover_ewm:before {
    position: absolute;
    bottom: 10px;
    right: -9px;
    content: '';
    display: inline-block;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid var(--theme);
}

.goto {
    margin: 0 auto;
    padding: 8px;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 1%;
    bottom: 46px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 100%;
    text-align: center;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgb(193 193 193 / 40%);
}

.banner {
    position: relative;
    padding-bottom: 80px;
    background: var(--background);
}

.banner .swiper-slide {}

.banner .swiper-slide .item_text {
    position: absolute;
    height: 200px;
    width: 100%;
    top: 50%;
    margin-top: -100px;
}

.banner .swiper-slide .item_text h3 {
    position: relative;
    font-weight: 300;
    padding: 5px 0;
    border-bottom: solid 1px var(--theme);
    margin-bottom: 20px;
    display: inline-block;
    color: #fff;
    font-size: 34px;
    transition: all 0.8s;
    opacity: 0;
}

.banner .swiper-slide .item_text h3:after {
    content: " ";
    display: block;
    background:  var(--theme);
    width: 100%;
    height: 3px;
    bottom: -8px;
    left: 0;
    position: absolute;
}


.banner .swiper-slide:nth-child(3n+1) .item_text h3 {
    transform: translateY(-50px);
}

.banner .swiper-slide:nth-child(3n+2) .item_text h3 {
    transform: translateX(-50px);
}

.banner .swiper-slide:nth-child(3n) .item_text h3 {
    transform: rotateY(45deg);
}

.banner .swiper-slide:nth-child(3n+1) .item_text p {
    transform: rotateX(90deg);
}

.banner .swiper-slide:nth-child(3n+2) .item_text p {
    transform: rotateY(-45deg);
}

.banner .swiper-slide:nth-child(3n) .item_text p {
    transform: translateY(-50px);
}

.banner .swiper-slide.swiper-slide-active .item_text h3 {
    transform: translateY(0px) translateX(0px)  rotateY(0deg) rotateX(0deg);
    opacity: 1;
}

.banner .swiper-slide.swiper-slide-active .item_text p {
    transform: translateY(0px) translateX(0px)  rotateY(0deg) rotateX(0deg);
    opacity: 1;
}

.banner .bannerradian {
    position: absolute;
    width: 100%;
    z-index: 5;
    height: auto;
    bottom: 40px;
    background: url(bannerradian_bd.png) no-repeat top center;
    background-size: 1920px auto;
    padding-top: 30px;
    text-align: center;
}

.banner .bannerradian .name {
    margin: 0px;
    font-size: 38px;
    font-weight: 400;
    color: var(--theme);
}

.banner .bannerradian .info {
    font-size: 23px;
    color: var(--main);
    font-weight: 200;
    line-height: 2;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 80px;
}

.section {
    padding: 60px 0;
}

.section_name {
    position: relative;
    padding-bottom: 30px;
    text-align: center;
}

.section_name * {
    transition: all 0.5s;
}

.section_name .cn {
    font-size: 25px;
    color: var(--main);
}

.section_name .en {
    font-size: 16px;
    color: var(--minor);
    margin: 10px 0 15px;
}

.about .section_name .cn {
    font-size: 34px;
    color: var(--main);
}

.about .section_name .en {
    font-size: 26px;
    margin: 15px 0;
}

.about .section_name p {
    font-size: 22px;
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

.about_list {}

.about_list .item {}

.about_list .item .item_svg {
    opacity: 1;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    border: 2px solid var(--theme);
    padding: 45px;
    position: relative;
    transition: all 0.5s;
}

.about_list .item .item_svg:before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    background: var(--theme);
    top: 50%;
    left: 50%;
    margin-top: -65px;
    margin-left: -65px;
    opacity: 0.2;
}

.about_list .item .item_svg i.outer-ring {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    background: var(--theme);
    top: 50%;
    left: 50%;
    margin-top: -65px;
    margin-left: -65px;
    opacity: 0;
}

.about_list .item .item_svg i.inner-ring {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    background: var(--theme);
    top: 50%;
    left: 50%;
    margin-top: -65px;
    margin-left: -65px;
    opacity: 0;
}

.about_list .item .item_svg svg.icon {
    fill: var(--theme);
    width: 100%;
    position: relative;
    transition: all 0.5s;
}

.about_list .item p {
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: var(--routine);
    margin: 10px 0;
    transition: all 0.5s;
}

.about_list .item .item_svg:hover {

}

.about_list .item .item_svg:hover i.outer-ring {
    opacity: 0.2;
    -webkit-animation: outerripple 2s linear infinite 0.5s;
    animation: outerripple 2s linear infinite 0.5s;
}

.about_list .item .item_svg:hover i.inner-ring {
    opacity: 0.2;
    -webkit-animation: innerripple 2s linear infinite 0.5s;
    animation: innerripple 2s linear infinite 0.5s;
}

.about_list .item .item_svg:hover svg.icon {fill: var(--theme2);}

.about_list .item p:hover {color: var(--theme);}

@keyframes outerripple {
    0% {
      box-shadow: 0 0 0 0px var(--theme);
    }
    50% {
      box-shadow: 0 0 0 10px var(--theme);
      background-color: var(--theme);
    }
    100% {
      box-shadow: 0 0 0 20px var(--theme);
      background-color: var(--theme);
      opacity: 0.0;
    }
}
@-webkit-keyframes outerripple {
    0% {
      box-shadow: 0 0 0 0px var(--theme);
    }
    50% {
      box-shadow: 0 0 0 10px var(--theme);
      background-color: var(--theme);
    }
    100% {
      box-shadow: 0 0 0 20px var(--theme);
      background-color: var(--theme);
      opacity: 0.0;
    }
}
@keyframes innerripple {
    0% {
      box-shadow: 0 0 0 0 var(--theme);
    }
    50% {
      box-shadow: 0 0 0 5px var(--theme);
    }
    100% {
      box-shadow: 0 0 0 10px var(--theme);
      opacity: 0.0;
    }
}
@-webkit-keyframes innerripple {
    0% {
      box-shadow: 0 0 0 0 var(--theme);
    }
    50% {
      box-shadow: 0 0 0 5px var(--theme);
    }
    100% {
      box-shadow: 0 0 0 10px var(--theme);
      opacity: 0.0;
    }
}

.course {
    background: url(course_bd.jpg) top center no-repeat;
    background-size: 100%;
    background-color: #dbdee5;
}

.course_list {}

.course_list .swiper-container {
    padding: 45px 0;
}

.course_list .swiper-slide {
    width: 33.33%;
    transition: all 0.5s;
    transform: scale(1);
}

.course_list .swiper-slide-active,.course_list .swiper-slide-duplicate-active{
    transform: scale(1.2);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.course_list .swiper-slide img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

.course_list .swiper-slide .item_text {
    background: rgb(255, 255, 255);
    padding: 12.5px 25px 25px;
}

.course_list .swiper-slide .item_text h3 {
    color: var(--main);
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 400;
    text-align: center;
}

.course_list .swiper-slide .item_text p {
    font-size: 12px;
    line-height: 1.8;
    height: 44px;
    margin-bottom: 20px;
}

.course_list .swiper-slide .item_text a {
    font-size: 12px;
    text-align: center;
    display: block;
    color: var(--theme);
}


.product {}

.product .section_name {
    width: 90%;
    margin: 0 auto;
    text-align: left;
}

.product .section_name .classify {
    position: absolute;
    right: 0;
    top: 0;
}

.product .section_name .classify a {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    padding: 0 20px;
    color: var(--minor);
}

.product .section_name .classify .on, .product .section_name .classify a:hover {
    color: var(--theme2);
    background: var(--theme);
}

.product_list {}

.product_list .swiper-button-next,.product_list .swiper-button-prev {
    color: var(--theme2);
    background: var(--theme);
    padding: 25px;
}

.product_list .swiper-button-next:after, .product_list .swiper-button-prev:after {
    font-size: 20px;
}

.product_list .swiper-slide {
    width: 25%;
}

.product_list .swiper-slide img {
    height: 296px;
    width: 100%;
    object-fit: cover;
}

.product_list .swiper-slide .item_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    opacity: 0;
    transition: all 0.5s;
    text-align: center;
    padding: 0 40px;
}

.product_list .swiper-slide .item_text .num {
    color: var(--theme2);
    transition: all .4s;
    transition-delay: 0s;
    margin-top: 10px;
    font-size: 52px;
    display: block;
}

.product_list .swiper-slide .item_text i {
    width: 1px;
    height: 36px;
    background: rgb(255, 255, 255);
    margin: 12px auto 16px;
    display: block;
}

.product_list .swiper-slide .item_text h3 {
    font-size: 16px;
    color: rgb(255, 255, 255);
    transition: all 0.4s;
    margin-top: 20px;
    opacity: 0.6;
}

.product_list .swiper-slide .item_text p {
    color: var(--theme2);
    font-size: 14px;
    line-height: 26px;
    transition: all 0.4s;
    margin-top: 30px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.product_list .swiper-slide .item_text a {
    border: 1px solid var(--theme2);
    width: 100px;
    height: 26px;
    line-height: 26px;
    display: inline-block;
    text-align: center;
    position: relative;
    transition: all 0.2s;
    margin: 0px auto;
    color: var(--theme2);
}

.product_list .swiper-slide:hover .item_text {
    opacity: 1;
}

.product_list .swiper-slide:hover .item_text .num {
    font-size: 32px;
    margin-top: 40px;
}

.product_list .swiper-slide:hover .item_text i {}

.product_list .swiper-slide:hover .item_text h3 {
    margin-top: 4px;
    opacity: 1;
}

.product_list .swiper-slide:hover .item_text p {
    margin-top: 15px;
    opacity: 1;
}

.product_list .swiper-slide:hover .item_text a {
    background-color: var(--theme2);
    color: var(--theme);
}

.teacher {
    background: var(--classA);
}

.teacher .section_name {
    text-align: left;
}

.teacher_list {}

.teacher_list .item {
    width: 23.5%;
}

.teacher_list .item .item_img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.teacher_list .item .item_img * {
    transition: all 0.5s;
}

.teacher_list .item .item_img img {
    width: 100%;
}

.teacher_list .item .item_img .item_span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: table;
    background: rgb(3 3 3 / 50%);
    opacity: 0;
}

.teacher_list .item .item_img:hover .item_span {
    opacity: 1;
}

.teacher_list .item .item_img .item_span span {
    position: relative;
    padding: 30px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: var(--theme);
    font-size: 17px;
}

.teacher_list .item .item_img .item_span:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--theme);
    transition: all 0.8s ease-out;
    transform: scale(0.66) rotate(-20deg);
}

.teacher_list .item .item_img:hover .item_span:before {
    transition: all 0.3s ease-out;
    transform: scale(1) rotate(0);
}

.teacher_list .item .item_text {
    text-align: center;
    background: var(--theme);
    display: block;
    padding: 10px;
}

.teacher_list .item .item_text h3 {
    color: var(--theme2);
    padding-bottom: 10px;
}

.teacher_list .item .item_text p {
    color: var(--theme2);
    font-size: 14px;
    margin-bottom: 15px;
}

.student {}


.student_list {
    -webkit-box-pack: wrap;
    -ms-flex-pack: wrap;
    -webkit-justify-content: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.student_list .item {
    width: 23.5%;
    border: 1px solid var(--seat);
}

.student_list .item .item_img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.student_list .item .item_img img {
    width: 100%;
    transition: all 0.5s;
}

.student_list .item .item_img p {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 8px 12px;
    background: var(--theme);
    text-align: center;
    color: var(--theme2);
    font-size: 12px;
}

.student_list .item .item_img p span {
    display: block;
    font-size: 38px;
}

.student_list .item .item_text {
    padding: 25px 20px 20px;
}

.student_list .item .item_text h3 {
    color: var(--main);
    font-size: 16px;
    transition: all 0.5s;
}

.student_list .item .item_text p {
    color: var(--minor);
    font-size: 15px;
    margin: 12px 0px 20px;
    height: 3em;
    line-height: 1.5;
}

.student_list .item .item_img:hover img {
    transform: scale(1.1);
}

.student_list .item .item_text h3:hover {
    color: var(--theme);
}

.accepted {
    background: url(accepted_bd.jpg) top center no-repeat;
    background-size: 100%;
    background-color: #8cb059;
}

.accepted .section_name {
    text-align: left;
}

.accepted .section_name .cn {
    color: var(--theme2);
}

.accepted .section_name .en {
    color: var(--classA);
}

.accepted_list {}

.accepted_list .swiper-button-next, .accepted_list .swiper-button-prev {
    background: var(--theme);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 30px;
    right: 0;
    left: auto;
}

.accepted_list .swiper-button-prev {
    right: 45px;
}

.accepted_list .swiper-button-next:after, .accepted_list .swiper-button-prev:after {
    font-size: 13px;
    color: var(--theme2);
}

.accepted_list .swiper-slide {
    padding: 30px 20% 30px 30px;
}

.accepted_list .swiper-slide img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 7px solid var(--minor);
}

.accepted_list .swiper-slide .item_text {
    flex: 1;
    padding-left: 70px;
}

.accepted_list .swiper-slide .item_text p {
    font-size: 17px;
    line-height: 1.8;
    /* height: 5.4em; */
    color: var(--theme2);
    text-indent: 8em;
    position: relative;
    transition: all 0.5s;
}

.accepted_list .swiper-slide .item_text a {
    text-align: right;
    color: var(--theme2);
    font-size: 15px;
    padding-top: 20px;
    transition: all 0.5s;
    display: block;
}

.accepted_list .swiper-slide .item_text p span {
    font-size: 5em;
    text-indent: 1em;
    position: absolute;
    left: 0;
    top: -0.1em;
    line-height: 1;
}

.accepted_list .swiper-slide .item_text p:hover {
    transform: translateX(1.2em);
}

.accepted_list .swiper-slide .item_text a:hover {
    transform: translateX(1.5em);
}

.employment {}

.employment_list {}

.employment_list .item {
    width: 32%;
    overflow: hidden;
    position: relative;
    margin-bottom: 2%;
    transform-style: preserve-3d;
}

.employment_list .item .item_img {
    transition: all 0.5s;
}

.employment_list .item .item_img img {
    width: 100%;
}

.employment_list .item .item_text {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: var(--main);
    padding: 22px;
    transform: rotateY(-90deg);
    transition: all 0.5s;
    transform-origin: 0 0;
    opacity: 0;
}

.employment_list .item .item_text h3 {
    color: var(--theme2);
    font-size: 18px;
}

.employment_list .item .item_text p {
    margin-top: 5px;
    margin-bottom: 20px;
    color: var(--classA);
    font-size: 14px;
    line-height: 2;
}

.employment_list .item .item_text a {
    text-align: center;
    padding: 5px 10px;
    border-radius: 2px;
    display: inline-block;
    background: var(--theme);
    color: var(--theme2);
    position: absolute;
    right: 22px;
    bottom: 22px;
}

.employment_list .item:hover .item_img {
    transform: translateX(50%);
}

.employment_list .item:hover .item_text {
    transform: rotateY(0);
    opacity: 1;
}

.news {
    background: var(--classA);
}

.news_list {
    -webkit-box-pack: wrap;
    -ms-flex-pack: wrap;
    -webkit-justify-content: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.news_list .item {
    width: 23.5%;
    background: var(--background);
    transition: all 0.5s;
    overflow: hidden;
    border-radius: var(--radius-inner);
}

.news_list .item .item_img {}

.news_list .item .item_img img {}

.news_list .item .item_text {
    display: block;
    padding: 20px;
}

.news_list .item .item_text p {
    line-height: 1.8;
    height: 5.4em;
    color: var(--routine);
    font-size: 14px;
}

.news_list .item .item_text span {
    display: block;
    margin: 14px 0 7px 0;
    font-size: 12px;
    color: var(--minor);
}

.news_list .item .item_text h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--main);
}

.news_list .item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
}

.link_a {
    background: var(--classA);
    padding: 30px 0;
}

.link_a .link_title {
    font-size: 20px;
    padding-right: 20px;
    color: var(--theme);
}

.link_a .link_list {}

.link_a .link_list a {
    color: var(--minor);
    font-size: 14px;
}

.link_a .link_list a:hover {
    color: var(--theme);
}

.footer {
    background: #373737;
    padding-top: 60px;
}

.footer .foot_nav {
    flex: 1;
    padding-bottom: 35px;
}

.footer .foot_nav .item {
    flex: 1;
}

.footer .foot_nav .item h3 {
    color: var(--theme2);
    border-bottom: 2px solid var(--classA);
    display: inline-block;
    line-height: 2;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer .foot_nav .item ul {}

.footer .foot_nav .item li {}

.footer .foot_nav .item li a {
    font-size: 14px;
    color: var(--classA);
    line-height: 2;
}

.footer .foot_nav .item li a:hover {
    color: var(--theme);
}

.footer .foot_ewm {
    text-align: center;
    width: 220px;
    padding-bottom: 35px;
}

.footer .foot_ewm .foot_ewm_tel {
    font-size: 24px;
    color: var(--background);
}

.footer .foot_ewm .ewm_lsit {
}

.footer .foot_ewm .ewm_lsit .item {
    margin: 10px;
    position: relative;
}

.footer .foot_ewm .ewm_lsit .item .span {}

.footer .foot_ewm .ewm_lsit .item .img {
    display: none;
    padding: 5px;
    background: var(--background);
    border-radius: var(--radius-outer);
    border: 1px solid var(--seat);
    position: absolute;
    width: 180px;
    height: auto;
    left: 50%;
    bottom: 150%;
    margin-left: -90px;
}

.footer .foot_ewm .ewm_lsit .item span svg.icon {
    width: 25px;
    opacity: 0.8;
    transition: all 0.5s;
}

.footer .foot_ewm .ewm_lsit .item:hover .span svg.icon {
    opacity: 1;
}

.footer .foot_ewm .ewm_lsit .item:hover .img {
    display: block;
}

.footer .foot_ewm .ewm_lsit .item .img img {
    width: 100%;
}

.footer .foot_message {
    width: 300px;
    padding-bottom: 35px;
}

.footer .foot_message form {}

.footer .foot_message h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--theme2);
    padding-bottom: 12px;
}

.footer .foot_message input {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
    display: block;
    width: 100%;
    padding: 0.2em 1em;
    border: 1px solid var(--seat);
    border-radius: var(--radius-inner);
    background-color: #fff;
    margin-bottom: 10px;
}

.footer .foot_message button {
    background: var(--theme);
    border: 0;
    width: 100%;
    line-height: 2.4;
    font-size: 18px;
    border-radius: var(--radius-outer);
    color: var(--theme2);
}

.footer .foot_message .form-group {
    height: 35px;
}

.footer .foot_message .form-group img {
    height: 35px;
    padding-left: 8px;
}

.footer .foot_message textarea {
    width: 100%;
    border: 1px solid var(--seat);
    border-radius: var(--radius-inner);
    resize: none;
    padding: 0.5em 0.8em;
    font-size: 15px;
    line-height: 2;
    height: 7em;
    margin-bottom: 10px;
    outline: 0;
}

.footer .copyright {
    padding: 10px 0;
    background: var(--main);
}

.footer .copyright p {
    text-align: center;
    color: var(--seat);
}

.footer .copyright p a {
    padding: 0 10px;
    color: var(--seat);
}

.main {
    background: #fff;
}

.page_banner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.page_banner img {
    width: 100%;
}

.page_banner_text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.page_banner_text h3 {
    flex: 1;
    text-align: center;
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    font-family: Arial;
}

.breadcrumb {
    position: relative;
    top: -42px;
    z-index: 2;
    height: 42px;
    background: var(--classA);
    box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%);
}

.breadcrumb .page_side_nav {}

.breadcrumb .page_side_nav a {
    border-right: 1px solid var(--seat);
    display: block;
    line-height: 42px;
    padding: 0 18px;
    color: var(--routine);
    transition: all 0.8s;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, var(--theme), var(--theme));
    background-size: 0% 100%;
    background-position: left center;
}

.breadcrumb .breadcrumb_nav {
    line-height: 42px;
    padding-right: 8px;
}

.breadcrumb .breadcrumb_nav a {
    font-size: 15px;
    color: var(--routine);
    padding: 0 5px;
}

.breadcrumb .breadcrumb_nav span {}

.breadcrumb .page_side_nav a:hover, .breadcrumb .page_side_nav a.active {
    transition: all 0.8s;
    background-size: 100% 100%;
    transition-timing-function: cubic-bezier(0.52, 1.6, 0.5, 0.66);
    color: #fff;
}

.breadcrumb .breadcrumb_nav a:hover {
    color: var(--theme);
}

.page_info {
    padding: 20px 0 80px;
}

.page_info .page_content {}

.page_info .page_content .title {
    font-size: 25px;
    font-weight: 500;
    color: #333;
    padding-bottom: 12px;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
}

.page_info .page_content p {
    line-height: 2;
    font-size: 16px;
    color: var(--main);
    padding-bottom: 10px;
}

.page_info .page_content a {
    color: var(--main);
}

.page_info .page_content img {
    max-width: 100%;
    padding: 12px 0;
}

.page_r {
    padding: 15px 30px;
    border: 1px solid #f5f5f5;
    -webkit-box-shadow: var(--text-shadow);
    box-shadow: var(--text-shadow);
    border-radius: var(--radius-inner);
    flex: 1;
    margin-bottom: 35px;
}

.page_r .mcg_title {
    font-size: 19px;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 15px;
}

.page_r .mcg_title img {
    display: inline-block;
    width: 30px;
    padding: 0 4px 0 0;
    position: relative;
    top: 7px;
}

.page_r .mc_guestbook {}

.page_r .mc_guestbook input {
    outline: none;
    display: block;
    width: 48%;
    font-size: 18px;
    color: var(--routine);
    background-color: rgb(246 249 252);
    background-clip: padding-box;
    border: 1px solid #dae1e7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--radius-inner);
    box-shadow: inset 0 1px 2px transparent;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    height: 50px;
    line-height: 50px;
    padding-left: 1em;
    margin-bottom: 15px;
}

.page_r .mc_guestbook .form-group {
    height: 50px;
}

.page_r .mc_guestbook .form-group img {
    height: 50px;
    padding: 0 8px;
}

.page_r .mc_guestbook .mc_gbk {
    resize: none;
    outline: none;
    display: block;
    width: 100%;
    font-size: 16px;
    color: var(--routine);
    background-color: rgb(246 249 252);
    background-clip: padding-box;
    border: 1px solid #dae1e7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--radius-inner);
    box-shadow: inset 0 1px 2px transparent;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    margin-bottom: 15px;
    padding: 10px 15px;
    line-height: 2;
}

.page_r .sublime {
    outline: none;
    width: 100%;
    box-shadow: var(--text-shadow);
    background: var(--theme);
    color: #ffffff;
    height: 50px;
    font-size: 18px;
    margin-bottom: 15px;
    border-radius: var(--radius-inner);
    border: none;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page_l {
    width: 450px;
    margin-right: 50px;
    background: var(--classC);
    margin-bottom: 35px;
}

.page_l h1 {
    text-align: center;
    height: 78px;
    line-height: 78px;
    background-color: var(--theme);
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
}

.page_l ul {
    padding: 25px 50px;
}

.page_info 
 .page_l ul li p {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.form-group {}

.page_info .page_l ul li img {
    margin: auto;
    padding: 0;
    width: 200px;
}

.pages {
    text-align: center;
}

.pages a {
    display: inline-block;
    border: 1px solid var(--seat);
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    padding: 0 8px;
    margin: 0 3px;
}

.pages a.left,.pages a.right {}

.pages a.left i, .pages a.right i {}

.pages a.active,.pages a:hover {
    background-color: var(--theme);
    border-color: var(--theme);
    color: #ffffff;
}

.main_wrap {
    margin-bottom: 80px;
}

.categ_list {}

.categ_list * {
    transition: all 0.5s;
}

.categ_list .item {
    width: 31%;
    margin: 0 1.16% 35px;
    display: block;
    box-shadow: var(--text-shadow);
}

.categ_list .item .item_img {
    position: relative;
    overflow: hidden;
}

.categ_list .item .item_img .item_span:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--theme);
    transition: all 0.8s ease-out;
    transform: scale(0.66) rotate(-20deg);
}

.categ_list .item .item_img img {
    width: 100%;
}

.categ_list .item .item_img .item_span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(0 0 0 / 45%) no-repeat center;
    background-image: url(search.png);
    background-size: 26px;
    opacity: 0;
}

.categ_list .item .item_text {
    padding: 12px 20px;
}

.categ_list .item .item_text h3 {
    color: var(--main);
    font-size: 16px;
    font-weight: 400;
}

.categ_list .item:hover {
    box-shadow: var(--box-shadow);
}

.categ_list .item:hover .item_img .item_span {
    opacity: 1;
}

.categ_list .item:hover .item_img .item_span:before {
    transition: all 0.3s ease-out;
    transform: scale(1) rotate(0);
}

.categ_list .item .item_text:hover h3 {
    color: var(--theme);
}

.categ_list .item .item_img .item_add {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--theme);
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 26px;
    transform: translateY(40px);
}

.categ_list .item:hover .item_img .item_add {
    transform: translateY(0px);
}

.categ_list.categ_img_list .item {
    box-shadow: none;
}

.categ_list.categ_img_list .item .item_text {
    background: var(--classC);
}

.categ_list.categ_img_list .item .item_text h3 {
    line-height: 3;
    font-size: 18px;
}

.categ_list.categ_img_list .item .item_text p {
    height: 4em;
    line-height: 2;
    font-size: 12px;
    color: #666666;
    margin-bottom: 20px;
}


.categ_list.categ_article_list .item {
    box-shadow: none;
    width: 47%;
    margin: 0 1.5% 35px;
}

.categ_list.categ_article_list .item .item_text {
    background: var(--classC);
    padding: 25px;
}

.categ_list.categ_article_list .item .item_text h3 {
    line-height: 2;
    font-size: 18px;
    font-weight: 600;
}

.categ_list.categ_article_list .item .item_text span {
    color: var(--minor);
    font-size: 13px;
    padding: 3px 0 8px;
    letter-spacing: 0.05em;
    display: block;
}

.categ_list.categ_article_list .item .item_text p {
    height: 6em;
    line-height: 2;
    font-size: 14px;
    color: var(--routine);
    margin-bottom: 15px;
}

.categ_list.categ_article_list .item .item_text b {
    font-size: 14px;
    padding: 8px 15px;
    letter-spacing: 0.05em;
    background: var(--seat);
    border: 1px solid var(--classC);
    color: var(--classA);
    display: inline-block;
    font-weight: 400;
}

.categ_list.categ_article_list .item .item_text b:hover {
    background: var(--theme);
}

.categ_list .item .item_img:hover img {
    transform: scale(0.85);
}

.background-c {
    background: var(--classC);
}

.page_info .main_left {
    flex: 1;
    background: #fff;
    border-radius: var(--radius-inner);
}

.page_info .article_info h1.name {
    line-height: 1.5;
    color: var(--main);
    font-size: 25px;
    font-weight: 500;
}

.page_info .article_info {
    padding: 30px;
}

.page_info .article_info .release_data {
    font-size: 15px;
    color: var(--minor);
    padding: 5px 0 20px;
    border-bottom: 1px solid var(--classC);
    margin-bottom: 20px;
}

.page_info .article_info .release_data span {
    padding-right: 12px;
}

.page_info .article_info .detail {
}

.page_info .article_info .detail p {
    line-height: 2;
    font-size: 16px;
    color: var(--main);
    padding-bottom: 10px;
}

.page_info .article_info .detail a {
    color: var(--main);
}

.page_info .article_info .detail img {
    max-width: 100%;
    padding: 12px 0;
}

.page_info .article_info .pronext {
    border-top: 1px solid var(--classC);
    margin: 35px 0 0;
    padding: 35px 0;
}

.page_info .article_info .pronext .a {
    display: block;
    max-width: 48%;
    padding: 10px;
    border-radius: var(--radius-inner);
    border: 1px solid var(--classC);
    color: var(--routine);
    transition: all 0.5s;
}

.page_info .article_info .pronext .a a {
    color: var(--routine);
}

.page_info .article_info .pronext .a:hover,.page_info .article_info .pronext .a:hover a {
    color: var(--theme);
    border-color: var(--theme);
}

.page_info .main_right {
    width: 230px;
    margin-left: 40px;
}

.page_info .main_right .categ_newest {
    padding-bottom: 30px;
    background: #fff;
}

.page_info .main_right .cat_name {
    line-height: 48px;
    margin: 0 15px 10px;
    font-size: 18px;
    position: relative;
}

.page_info .main_right .cat_name:after {
    content: " ";
    position: absolute;
    width: 35px;
    height: 2px;
    background: var(--theme);
    bottom: -1px;
    left: 0;
}

.page_info .categ_new_list {
    padding: 0px 15px;
}

.page_info .categ_new_list li a {
    font-size: 16px;
    position: relative;
    display: block;
    border-bottom: 1px solid var(--classC);
    line-height: 40px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 28px;
    color: var(--routine);
    transition: all 0.5s;
    background-image: url(categ_new_b2.png);
    background-repeat: no-repeat;
    background-position: 3px center;
}

.page_info .categ_new_list li a:hover {
    background-color: var(--theme);
    background-image: url(categ_new_b1.png);
    color: #ffffff;
}

.page_info .categ_tj_list {
    padding: 15px;
}

.page_info .categ_tj_list li {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--classC);
}

.page_info .categ_tj_list li .time {
    color: var(--minor);
    font-size: 13px;
    line-height: 1.6;
}

.page_info .categ_tj_list li a {
    display: block;
    color: var(--main);
    margin-bottom: 17px;
    font-size: 15px;
    max-height: 3em;
    line-height: 1.5;
    transition: all 0.3s;
}

.page_info .categ_tj_list li a:hover {
    color: var(--theme);
}

.info_upper {
    padding-bottom: 30px;
}

.info_upper .product_pic {}

.info_upper .product_pic .jqzoom {
    margin: 0 auto 30px;
}

.info_upper .list_attachment {
    overflow: hidden;
}

.info_upper .list_attachment img {
    width: 76px;
    margin: 0 6px;
    border: 3px solid var(--seat);
}

.info_upper .list_attachment img.active {
    border-color: var(--theme);
}

.info_lower {}

.info_lower .particulars {}

.info_lower .content_list {}

.info_lower .content_list .item {
    display: none;
    padding: 30px 0;
}

.info_lower .content_list .item.show {
    display: block;
    background: var(--classC);
}

.info_lower .content_list .item .name {
    text-align: center;
    font-size: 22px;
    padding-bottom: 20px;
}

.info_lower .content_list .item .detail {}

.info_lower .content_list .item .detail p {
    line-height: 2;
    font-size: 15px;
    color: var(--main);
    padding-bottom: 10px;
}

.info_lower .content_list .item .detail a {
    color: var(--main);
}

.info_lower .content_list .item .detail img {
    max-width: 100%;
    padding: 12px 0;
}

.page_info .info_lower .pronext {
    padding: 35px 0;
}

.page_info .info_lower .pronext .a {
    display: block;
    max-width: 48%;
    padding: 10px;
    border-radius: var(--radius-inner);
    border: 1px solid var(--classC);
    color: var(--routine);
    transition: all 0.5s;
}

.page_info .info_lower .pronext .a a {
    color: var(--routine);
}

.page_info .info_lower .pronext .a:hover,.page_info .info_lower .pronext .a:hover a {
    color: var(--theme);
    border-color: var(--theme);
}

div#map {
    width: 100%;
    height: 570px;
}

div#map * {
    max-width: none;
}

@media screen and (max-width: 1024px) {
.header .total_nav>li>a {
    font-size: 13px;
    margin-right: 10px;
}

.banner .swiper-slide .item_text h3 {
    font-size: 30px;
    margin-left: 5vw;
}

.banner .bannerradian .name {
    font-size: 32px;
}

.banner .bannerradian .info {
    font-size: 20px;
}

.section {
    padding: 40px 0;
}

.section_name {
    padding-bottom: 15px;
}

.about .section_name .cn {
    font-size: 30px;
}

.about .section_name .en {
    font-size: 22px;
}

.about .section_name p {
    font-size: 18px;
}

.course_list .swiper-slide img {
    height: 22vw;
}

.course_list .swiper-slide .item_text {
    padding: 5px 15px 15px;
}

.course_list .swiper-slide .item_text h3 {
    font-size: 18px;
}

.product_list .swiper-slide img {
    height: 33vw;
}

.product_list .swiper-slide .item_text {
    padding: 0 20px;
}

.product_list .swiper-slide:hover .item_text .num {
    font-size: 26px;
    margin-top: 20px;
}

.product_list .swiper-slide .item_text i {
    height: 2.5vw;
}

.product_list .swiper-slide .item_text p {
    margin-bottom: 15px;
}

.teacher_list .item .item_img .item_span span {
    padding: 10px;
    font-size: 14px;
}

.teacher_list .item .item_text p {
    font-size: 12px;
    margin-bottom: 10px;
}

.teacher_list .item .item_text h3 {
    font-size: 15px;
}

.student_list .item .item_img p {
    padding: 6px 8px;
}

.student_list .item .item_text {
    padding: 15px 10px 10px;
}

.student_list .item .item_text p {
    font-size: 12px;
    margin: 10px 0px 15px;
}

.student_list .item .item_text h3 {
    font-size: 15px;
}

.accepted_list .swiper-slide {
    padding: 20px 18% 20px 20px;
}

.accepted_list .swiper-slide img {
    width: 160px;
    height: 160px;
    border-width: 5px;
}

.accepted_list .swiper-slide .item_text {
    padding-left: 40px;
}

.accepted_list .swiper-slide .item_text p {
    font-size: 16px;
}

.accepted_list .swiper-slide .item_text a {
    font-size: 14px;
}
.employment_list .item .item_text {
    padding: 12px;
}

.employment_list .item .item_text h3 {
    font-size: 16px;
}

.employment_list .item .item_text p {
    font-size: 12px;
}

.employment_list .item .item_text a {
    font-size: 12px;
    padding: 5px 8px;
    right: 12px;
    bottom: 12px;
}

.news_list .item .item_text {
    padding: 12px;
}

.news_list .item .item_text p {
    font-size: 12px;
}

.news_list .item .item_text h3 {
    font-size: 15px;
}

.news_list .item .item_text span {
    margin-top: 10px;
}

.footer {
    padding-top: 40px;
}

.footer .foot_nav .item h3 {
    font-size: 16px;
}

.footer .foot_nav .item li a {
    font-size: 13px;
}

.footer .foot_ewm {
    width: 200px;
}

.footer .foot_ewm .foot_ewm_tel {
    font-size: 22px;
}

.footer .foot_message {
    width: 260px;
}

.page_info .main_right {
    width: 220px;
    margin-left: 20px;
}

}

@media screen and (max-width: 880px) {

.m_block {
    display: block;
}

.m_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.m_table {
    display: table;
}

.m_table_cell {
    display: table-cell;
}

.pc_block,.pc_flex,.pc_table,.pc_table_cell {
    display: none;
}

.header {
    position: sticky;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
}

.header.open {
    top: 0px !important;
}

.header .logo img {
    height: 60px;
}

.header .mobnav-nav-btn {
    height: 24px;
    width: 40px;
    position: relative;
    cursor: pointer;
    margin: 18px 0;
}

.header .mobnav-nav-btn span {
    display: block;
    background: var(--theme2);
    width: 28px;
    height: 3px;
    position: absolute;
    left: 5px;
    transition: all ease 0.35s;
    border-radius: var(--radius-inner);
}

.header .mobnav-nav-btn span:nth-of-type(1) {
    top: 0px;
}
.header .mobnav-nav-btn span:nth-of-type(2) {
    top: 10px;
}
.header .mobnav-nav-btn span:nth-of-type(3) {
    top: 20px;
}
.header .mobnav-nav-btn.open span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
}
.header .mobnav-nav-btn.open span:nth-of-type(2) {
    width: 0;
    left: 19px;
}
.header .mobnav-nav-btn.open span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg);
}

.header .nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100vh;
    background-color: var(--main);
    padding-top: 0;
}

.header .nav .total_nav {
    height: auto;
}

.header .total_nav>li {
    float: none;
    height: auto;
    margin-right: 0;
    border-radius: 0;
    border-bottom: .8px solid var(--routine);
}

.header .total_nav>li>a {
    margin-right: 0;
    text-align: center;
    height: 50px;
    line-height: 50px;
    padding: 0 50px;
    font-size: 16px;
}

.header .total_nav>li>a:after {
    background: none;
}

.header .total_nav>li>a.lower_level.nav2 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 50px;
    height: 50px;
    padding: 18px 16px;
    transition: all 0.5s;
}

.header .total_nav>li>a.lower_level.open {
    transform: rotateZ(180deg);
}

.header .total_nav>li>a.lower_level img {
    width: 18px;
}

.header .total_nav .nav_list {
    position: relative;
    top: 0;
    border-top: .5px solid var(--routine);
    border-bottom: .5px solid var(--routine);
}

.header .total_nav .nav_list li {
    display: block;
    background: var(--main);
    border-bottom: .8px solid var(--routine);
}

.header .total_nav .nav_list li a {
    font-size: 15px;
    color: var(--seat);
}
.footer {
    padding: 0;
    height: 60px;
    background: none;
}

.mobile_footer {
    background: var(--main);
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    z-index: 12;
    width: 100%;
    box-shadow: 0 -2px 6px 0 rgb(0 0 0 / 10%);
}

.mobile_footer ul {
    width: 99%;
    margin: 0 auto;
}

.mobile_footer li {
    width: 25%;
    display: block;
    float: left;
    border-right: 1px solid var(--classI);
}

.mobile_footer li:nth-child(4) {
    border: 0;
}

.mobile_footer li a {}

.mobile_footer li img {
    display: block;
    width: 35%;
    max-width: 30px;
    margin: 0 auto;
}

.mobile_footer li span {
    display: block;
    text-align: center;
    color: var(--theme2);
    font-size: 14px;
    line-height: 1;
    padding-top: 6px;
}

.food_list a {
    width: 100%;
}

.food_list a .img {
    width: 30%;
}

.food_list a .food_content {
    width: 66%;
}

.section_name .cn {
    font-size: 20px;
}

.section_name .en {
    font-size: 14px;
    margin: 4px 0 10px;
}

.about .section_name .cn {
    font-size: 24px;
}

.about .section_name .en {
    font-size: 18px;
    margin: 10px 0;
}

.about .section_name p {
    font-size: 14px;
}

.about_list .item .item_svg {
    width: 18vw;
    height: 18vw;
    padding: 5vw;
    margin: 0 auto;
}

.about_list .item .item_svg:before, .about_list .item .item_svg i.outer-ring, .about_list .item .item_svg i.inner-ring {
    width: 14.6vw;
    height: 14.6vw;
    margin-top: -7.3vw;
    margin-left: -7.3vw;
}

.about_list .item p {
    font-size: 16px;
}

.product .section_name .classify a {
    line-height: 24px;
    height: 24px;
    padding: 0 14px;
    font-size: 13px;
}

.product_list .swiper-slide img {
    height: 55vw;
}

.teacher_list .item {
    width: 49%;
    margin-bottom: 2%;
}

.student_list .item {
    width: 49%;
    margin-bottom: 2%;
}

.accepted_list .swiper-slide {
    padding: 10px 14% 10px 10px;
}

.accepted_list .swiper-slide img {
    height: 130px;
    width: 130px;
}

.accepted_list .swiper-slide .item_text {
    padding-left: 30px;
}

.accepted_list .swiper-slide .item_text p {
    font-size: 14px;
    text-indent: 5em;
}

.accepted_list .swiper-slide .item_text p span {
    text-indent: 0.5em;
}

.employment_list .item {
    width: 49%;
}

.employment_list .item .item_text {
    transform: rotateY(0);
    opacity: 0.8;
}

.employment_list .item:hover .item_text {
    opacity: 0.8;
}

.employment_list .item:hover .item_img {
    transform: translateX(0%);
}

.news_list .item {
    width: 49%;
    margin-bottom: 2%;
}

.product_list .swiper-slide .item_text {
    top: auto;
    bottom: 0;
    opacity: 0.8;
    height: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_list .swiper-slide .item_text .num {
    display: none;
}

.product_list .swiper-slide .item_text i {
    display: none;
}

.product_list .swiper-slide .item_text p {
    display: none;
}

.product_list .swiper-slide .item_text h3 {
    opacity: 1;
    margin-top: 0;
    flex: 1;
    text-align: left;
}

.product_list .swiper-slide:hover .item_text h3 {
    margin-top: 0;
}

.product_list .swiper-slide .item_text a {
    margin: 0 0 0 15px;
    width: 80px;
}

.goto {
    display: none !important;
}

.page_info {
    padding: 10px 0 30px;
}

.page_l {
    width: 50%;
    margin-right: 3%;
}

.page_l ul {
    padding: 25px 8%;
}

.categ_list .item {
    width: 47%;
    margin: 0 1.5% 35px;
}

.categ_list.categ_article_list .item .item_text {
    padding: 15px;
}

.categ_list.categ_article_list .item .item_text span {
    padding: 0;
    font-size: 12px;
}

.categ_list.categ_article_list .item .item_text p {
    font-size: 12px;
    margin-bottom: 8px;
}

.categ_list.categ_article_list .item .item_text b {
    font-size: 12px;
    padding: 5px 10px;
}

.page_info .article_info .pronext {
    border-bottom: 1px solid var(--classC);
}

.page_info .main_right {
    width: 100%;
    margin-left: 0;
}


}



@media screen and (max-width: 680px) {

.banner {
    padding-bottom: 0;
}

.banner .swiper-slide .item_text {
    margin-top: -50px;
}

.banner .swiper-slide .item_text h3 {
    font-size: 20px;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
}

.banner .bannerradian {
    position: unset;
    padding-top: 15px;
}

.banner .bannerradian .name {
    font-size: 22px;
}

.banner .bannerradian .info {
    font-size: 16px;
}


.section {
    padding: 30px 0;
    background-size: auto 100%;
}

.about_list .item {
    width: 48%;
    padding-top: 12px;
}

.about_list .item .item_svg {
    width: 30vw;
    height: 30vw;
    padding: 8vw;
}

.about_list .item .item_svg:before, .about_list .item .item_svg i.outer-ring, .about_list .item .item_svg i.inner-ring {
    width: 24vw;
    height: 24vw;
    margin-top: -12vw;
    margin-left: -12vw;
}

.about_list .item p {
    font-size: 15px;
}

.course_list .swiper-container {
    padding: 5vw 0;
}

.course_list .swiper-slide-active,.course_list .swiper-slide-duplicate-active{
    transform: scale(1);
}


.course_list .swiper-slide img {
    height: 66vw;
}

.teacher_list .item {
    width: 100%;
}

.product_list .swiper-slide img {
    height: 70vw;
}

.product_list .swiper-slide .item_text {
    height: 40px;
}


.product_list .swiper-slide .item_text a {
    height: 22px;
    line-height: 22px;
    width: 60px;
    font-size: 12px;
}

.accepted_list .swiper-slide {
    padding: 10px;
}

.accepted_list .swiper-slide .item_text {
    width: 100%;
    padding-left: 0;
    flex: none;
}

.accepted_list .swiper-slide img {
    width: 40vw;
    height: 40vw;
    margin: 0 auto 7vw;
}

.accepted_list .swiper-slide .item_text p {
    font-size: 17px;
}

.accepted_list .swiper-slide .item_text a {
    font-size: 15px;
}

.student_list {
    flex-wrap: nowrap;
}

.student_list .item {
    width: 94%;
    margin: 5% auto;
    border: 0;
    box-shadow: var(--box-shadow);
}

.employment_list .item {
    width: 94%;
    margin: 0 auto 5%;
}

.employment_list .item .item_text {
    width: 100%;
    top: auto;
}

.news_list {
    flex-wrap: nowrap;
}

.news_list .item {
    width: 94%;
    margin: 0 auto 5%;
}

.page_banner img {
    width: 180%;
    max-width: initial;
    position: relative;
    left: -40%;
}


.page_info .page_content .title {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.page_banner_text h3 {
    font-size: 28px;
}

.page_l {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
}

.page_l h1 {
    height: 40px;
    line-height: 40px;
    font-size: 20px;
}

.page_l ul {
    padding: 15px 6%;
}

.page_info .page_l ul li p {
    font-size: 16px;
    margin-bottom: 8px;
}

.categ_list .item {
    width: 96%;
    margin: 0 2% 35px;
}

.categ_list .item .item_img .item_span:before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
}

.page_info .article_info h1.name {
    font-size: 20px;
}

.page_info .article_info .release_data {
    font-size: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.page_info .article_info .pronext .a {
    width: 100%;
    max-width: 100%;
    border: 0;
}

.info_upper .list_attachment img {
    width: 60px;
    margin: 0 4px;
    border-width: 2px;
}

.info_lower .content_list .item {
    padding: 20px 0;
}

.info_lower .content_list .item .name {
    font-size: 20px;
    padding-bottom: 15px;
}

.page_info .info_lower .pronext {
    padding: 20px 0;
}

.page_info .info_lower .pronext .a {
    width: 100%;
    max-width: 100%;
    border: 0;
}

div#map {
    height: 300px;
}

.breadcrumb {
    background: none;
    height: auto;
    box-shadow: none;
    border-left: 1px solid var(--seat);
    border-top: 1px solid var(--seat);
    top: -36px;
}

.breadcrumb .page_side_nav {
    flex: 1;
}

.breadcrumb .page_side_nav a {
    background-color: var(--classA);
    padding: 0;
    border-bottom: 1px solid var(--seat);
    width: 25%;
    text-align: center;
    font-size: 12px;
    height: 36px;
    line-height: 36px;
}

}

.list_page{text-align:center;font-family:宋体; height:30px; margin:10px auto;}
.list_page a{background:#fff;margin:0px 1px;padding:4px 6px;border:1px solid #ccc;color:#333;font-family:宋体;}
.list_page span{background:#ccc;color:#fff;margin:0px 1px;padding:4px 6px;border:1px solid #ccc;font-family:宋体;}
.list_page b{background:#fff;margin:0px 1px;padding:4px 6px;border:1px solid #ccc;color:#333;font-family:宋体;}
.list_page b input{border:0;margin:0;padding:0;font-size:12px;font-family:宋体;font-weight:normal;width:12px;vertical-align:middle;text-align:center;}

.page_group ul{border-right:solid 1px #ddd;border-radius:4px; text-align:center;}
.page_group ul li{border-right:none;border-radius:0;list-style:none; display: inline}
.page_group ul li:not(:first-child):not(:last-child){border-radius:0;}
.page_group ul li:first-child{border-radius:4px 0 0 4px;}
.page_group ul li:last-child{border-radius:0 4px 4px 0;}
.page_group ul .active a{background:#f3f3f3;border-radius:0;}