.main {
    padding-top: 80px;
}

/* about banner */
.main .bg {
    width: 100%;
    height: 370px!important;
    background-repeat: no-repeat;
    background-size: cover;
}

/* about 二级导航 */
.main .nav {
    height: 84px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    padding-left: 9.27vw;
}

.main .nav ul {
    display: flex;
    /*flex: 1;*/
}

.main .nav ul li {
    width: 9.271vw;
}

.main .nav ul li a {
    display: block;
    width: 100%;
    line-height: 84px;
    text-align: center;
    position: relative;

}

.main .nav ul li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background-color: #015cb9;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s;
}

.main .nav .navRight {
    display: flex;
    align-items: center;
    width: 21.563vw;
    background-color: #f5f5f5;
    padding-left: 1.563vw;
}

.main .nav .navRight a {
    font-size: 0.729vw;
}

.main .nav .navRight .san {
    display: flex;
    align-items: center;
    color: #999999;
}

.main .nav .navRight .san::after {
    content: "";
    display: block;
    border: 4px solid transparent;
    border-left: 4px solid #ccc;
    margin: 0 0.573vw 0 1.094vw;
}

.main .nav .navRight .navActive {
    color: #015cb9;
}

.main .nav ul li .active {
    background-color: #f2fbff;
    color: #015cb9;
    /* border-bottom: 3px solid #015cb9; */
}

.main .nav ul li .active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #015cb9;
    position: absolute;
    bottom: 0;
}

.main .nav ul li:hover a {
    background-color: #f2fbff;
    color: #015cb9;
}

.main .nav ul li:hover a::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #015cb9;
    position: absolute;
    bottom: 0;
}

/* 内容 */
.main .content {
    width: 80vw;
    margin: 0 auto;
    padding-top: 1.5vw;
}

.main .about-bg {
    background-image: url("../image/main-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 18.542vw;
}

.main .content .about-title {
    font-size: 2.5vw;
    text-align: center;
}

.main .content .about-line {
    width: 70px;
    height: 2px;
    background-color: #015cb9;
    margin: 1.823vw auto 3.073vw;
}

.main .content .about-text {
    font-size: 16px;
    line-height: 2;
    max-height: 18.75vw;
    overflow-y: auto;
    letter-spacing: 0.047vw;
    color: #666666;
}
/*滚动条的宽度*/
.main .content .about-text::-webkit-scrollbar {
    width: 4px;
}

/*滚动条里面小方块*/
.main .content .about-text::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: inset 0 0 5px #015cb9;
    background: #015cb9;
}

/*滚动条里面轨道*/
.main .content .about-text::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #d2d2d2;
    border-radius: 0;
    background: #d2d2d2;
}

.main .content .about-shu {
    width: 70.625vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4.583vw auto 0;
}

.main .content .item .number .number-span {
    font-size: 3.75vw;
    margin-right: 0.9375vw;
    font-weight: bold;
}

.main .content .item .number span {
    font-size: 3.75vw;
}

.main .about-foot {
    width: 100%;
    height: 28.646vw;
    background-image: url("../image/about-foot.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main .about-foot video {
    width: 61.25vw;
    height: 34.479vw;
    position: absolute;
    top: -11.146vw;
    right: 50%;
    transform: translateX(50%);
}
.main .about-bg img,.main .about-bg video {
    display: block;
    max-width: 90% !important;
    margin: 0 auto;
    /*width: 100% !important;*/
    height: auto !important;
}

/*分页*/
.pagination {
    list-style: none;
    display: flex;
    justify-content: center;
    /* margin-top: 30px; */
    padding: 0;
}

.pagination .active {
    color: #fff;
    background: #015cb9;
}

.pagination li {
    /*padding: 8px 14px;*/
    /*background: #f6f6f6;*/
    /*font-size: 14px;*/
    /*margin-right: 5px;*/
    /*color: #4e6ef2;*/
    color: #333;
    /*padding: 0 17px;*/
    width: 36px;
    text-align: center;
    margin: 0 4px;
    display: inline-block;
    vertical-align: middle;
    line-height: 32px;
    background: #e8e8e8;
    /* border: 1px solid #fff;
    box-shadow: 0px 1px 10px #e4e3e3; */
    border-radius: 3px;
}

.pagination li a {
    display: block;
    cursor: pointer;
}

.pagination li:hover {
    background: #015cb9;
}

.pagination li:hover a {
    color: #fff;
}

.pagination li:last-child {
    margin-right: 0;
    /*background: #f6f6f6;*/
}

.pagination li:first-child {
    /*background: #f6f6f6;*/
}

.pagination li:last-child a,
.pagination li:first-child a {
    color: #333;
}

.pagination li:last-child:hover a,
.pagination li:first-child:hover a {
    color: #fff;
}

.pagination .disabled {
    display: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.page {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page input {
    width: 70px;
	height: 43px;
	background-color: #ffffff;
	border-radius: 2px;
	border: solid 1px #dcdfe6;
    margin: 0 18px;
    text-align: center;
    font-size: 14px;
    color: #777777;
}
.page .count {
    margin-right: 18px;
    font-size: 16px;
}
.page .to {
    margin-left: 18px;
}
.main .content .about-text p,.main .content .about-text div,.main .content .about-text span {
    font-size: 16px !important;
    line-height: 2 !important;
    color:#666666 !important;
}


@media (max-width:800px){
    .pagination {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .pagination li {
        margin-bottom: 5px;
    }
    .main .bg {
        height: 19.733vw !important;
        background-size: contain;
    }
    .main .nav {
        padding-left: 0;
        min-height: 52px;
        height: 100%;
    }
    .main .nav ul {
        flex-wrap: wrap;
    }
    .main .nav ul li a {
        line-height: 52px;
    }
    .main .nav .navRight {
        display: none;
    }
    .main .nav ul li {
        width: calc(100vw / 3);
    }
    .nav-3>div {
        flex-wrap: wrap;
        margin: 0 !important;
    }
    .nav-3>div a {
        width: 90px;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
    }
    .main .content .about-line {
        margin: 20px auto;
    }
    .main .content .about-title {
        font-size: 24px;
    }
    .main .content .about-text {
        font-size: 0.938vw;
        line-height: 1.5;
        max-height: 100%;
        overflow-y: none;
        letter-spacing: 0.047vw;
        color: #666666;
        font-size: 14px;
    }
    .main .content {
        padding-top: 30px;
        padding-bottom: 30px;
        width: 95vw;
    }
    .main .content .about-shu {
        display:none;
    }
    .main .about-foot video {
        width: 80.25vw;
        height: 44.479vw;
        top: -16.146vw;
    }
    .main .about-foot {
        height: 28vh;
    }
    .main .content .about-text p,.main .content .about-text div,.main .content .about-text span {
        font-size: 14px !important;
    }
    .main .about-bg {
        padding-bottom: 0;
    }
}

