/*
*@Description: 
*@Author:      hanli 
*@Update:      hanli(2020-11-18)  
*/


@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html {
    color: #333333;
    background: #fff;
}

/* 内外边距重置 */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    /*font-family:"Gotham Rounded",Tahoma, Arial, Helvetica, STHeiti, 'Hiragino Sans GB','Hiragino Sans GB W3','Microsoft Yahei', '微软雅黑';*/
    font-family: "Gotham SSm A", "Gotham SSm B", Tahoma, Arial, Helvetica, STHeiti, 'Hiragino Sans GB', 'Hiragino Sans GB W3', 'Microsoft Yahei', '微软雅黑';
    font-size: 14px;
    word-wrap: break-word;
    color: #000;
    line-height: 1.7;
}

input,
select,
textarea {
    font-size: 100%;
}

div:focus {
    outline: none;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align*/
th {
    text-align: inherit;
}

ol,
ul {
    list-style: none;
}

a,
a:visited,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

/*a,a:hover{
    color: #3C5C98;
}*/
a:hover {
    opacity: .9;
    color: #A72038;
}

/* @media screen and (min-width: 1700px){
    html,body{
        font-size: 16px;
    }
} */
.clearB {
    clear: both;
}

.layui-btn {
    background: #a72038;
}

.block img {
    width: 100%;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

.layui-container {
    width: 100% !important;
    padding: 0 5%;
    margin: 0 auto;
    max-width: 1500px;
}

@media (min-width: 1400px) {
    .layui-container {
        width: 1260px;
    }
}

@media (min-width: 1200px) {
    .layui-container {
        width: 1170px;
    }
}

@media (min-width: 992px) {
    .layui-container {
        width: 970px;
    }
}

@media screen and (max-width: 567px) {
    .layui-btn-lg {
        width: 100%;
    }
}

/*banner*/
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 46.87vw;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.banner .layui-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.banner .header-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
}

.banner .header-logo img {
    height: 56px;
}

.banner .content-box {
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
}

.banner .content-box .content {
    width: 100%;
    color: #FFFFFF;
}

.banner .content-box .content .title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
}

.banner .content-box .content .small-title {
    font-size: 30px;
    opacity: .8;
}

.banner .content-box .content .text {
    margin-top: 40px;
    width: 50%;
    opacity: .8;
}

.banner .content-box .content .text p {
    margin-bottom: 14px;
    font-size: 16px;
    text-align: justify;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    cursor: pointer;
    z-index: 2;
}

.scroll-down .banner-btn {
    position: relative;
    margin: 10px;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #00235F;
}

.scroll-down .banner-btn i {
    z-index: 9;
}

.scroll-down .banner-btn .yuan {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .55);
    /* transition: all .3s; */
    transform: scale(1.2);

}

.scroll-down .banner-btn .yuan::after {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .35);
    /* transition: all .3s; */
    transform: scale(1.3);

}

.scroll-down .banner-btn:hover .yuan {
    animation: MoveUpDown1 1s ease-in-out infinite;
}

.scroll-down .banner-btn:hover .yuan::after {
    animation: MoveUpDown2 1s ease-in-out infinite;
}

@keyframes MoveUpDown1 {
    0% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes MoveUpDown2 {
    0% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

@media screen and (max-width: 1200px) {
    .banner .content-box .content .text {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .banner .content-box .content .title {
        font-size: 38px;
    }

    .banner .content-box .content .small-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
    .banner {
        height: 60vw;
    }

    .banner .header-logo {
        height: 66px;
    }

    .banner .header-logo img {
        height: 40px;
    }
}

@media screen and (max-width: 556px) {
    .banner .content-box .content .title {
        font-size: 28px;
    }

    .banner .content-box .content .small-title {
        font-size: 18px;
    }

    .scroll-down {
        display: none;
    }

    .banner .content-box {
        padding-bottom: 40px;
    }
}

/*banner END*/




/*block*/
.block {
    padding: 60px 0;
    width: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-color: #eff2f5;
    /*background-attachment: fixed;*/
}

.block.grey {
    background-color: #f0f0f0;
}

.block.black {
    background-color: #0A0A0A;
}

.block.bg .layui-container,
.block.color_white .layui-container {
    z-index: 2;
    position: relative;
    color: #fff;
}

.block p {
    margin-bottom: 14px;
}

/*block END*/




/*field-container*/
.field-container {
    /* margin-top: 50px; */
}

.field-container .layui-elem-field {
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin: 0;
    background: #FFF9E8;
    border: 1px solid #FFBD07;
    border-radius: 2px;
    text-align: center;
}

.field-container .layui-elem-field legend {
    font-size: 16px;
    position: relative;
    margin-left: 0;
    line-height: 1;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #FFBD07;
    padding: 2px;
}

.field-container .layui-elem-field legend span {
    width: 50px;
    text-align: center;
    display: block;
}

.field-container .layui-elem-field legend .iconfont {
    font-size: 24px;
    position: relative;
    display: block;
    width: 56px;
    height: 56px;
    background: #FFF9E8;
    border-radius: 30px;
    line-height: 56px;
    text-align: center;
    color: #FFBD07;
}

.not-bg .iconfont {
    background: none !important;
    font-size: 30px !important;
    line-height: 40px !important;
}

.field-container .layui-field-box {
    padding: 15px 15px 20px;
    text-align: left;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    justify-content: center;
}

.field-container .layui-field-box .title {
    color: #E28A1A;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.field-container .layui-field-box .desc {
    color: #5D5E68;
}

@media screen and (min-width: 992px) {
    .field-container .layui-col-md2 {
        width: 20%;
    }
}

@media screen and (max-width: 767px) {
    .field-container .layui-field-box {
        justify-content: unset;
    }

    .field-container .layui-field-box .box {
        width: 100%;
    }
}

.field-container.apply legend .iconfont {
    font-size: 80px;
    color: #11337E;
}

.field-container.apply .layui-field-box .title {
    text-align: left;
}

@media screen and (max-width: 991px) {
    .field-container.apply legend .iconfont {
        font-size: 64px;
    }
}

@media screen and (max-width: 767px) {
    .field-container.apply legend .iconfont {
        font-size: 50px;
    }
}

/*field-container END*/




/*apply-step*/
.field-container.apply-step .layui-elem-field {
    background: #FFF9E8;
    border-color: #FFBD07;
    text-align: left;
}

.field-container.apply-step .layui-elem-field legend {
    line-height: 50px;
    color: #FFBD07;
    background: none;
    font-size: 50px;
    margin-left: 15px;
}

.field-container.apply-step .layui-elem-field legend>* {
    position: relative;
    z-index: 1;
}

.field-container.apply-step .layui-elem-field legend:before {
    content: "";
    position: absolute;
    left: 0px;
    top: -5px;
    width: 50px;
    height: 50px;
    background: url(../images/icon_apply_bg.png) center center no-repeat;
    background-size: cover;
    z-index: 0;
}

.field-container.apply-step .layui-field-box {
    text-align: left;
}

.field-container.apply-step .layui-field-box .box {
    flex: 1;
}

.field-container.apply-step .layui-field-box .desc ul {
    padding-left: 18px;
}

.field-container.apply-step .layui-field-box .desc li {
    text-align: justify;
    list-style: disc outside;
    margin-bottom: 8px;
}

/*apply-step END*/

/*table*/
.table {
    width: 100%;
    text-align: center;
    border: 1px solid #E2E5FC;
    margin: 20px 0;
}

.table thead {
    background: #11337E;
    color: #fff;
    font-size: 16px;
}

.table th,
.table td {
    padding: 18px 10px;
    border: 1px solid #E2E5FC;
}

.apply-link {
    padding: 15px 80px;
    background: #FFBD07;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 50px;
    margin-top: 40px;
    display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.apply-link:hover {
    color: #fff;
}

/*table END*/



.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: stretch;
    align-items: stretch;
    flex: 1;
}

.layui-row.row-flex:after,
.layui-row.row-flex:before {
    content: none;
}


#button-to-top {
    background: rgba(17, 51, 126, .8);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 997;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}


.anchor {
    position: relative;
    display: block;
    padding-top: 80px;
    margin-top: -80px;
    z-index: -1;
}



/*footer*/
footer {
    background-color: #002263;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.5;
}

footer a {
    color: rgba(255, 255, 255, .75);
}

footer a:hover {
    color: #FFBD07;
    text-decoration: underline;
}

footer .copyright {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.footer-top {
    padding: 30px 0;
}

.footer-top .title {
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 18px;
    position: relative;
}

.footer-top .title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #FFBD07;
}

.footer-top ul li {
    margin-bottom: 8px;
}

.footer-top .has-icon li {
    padding-left: 24px;
    position: relative;
}

.footer-top ul li .iconfont {
    position: absolute;
    left: 0;
    font-size: 14px;
}

.footer-top .column-2 {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 30px;
}

.flex-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.flex-logo img {
    max-width: 20%;
    width: 180px;
}

.footer-top .qrcode {
    display: flex;
}

.footer-top .box {
    max-width: 120px;
    font-size: 12px;
}

.footer-top .box+.box {
    margin-left: 20px;
}


@media screen and (max-width: 567px) {
    .footer-top {
        padding: 20px 0;
    }

    .flex-logo {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .footer-top .title {
        font-size: 16px;
    }

    .footer-top .column-2 {
        -moz-column-count: 1;
        column-count: 1;
        -moz-column-gap: 0px;
    }
}

/*footer END*/
/* index_title  START*/
.index_title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #00235F;
    margin-bottom: 30px;
}

.index_title.white {
    color: #FFFFFF;
}

.index_title.left {
    text-align: left;
}

/* index_title  END*/
/* advantage START */
@media screen and (min-width: 1400px) {}

.block.advantage {
    overflow: unset;
    padding-bottom: 0;
}

.advantage .title-box {
    display: flex;
    align-items: center;
}

.advantage .title-box .line {
    flex: 1;
    height: 1px;
    border-bottom: 1px dashed rgba(255, 255, 255, .64);
    margin-left: 15px;
}

.advantage-content {
    position: relative;
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

.advantage-content .left {
    position: relative;
    width: 70%;
    color: #FFFFFF;
    padding-right: 70px;
}

.advantage-content .logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, .4);
}

.advantage-content .logo img {
    width: 100%;
    height: 100%;
}

.advantage-content .title {
    margin: 40px 0;
    position: relative;
    font-size: 26px;
    color: #FFDE78;
    font-weight: 800;
}

.advantage-content .text {
    color: rgba(255, 255, 255, 1);
    text-align: justify;
    min-height: 100px;
}

.advantage-content .tip-box {
    width: 100%;
    position: absolute;
    display: flex;
    margin-top: 120px;
    /* bottom: 50px; */
    bottom: -60px;
}

.advantage-content .tip-box .line-box {
    padding-left: 15px;
    position: relative;
    top: -22px;
    z-index: 99;
    flex: 1;
}

.advantage-content .tip-box .line-box .content {
    width: calc(100% + 25px);
    display: flex;
}

.advantage-content .tip-box .right-line {
    display: inline-block;
    width: 50%;
    height: 35px;
    border-bottom: 1px dashed rgba(255, 255, 255, .64);
    border-right: 1px dashed rgba(255, 255, 255, .64);
}

.advantage-content .tip-box .right-line::after {
    top: 31px;
    left: 5px;
    position: absolute;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .64);
}

.advantage-content .tip-box .line1 {
    display: inline-block;
    width: calc(50% + 70px);
    height: 35px;
    border-top: 1px dashed rgba(255, 255, 255, .64);
}

.advantage-content .tip-box .line2 {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 35px;
    border-top: 1px dashed #4223FD;
}

.advantage-content .tip-box .line2::after {
    top: -4px;
    right: -8px;
    position: absolute;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4223FD;

}

.advantage-content .right {
    position: relative;
    top: 60px;
    width: 30%;
    z-index: 9;
}

.advantage-content .right .img {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, .1);
    width: 100%;
}

.advantage-content .right .img img {
    width: 100%;
}

@media screen and (min-width: 1600px) {
    .advantage-content .left {
        width: 75%;
    }

    .advantage-content .right {
        width: 25%;
    }
}

@media screen and (max-width: 991px) {
    .advantage-content .left {
        padding-right: 40px;
    }

    .advantage-content .tip-box .line-box .content {
        width: calc(100% + 25px);
    }

    .advantage-content .tip-box .line1 {
        width: calc(50% + 40px);
    }

    .advantage-content .tip-box {
        bottom: 20px;
    }
}

@media screen and (max-width: 868px) {
    .advantage-content .left {
        padding-right: 20px;
    }

    .advantage-content .title {
        margin: 20px 0;
    }

    .advantage-content .tip-box {
        margin-top: 40px;
    }

    .advantage-content .tip-box .line-box .content {
        width: calc(100% + 25px);
    }

    .advantage-content .tip-box .line1 {
        width: calc(50% + 20px);
    }
}

@media screen and (max-width: 767px) {
    .advantage-content .tip-box .line-box {
        display: none;
    }

    .advantage-content .tip-box {
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

    .advantage-content .left {
        padding-right: 0;
        width: 100%;
    }

    .advantage-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }

    .advantage-content .right {
        margin-top: 20px;
        position: unset;
    }

    .advantage-content .tip-box {
        position: unset;
    }

    .advantage-content .right {
        width: 100%;
    }

    .block.advantage {
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 420px) {
    .advantage-content .right {
        width: 280px;
    }
}

/* advantage END */

/* course START */
.block.plan {
    padding-top: 100px;
}

.plan .intro-wrap {
    display: flex;
    width: 100%;
    margin-top: 40px;
}

.plan .intro-wrap .img-wrap {
    flex: 1;
}

.plan .intro-wrap .img-box {
    width: 100%;
    height: 100%;
}

.plan .intro-wrap .img-box .img {
    width: 100%;
    height: 100%;
}

.plan .intro-wrap .img-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan .intro-wrap .content {
    display: flex;
    padding: 50px 40px;
    background-color: #ffffff;
    margin-top: 0;
    width: 60%;
    flex-direction: column;
    justify-content: center;
}

.index_intro {
    text-align: justify;
    margin-top: 30px;
    /* color: #00235F; */
}

.index_intro p {
    margin-bottom: 12px;
}

.plan-content {
    margin-top: 40px;
}

.plan-content .small-title {
    text-align: center;
    font-size: 18px;
    color: #00235F;
    margin-bottom: 30px;
}

.plan-content .plan-item {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 30px;
}

.plan-content .plan-item .shu {
    margin-top: 70px;
    height: 90px;
    width: 1px;
    background-color: #eee;
}

.plan-title {
    display: flex;
    align-items: center;
}

.plan-title .line {
    flex: 1;
    height: 1px;
    border-bottom: 1px dashed #ccc;
}

.plan-title .name {
    padding: 0 15px;
    font-size: 16px;
    color: #FABC00;
    font-weight: 800;
}

.plan-content .plan-item .text {
    margin-top: 20px;

    text-align: justify;
}

.plan-content .plan-item .text .name {
    font-weight: 800;
    color: #00235F;
}

.plan-content .plan-item .content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.plan-content .plan-item .content .text {
    width: 30%;
    text-align: justify;
}

.plan-content .plan-item .content .text .name {
    margin-bottom: 16px;
    text-align: center;
}

.plan-content .plan-item .content .text .course-text {
    display: flex;
    justify-content: space-between;
}

.knowledge {
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 40px;
}

.knowledge .small-title {
    font-size: 14px;
    margin-top: 10px;
    color: #00235F;
    font-weight: 800;
}

.knowledge .item-box {
    margin-top: 30px;
}

.knowledge .item {
    padding: 25px 0;
    border-radius: 12px;
    background-image: url('../images/knowledge_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, .1);
    height: 100%;
}

.title-color {
    color: #FABC00 !important;
}

.title-center {
    text-align: center;
}

.knowledge .item .title {
    padding: 0 2px 0 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #00235F;
}

.knowledge .item .text {
    padding: 0 10px 0 20px;
    text-align: justify;
}

.knowledge .item .text.main-text {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}

@media screen and (min-width:1400px) {

    /* .knowledge .item .text.main-text ul{
        width: 50%;
    } */
    .plan-content .plan-item .content .text {
        max-width: 400px;
    }
}

@media screen and (max-width:1300px) {
    .plan-content .plan-item .content .text {
        width: 33%;
    }

    .plan-content .plan-item .content .text:nth-of-type(3) {
        width: 36%;
    }

    .plan-content .plan-item .content .text:nth-of-type(5) {
        width: 24%;
    }

}

@media screen and (max-width:1100px) {
    .plan-content .plan-item .content .text {
        width: 35%;
    }

    .plan-content .plan-item .content .text:nth-of-type(3) {
        width: 39%;
    }

    .plan-content .plan-item .content .text:nth-of-type(5) {
        width: 25%;
    }

    .plan-content .plan-item .shu {
        display: none;
    }

}

@media screen and (max-width:991px) {
    .plan .intro-wrap .content {
        padding: 30px 20px;

        width: 54%;

    }

    .plan-content .plan-item .content .text .name {
        text-align: left;
    }

    .plan-content .plan-item .content .text {
        width: 31%;
    }

    .plan-content .plan-item .content .text .course-text {

        display: flex;
        flex-direction: column;
    }

    /* .knowledge .item .text.main-text ul{
        width: 50%;
    } */
}

@media screen and (max-width:767px) {
    .plan .intro-wrap {
        flex-direction: column;
    }

    .plan .intro-wrap .content {
        padding: 30px 20px;
        width: 100%;

    }

    .advantage .title-box .line {
        display: none;
    }

    .advantage-content {
        margin-top: 20px;
    }

    .block.plan {
        padding-top: 60px;
    }

    .knowledge .item .text.main-text {
        flex-direction: column;
    }

    .knowledge .item .text.main-text ul {
        width: 100%;
    }

}

@media screen and (max-width:556px) {
    .plan-content .plan-item .content {
        flex-direction: column;
    }

    .plan-content .plan-item .content .text {
        width: 100% !important;
        margin-bottom: 5px;
    }

    .knowledge {
        padding: 20px;
    }
}

/* .course-list{
    display: flex;
    margin-top: 50px;
    justify-content: center;
}
.course-list .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 380px;
    padding: 55px 20px 45px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0,.1);
    margin-right: 40px;
}
.course-list .item:last-child{
    margin: 0px;
}
.course-list .item .img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.course-list .item .img img{
    width: 100%;
    height: 100%;
}
.course-list .item .content{
    width: 100%;
    color: #00235F;
}
.course-list .item .content .title{
    font-size: 18px;
    color: #00235F;
    margin: 30px 0 20px;
    font-weight: 800;
}
.course-list .item .content .text-list{
    padding-left: 6px;
    font-size: 16px;
}

.course-list .item .content .text-list .text{
    margin-bottom: 10px;
}
.course-list .item .content .text-list i{
    font-size: inherit;
} */
.plan .tip {
    margin-top: 40px;
    text-align: center;
    /* color: #00235F; */
}

@media screen and (max-width: 991px) and (min-width:767px) {
    .course-list .item {
        margin-right: 20px;
        width: 350px;
        padding: 55px 10px 40px 20px;
    }
}

@media screen and (max-width: 767px) {
    /* .course-list{
       flex-direction: column;
       align-items: center;
    }
    .course-list .item{
        margin-right: 0;
        margin-bottom: 30px;
    } */

}

@media screen and (max-width: 420px) {
    /* .course-list .item .img{
        width: 80px;
        height: 80px;
    }
    .course-list .item{
        width: 100%;
        padding: 40px 10px;
    }
    .course-list .item .content .title{
        font-size: 16px;
        margin: 25px 0 15px;
    }
    .course-list .item .content .text-list{
        padding-left: 4px;
        font-size: 14px;
    } */
}

/* course END */
/* local START */
.local .img {
    margin-top: 50px;
    width: 100%;
}

.local .img img {
    width: 100%;
}

.local-list {
    margin-top: 50px;
}

.local .item {}

.local .item-box:first-child .item {
    padding-right: 60px;
}

.local .item-box:last-child .item {
    padding-left: 60px;
}

.local .item .title {

    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #00235F;
}

.local-list .text {
    text-align: justify;
}

.local-swiper {
    margin-top: 40px;
}

.local-swiper-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.local-swiper-title .right {
    display: flex;
}

.local-swiper .people-item {
    height: 100%;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 12px;

}

.local-swiper .people-item .intro {
    text-align: justify;
}

.local-swiper .people-item .name {
    font-size: 20px;
    color: #00235F;
}

.local-swiper .people-item .name::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #FABC00;
    border-radius: 2px;
    margin-bottom: 15px;
}

.local-swiper .button-next,
.local-swiper .button-prev {
    position: unset;
    margin-top: unset;
    background-color: unset;
    color: #00235F;
    border: none;
}

.local-swiper .swiper-button-disabled {
    color: #999;
}

@media screen and (max-width: 991px) {
    .local .item-box:first-child .item {
        padding-right: 30px;
    }

    .local .item-box:last-child .item {
        padding-left: 30px;
    }
}

@media screen and (max-width: 767px) {
    .local .item-box:first-child .item {
        padding-right: 0px;
    }

    .local .item-box:last-child .item {
        padding-left: 0;
    }

    .local-list {
        margin-top: 10px;
    }
}

@media screen and (max-width: 556px) {
    .local-swiper .people-item {
        padding: 20px 10px;
    }

    /* .local-swiper-title{
        flex-direction: column;
        align-items: flex-start;
    }
    .local-swiper-title .right{
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }
    .local-swiper .button-next, .local-swiper .button-prev{
       display: block;
       border:1px solid #ccc;
       background-color: #00235F;
       color: #fff;
    }
    .local-swiper .swiper-button-disabled{
        color: #00235F;
        background-color: unset;
    } */
}

/* local END */
/* student START */
.student .index_intro {
    margin: 30px auto 0;
    /* max-width: 800px; */
}

.student-content {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-content .left .img {
    width: 300px;

}

.student-content .left .img img {
    width: 100%;
}

.student-content .left .tip {
    margin-top: 10px;
    color: #00235F;
}

.student-content .right {
    padding: 50px 100px;
    margin-left: 150px;
    color: #00235F;
    background-color: #ffffff;
    border-radius: 10px;
}

.student-content .right .item:last-child {
    margin: 0;
}

.student-content .right .img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.student-content .right .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-content .right .title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.student-content .right .title {
    font-size: 18px;
    font-weight: 800;
}

.student-content .right .content-list {
    display: flex;
    flex-direction: column;

}

.student-content .right .content-list .item {

    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.student-content .right .content-list .item:last-child {
    margin-bottom: 0;
}

.student-content .right .content-list .item .text {
    margin-right: 80px;
}

.student-content .right .content-list .item .text:last-child {
    margin-right: 0;
}

.student-content .right .text {
    margin-bottom: 10px;
}

.student-content .right .item .text:last-child {
    margin-bottom: 0;
}

.student-content .right .text i {
    margin-right: 20px;
}

@media screen and (max-width: 1400px) {
    .student-content .right .content-list .item .text {
        margin-right: 38px;
    }
}

@media screen and (max-width: 1190px) {
    .student-content .right {
        margin-left: 80px;
        flex: 1;
        padding: 40px;
    }

    .student-content .right .content-list {
        display: flex;
        justify-content: space-around;
    }

    .student-content .right .content-list .item {
        margin-right: 0px;
    }

}

@media screen and (max-width: 991px) {
    .student-content .right .content-list .item .text {
        margin-right: 20px;
    }

    .student-content .right {
        margin-left: 50px;
        padding: 50px 30px;
    }

    .student-content .right .text i {
        margin-right: 10px;
    }
}

@media screen and (max-width: 868px) {
    .student-content .right {
        margin-left: 30px;
        padding: 40px 10px;
    }
}

@media screen and (max-width: 767px) {
    .student-content {
        flex-direction: column;
    }

    .student-content .right {
        margin-left: 0px;
    }

    .student-content .right {
        width: 100%;
    }

    .student-content .left {
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 556px) {

    .student-content .right {
        padding: 40px 10px;
    }

    .student-content .right .text i {
        margin-right: 5px;
    }
}

@media screen and (max-width: 420px) {
    .student-content .right .content-list .item {
        flex-direction: column;
    }

    .student-content .right .title-box {
        justify-content: unset;
    }

    .student-content .right .content-list {
        flex-direction: column;
    }

    .student-content .right .content-list .item {
        margin-bottom: 10px;
    }

    .student-content .right {
        padding-left: 60px;
    }
}

/* comments-swiper START */
.comments-swiper {
    width: 100%;
    position: relative;
}

.comments-swiper .item {
    width: 100%;
    display: flex;
    border-radius: 20px;
    background-color: #FFFFFF;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
}

.comments-swiper .item .left {
    flex: 1;
}

.comments-swiper .item .left .img-box {
    width: 100%;
    height: 100%;
}

.comments-swiper .item .left .img-box .img {
    width: 100%;
    height: 100%;
}

.comments-swiper .item .left .img-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comments-swiper .item .right {
    width: 60%;
}

.comments-swiper .item .right .content {
    width: 100%;
    padding: 40px 30px;
}

.comments-swiper .item .right .content .name {
    font-size: 20px;
    color: #002263;
    font-weight: 800;
}

.comments-swiper .item .right .content .name-box .year {
    color: #A9A9A9;
}

.comments-swiper .item .right .job-title {
    font-weight: 600;
    color: #FABC00;
    margin: 12px 0;
}

.comments-swiper .item .right .text {
    text-align: justify;
}

.comments-swiper .swiper-container {
    padding: 10px 0;
}

.comments-swiper .swiper-slide {
    /*-webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;*/
    -webkit-transform: scale(0) translateX(0);
    -ms-transform: scale(0) translateX(0);
    -o-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
    z-index: 0;
    height: auto;
}

.comments-swiper .swiper-slide-active {
    -webkit-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
    z-index: 1 !important;
    cursor: pointer;
    opacity: 1;
}

.comments-swiper .swiper-slide-prev {
    -webkit-transform: scale(.75) translateX(60%);
    -ms-transform: scale(.75) translateX(60%);
    -o-transform: scale(.75) translateX(60%);
    transform: scale(.75) translateX(60%);
    opacity: .75;
}

.comments-swiper .swiper-slide-next {
    -webkit-transform: scale(.75) translateX(-60%);
    -ms-transform: scale(.75) translateX(-60%);
    -o-transform: scale(.75) translateX(-60%);
    transform: scale(.75) translateX(-60%);
    opacity: .75;
}

@media screen and (max-width: 890px) {

    .comments-swiper .swiper-button-prev,
    .comments-swiper .swiper-button-next {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .comments-swiper .item .right .content {
        padding: 30px 20px;
    }

    .comments-swiper .item .right .job-title {
        margin: 10px 0;
    }
}

@media screen and (max-width: 767px) {
    .comments-swiper .item {
        flex-direction: column;
    }

    .comments-swiper .item .left {
        width: 100%;
        height: 0;
        position: relative;
        padding-bottom: 56%;
    }

    .comments-swiper .item .left .img-box {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
    }

    .comments-swiper .item .right .content {
        padding: 20px;
    }

    .comments-swiper .item .right {
        width: 100%;
    }

    .comments-swiper .item .right .job-title {
        margin: 6px 0;
    }

}

@media screen and (max-width: 1123px) {}

/*swiper-button*/
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    position: absolute;
    margin-top: -25px;
    width: 40px;
    height: 40px;
    z-index: 99;
    background-color: #3f5c96;
    border-radius: 8px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #eee;
    font-size: 24px;
    font-weight: lighter;
}

.swiper-button-next:after {
    content: "\e60d";
    font-family: "iconfont";
}

.swiper-button-prev:after {
    content: "\e608";
    font-family: "iconfont";
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #3f5c96;
    opacity: .9;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: -60px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: -60px;
}

@media screen and (max-width: 767px) {

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next,
    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        right: 46px;
    }
}

@media screen and (max-width: 567px) {

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next,
    .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        display: none;
    }
}

/*swiper-button END*/
/* comments-swiper END */
/* student END */
/* club START */
.club .item {
    display: flex;
    flex-direction: column;

}

.club .content {
    margin-top: 50px;
}

.club .item .img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.6%;
    margin-bottom: 15px;
}

.club .item .img-box .img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.club .item .img-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club .item .img-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.club .item .img-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club .item .title {
    margin: 10px 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #00235F;
}

.club .item .text {
    margin-bottom: 10px;
    text-align: justify;
}

.active-swiper1 {
    margin-top: 40px;
}

.active-swiper1 .item {
    background-color: #ffffff !important;
    box-shadow: unset !important;
    align-items: flex-start !important;
}

.active-swiper1 .item .text {
    text-align: start !important;
    /* height: 60px !important; */
}

.active-swiper1 .button-next,
.active-swiper1 .button-prev {
    background-color: #00235F !important;
    color: #ffffff !important;
}

.active-swiper1 .swiper-button-disabled {
    background-color: unset !important;
    color: #00235F !important;
}

/* club END */
/* active START */
.active .content {
    position: relative;
    padding: 0 45px 0;
    margin-top: 30px;
    /* margin-bottom: 40px; */
}

.active .title,
.enumerate .title {
    font-size: 18px;
    font-weight: 800;
    color: #00235F;
    text-align: center;
}

.active .title.white {
    color: #ffffff;
}

.active .title.center,
.enumerate .title.center {
    text-align: center;
}

.active .item {
    /* padding: 30px; */
    padding-bottom: 10px;
    box-shadow: 0px 2px 106px 0px rgba(0, 35, 95, 0.13);
    border-radius: 10px;
    background-color: #ffffff;

    cursor: pointer;
    transition: background-color .3s;
    overflow: hidden;
    height: 100%;
}

.active .item:hover {
    background-color: #ffffff;
}

.active .swiper-container-autoheight .swiper-wrapper {
    align-items: stretch;
}

.active .swiper-slide {
    height: unset;
}

.active .swiper-slide .img-box {
    margin: unset !important;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 72.3% !important;
    overflow: hidden;
}

.active .img-box .img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.active .img-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active .swiper-slide .item .title {
    margin: unset;
    margin-top: 10px;
    padding: 0 10px 0 20px;
    font-size: 16px;
    color: #00235F;
}

.active .item .name-box {
    margin: 10px 0 4px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.active .item .name-box .img-icon {
    margin-right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}

.active .item .name-box .img-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active .item .name-box .name {
    font-size: 14px;
    font-weight: 800;
    color: #f7c04e;
}

.active .item .text {
    padding: 0 20px;
    /* height: 100px; */
    text-align: justify;
}

.active .button-next,
.active .button-prev {
    background-color: #ffffff;
    color: #00235F;
}

.active .swiper-button-disabled {
    opacity: .8;
}

@media screen and (max-width: 556px) {
    .active .content {
        padding: 0 0 0px;
    }
}

/* active END */
/* enumerate START */
.enumerate .layui-container {
    position: relative;
}

.enumerate .content {
    position: relative;
    padding: 0 45px;
    margin-top: 50px;
}

.enumerate .img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
}

.enumerate .img-box .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.enumerate .img-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enumerate .content .swiper-container {
    border: 1px solid #ccc;
    border-bottom: none;
    border-left: none;
}

.enumerate .item {
    border: 1px solid #ccc;
    border-top: none;
    border-right: 0;
}

.button-next,
.button-prev {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    /* left: 0; */
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: #00235F;
    color: #ffffff;
    cursor: pointer;

}

.button-next i,
.button-prev i {
    font-size: 14px;
}

.button-next {

    right: 0px;
}

.button-prev {
    left: 0px;
}

.enumerate .swiper-button-disabled {
    opacity: .8;
    background-color: unset;
    color: #00235F;
}

@media screen and (max-width:556px) {

    .button-next,
    .button-prev {
        display: none;
    }

    .enumerate .content {
        padding: 0;
    }
}

/* enumerate END */
/* abroad START */
.abroad {
    overflow: unset;
    padding-bottom: 50px;
}

.abroad .index_intro {
    margin: 30px auto 0;
}

.abroad .img-list {
    display: flex;
    justify-content: center;
    margin: 50px 0 70px;
}

.abroad .img-list .item {
    width: 300px;
    margin-right: 40px;
}

.abroad .img-list .item:last-child {
    margin-right: 0;
}

.abroad .tip {
    text-align: center;
    color: #00235F;
    opacity: .8;
    padding-bottom: 30px;
}

.evaluate-wrap {
    position: relative;
    width: 100%;

}

.evaluate-list {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.evaluate-list .item {
    position: relative;
    padding: 40px 30px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 2px 105px 0px rgba(0, 35, 95, 0.13);
    color: #00235F;
    height: 100%;
    width: 100%;
}

.evaluate-list .item .title-box {
    display: flex;
    align-items: center;
    color: #00235F;
    margin-bottom: 40px;
}

.evaluate-list .item .title-box .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 6px;
}

.evaluate-list .item .title-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evaluate-list .item .title-box .name-box {
    flex: 1;
}

.evaluate-list .item .title-box .name {
    font-size: 18px;
    font-weight: 800;
}

.evaluate-list .item .text {
    opacity: .8;
    text-align: justify;
}

.evaluate-list .item .icon-box {
    top: 30px;
    right: 30px;
    position: absolute;
    width: 50px;
}

.evaluate-list .item .icon-box .img {
    width: 100%;
}

@media screen and (max-width:991px) {

    .abroad .img-list .item {
        margin-right: 20px;
    }
}

@media screen and (max-width:767px) {
    .abroad .img-list {
        flex-direction: column;
    }

    .abroad .img-list .item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
        margin-bottom: 15px;
    }

    .abroad .img-list .item:last-child {
        margin: 0 auto;
    }

    .abroad .img-list {
        margin-bottom: 40px;
    }

    .evaluate-list {
        width: 100%;
        position: unset;
    }

    .abroad {
        padding-bottom: 60px;
    }
}

/* abroad END */
/* bonus START */
.block.bonus {
    padding-top: 200px;
}

.bonus .img-box {
    position: relative;
    display: none;
    margin: 50px auto 0;
    width: 100%;
    height: 0;
    padding-bottom: 90.825%;
    overflow: hidden;
}

.bonus .img-box .img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.bonus .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus .table-box {
    display: block;
}

.bonus .table-box .bonus-table {
    background-color: #0e376c;
    color: #fff;
}

.bonus .table-box .bonus-table th {
    background-color: #f7c04e !important;
    color: #0e376c;
    font-size: 16px;
}

.bonus-table thead th {
	text-align: center;
}
.bonus-table td:not(:last-child) {
	text-align: center;
}

.bonus-table p {
    margin-bottom: 0;
}

.bonus-table .highlight {
    background-color: #f7c04e;
}

.bonus .table th,
.bonus .table td {
    padding: 8px;
}

.bonus .table td {
    font-size: 14px;
}

.bonus .table-item1 {
    width: 150px;
}

.bonus .table-item2 {
    width: 300px;
}

@media screen and (max-width:1200px) {
    .block.bonus {
        padding-top: 230px;
    }
}

@media screen and (max-width:1099px) {
    .block.bonus {
        padding-top: 250px;
    }
}

@media screen and (max-width:991px) {
    .block.bonus {
        padding-top: 280px;
    }

    .table-item1 {
        width: 130px;
    }

    .table-item2 {
        width: 250px;
    }
}

@media screen and (max-width:860px) {
    .block.bonus {
        padding-top: 310px;
    }
}

@media screen and (max-width:767px) {
    .bonus .img-box {
        display: block;
    }

    .bonus .table-box {
        display: none;
    }

    .block.bonus {
        padding-top: 60px;
    }
}

/* bonus END */


.plan-content,
.knowledge {
    display: none;
}

.plan .tip {
    display: none;
}

.pytx-wrap {
    margin-top: 50px;
}

.pytx-wrap .pytx-img-wrap1 {
    max-width: 60%;
    margin: 0 auto;
}

.active-swiper3 .swiper-slide .img-box {
    padding-bottom: 76% !important;
}

.local .local-swiper {
    display: none;
}

.local .local-content {
    padding: 50px;
    background-color: #fff;
    margin: 50px auto;
    max-width: 60%;
    text-align: center;
}


.student .student-content {
    display: none;
}

.student .student-content2 {
    margin: 50px 0;
    text-align: center;
}

.student .student-content2 img {
    max-width: 60%;
}

@media screen and (max-width: 767px) {
    .pytx-wrap .pytx-img-wrap1 {
        max-width: 100%;
    }

    .local .local-content {
        padding: 10px;
        max-width: 100%;
    }

    .student .student-content2 img {
        max-width: 100%;
    }
}


table {
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
    margin: 16px 0;
    line-height: 1.5;
}

table th,
table td {
    padding: 8px 16px;
}

/* table tr:nth-of-type(even) td{
    background-color: rgba(1,34,95,.05);
} */
table thead tr {
    background-color: rgba(1, 34, 95, 1);
    color: #fff;
}

table thead tr th {
    padding: 12px 20px;
}

@media screen and (max-width: 767px) {

    table th,
    table td {
        padding: 4px 2px;
        font-size: 12px;
    }

    table thead tr th {
        padding: 12px 8px;
    }
}

.block.bonus {
    padding-top: 50px;
    background-color: #fff;
}

.scholarship-rules {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.scholarship-rules .rules-list {
    padding-left: 20px;
}

.scholarship-rules .rules-list li {

    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    list-style: disc;
}

.white-block {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
}

.category-title {
    font-size: 1.35em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

footer {
    background: rgba(41, 40, 45, 0.95);
    background: url(../images/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

footer,
footer a,
footer a:visited {
    color: #ccc;
    font-size: 13px;
}

footer a:hover,
footer a:focus {
    color: #fff;
}

.footer-top {
    padding: 50px 0 30px;
}

.footer-top img {
    max-width: 100%;
}

.footer-top .footer-logo {
    margin-bottom: 25px;
}

.footer-top .footer-logo img {
    max-height: 40px;
}

footer .title {
    margin-bottom: 15px;
    font-size: 18px;
    color: #e0e0e0;
}

.footer-top p {
    margin-bottom: 5px;
}

.footer-top ul,
.footer-top ul li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-top .footer-link li {
    line-height: 150%;
    position: relative;
}

.footer-top .footer-link li a {
    display: block;
    margin-bottom: 10px;
}

.footer-qrcode {
    width: 100%;
    font-size: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-qrcode .qrcode-item {
    display: inline-block;
    text-align: center;
    width: 120px;
}

.footer-qrcode .qrcode-item+.qrcode-item {
    margin-left: 10px;
}

.footer-qrcode .qrcode-box {
    width: 120px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 6px;
}

.footer-qrcode img {
    width: 100%;
}

@media screen and (max-width: 767px) {

    .footer-top,
    .footer-qrcode {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .footer-qrcode .qrcode-item {
        margin: 0;
        text-align: center;
    }

    .footer-qrcode .qrcode-box {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .footer-qrcode .qrcode-item p {
        font-size: 12px;
        margin-top: 5px;
    }
}

.footer-copyright {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}