.main {
    max-width: 1200px;
    margin: auto;
}
body {
    min-width: 1200px !important;
}
/*body {*/
/*  min-width: 1200px !important;*/
/*}*/

body, button, input, select, textarea {
    color: #444;
    font: 14px/1.5 "PingFang SC", Arial, "Microsoft YaHei", sans-serif;
}

ul,ol {
    list-style-type: none;
}

a {
    color: #444;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
    -webikit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
}

a:hover {
    color: #e5a414;
}

* {
    margin: 0;
    padding: 0;
}


.banner {
    /*margin-top: 55px;  */
    height: 150px;
    background-color: #23B1EC;
}


.banner .banner-text {
    padding-top: 51px;
}
.banner .banner-text{
    font-size: 36px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 28px;
}

.banner .other-banner-text{
    padding-top: 28px;
}
.banner .banner-text .text-1,.banner .other-banner-text .text-1{
    font-size: 32px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}

.banner .banner-text .text-2,.banner .other-banner-text .text-2{
    font-size: 25px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}

.section .btn{
    font-size: 16px;
    font-family: PingFang SC-Bold, PingFang SC;
    font-weight: bold;
    color: #FFFFFF;
    background-color:  #E53A77;
    margin-top: 10px;
    padding: 6px 20px;
    border-radius: 50px 50px 50px 50px;
}

.section-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.section-1 .right-box{
    margin-left: 88px;
}
.section-1 .right-box p{

    font-size: 30px;
    font-family: PingFang SC-Bold, PingFang SC;
    font-weight: bold;
    color: #333333;
    line-height: 40px;
}

.section-2{
    margin-top: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-2 .text-box .title-1{
    font-size: 30px;
    font-family: PingFang SC-Bold, PingFang SC;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}
.section-2 .text-box .text-1{
    font-size: 16px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    /* 英文单词过长换行问题 */
    /*word-wrap: break-word;*/
    /*word-break: break-all;*/
    /* 英文单词过长换行问题 */
}

.section-2 .img-box .text-1 {
    text-align: center;
    font-size: 14px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    margin-top: 19px;
}

.section-3{
    margin-top: 74px;
    background-color: #F5F5F5;
}
.section-3 .section-box{
    padding-top: 41px;
    padding-bottom: 41px;
}

.section-3 .section-box .title-1{
    font-size: 30px;
    font-family: PingFang SC-Bold, PingFang SC;
    font-weight: bold;
    color: #333333;
}

 .ul-box li{
    margin-bottom: 10px;
}

.ul-box .text-2{
    font-size: 16px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.section-3 .section-box  .text-3{
    font-size: 22px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
}

.section-4{
    font-size: 14px;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    margin-top: 24px;
}

.section-5{
    margin-top: 75px;

    font-size: 30px;
    font-family: PingFang SC-Bold, PingFang SC;
    font-weight: bold;
    color: #333333;
       text-align: center;
}

.section-2 .title-2{
    font-size: 22px;
    font-family: PingFang SC-Bold, PingFang SC;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}
.margin-bottom-100{
    margin-bottom: 100px;
}
.icon{
    color: #23B1EC;
    font-weight:bold;
}
.img-box-index{
    z-index: 99;
}
.aboutUs-div{
    background-color: #EEEEEE!important;
}

.img-box  img:hover {
    cursor:pointer; //经过页面时，鼠标会变成一只手
}


.img-box  img {
    width: 100%;
    height: 100%;
    /*background-color: #F9B008;*/
    transform: scale(1.0); //原本的图片的大小，图片原来的大小不变
    transition: all 0.6s;
    display: flex;
}

.img-box img:hover{
    transform: scale(1.2);//图片按照比例，整体放大了1.2倍
}