/* pc端 */
@media screen and (min-width: 576px) {
  * {
    box-sizing: border-box;
  }
  body {
    background: #f7f8fc;
  }
  .banner {
    width: 100%;
    margin-bottom: 52px;
  }
  .banner img {
    width: 100%;
  }
  .main {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding-bottom: 190px;
    display: flex;
    justify-content: space-between;
  }
  .box {
    width: 100%;
  }
  .box .public-nav-icon {
    display: none;
  }
  .box .list {
    width: 100%;
  }
  .box .list li {
    width: 100%;
    height: 80px;
    line-height: 80px;
    color: #333333;
    font-size: 20px;
    background: #f6f8fd;
    cursor: pointer;
    border-bottom: 1px solid #fff;
  }
  .box .list li a {
    display: inline-block;
    width: 100%;
    height: 80px;
    line-height: 80px;
    color: #333333;
  }
  .box .list li:last-child {
    border-bottom: none;
  }
  .box .list li.active a, .box .list li:hover a{
    background: #d4eed0;
    border-bottom: 1px solid #d4eed0;
  }
  .left {
    width: 300px;
  }
  .right {
    width: 860px;
  }
  .item .txt-box {
    margin-top: 70px;
    width: 100%;
  }
  .item h3 {
    width: 100%;
    font-size: 28px;
    color: #333;
    margin-bottom: 22px;
    position: relative;
  }
  .item h4 {
    font-size: 20px;
    color: #999;
    margin-bottom: 20px;
  }
  .hen {
    width: 50px;
    height: 2px;
    background: #5abd4a;
    margin: 0 auto;
  }
  .img-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .img-box {
    width: 414px;
    height: 420px;
    margin-bottom: 35px;
    border: 1px solid #f2f2f2;
  }
  .img-box a {
    display: block;
    height: 420px;
    display: flex;
    flex-direction: column;
  }
  .img-box:hover {
    border: 1px solid #1fbc20;
  }
  .img-box>img {
    width: 417px;
    height: 267px;
  }
  .p-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .p-box img {
    position: absolute;
    right: 30px;
    bottom: 30px;
  }
  .p-box p {
    font-size: 16px;
    color: #333;
  }
  .el-carousel {
    overflow: hidden;
  }
  #carousel .carousel-box, #carousel .el-carousel__container, #carousel .el-carousel__item{
    padding-top: 30px;
    height: 950px;
  }
  .img-box.active {
    position: relative;
    overflow: hidden;
    transition: all linear .3s;
  }
  #carousel .el-carousel__indicators {
    width: 100%;
  }
  #carousel .el-carousel__indicator{
    width: 12px;
    height: 12px;
    border: 1px solid #5abd4a;
    border-radius: 100%;
    background: #fff;
    margin-right: 10px;
    padding: 0;
  }
  #carousel .el-carousel__indicator.is-active{
    background: #5abd4a;
  }
  #carousel .el-carousel__button {
    opacity: 0;
  }
  #carousel .el-carousel__indicators--outside {
    bottom: 70px;
  }
}
/* mobile端 */
@media screen and (max-width: 575.98px) {
  .banner {
    margin-top: 50px;
    font-size: 0;
  }
  .banner img {
    width: 100%;
  }
  .main {
    background: #F7F8FC;
    padding-top: 0.3rem;
  }
  .main .left .band {
    display: none;
  }
  .main .left .public-nav-icon {
    position: fixed;
    z-index: 10;
    top: 50%;
    left: 0.3rem;
    transform: translateY(-50%);
  }
  .main .left .public-nav-icon embed {
    width: 1rem;
    height: 1rem;
  }
  .main .left .public-nav-icon #toggleSlideBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
  }
  .main .left .list {
    background: #fff;
    font-size: 0.4rem;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #eee;
    position: fixed;
    z-index: 10;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
  }
  .main .left .list li {
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
  }
  .main .left .list li a {
    color: #333;
    display: block;
  }
  .main .right {
    width: 9.4rem;
    margin: 0 auto;
    background: #fff;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .main .right .txt-box {
    text-align: center;
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
    box-sizing: border-box;
  }
  .main .right .txt-box h3 {
    color: #333333;
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
  }
  .main .right .txt-box h4 {
    color: #999999;
    font-size: 0.4rem;
    position: relative;
    text-transform: uppercase;
  }
  .main .right .txt-box h4::after {
    content: '';
    width: 1rem;
    height: 2px;
    background: #5ABD4A;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    bottom: -0.3rem;
    transform: translateX(-50%);
  }
  .el-carousel {
    overflow: hidden;
    margin-bottom: 0.4rem;
  }
  .main .right .el-carousel__container {
    font-size: 0;
    height: 10rem;
  }
  .main .right .el-carousel__container .el-carousel__item {
    /* overflow: hidden; */
  }
  .main .right .img-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .main .right .img-list .img-box {
    width: 48%;
    border: 1px solid #f2f2f2;
    margin-bottom: 0.3rem;
    overflow: hidden;
  }
  .main .right .img-list a {
    display: block;
    font-size: 0;
  }
  .main .right .img-list .img-box .thumb {
    width: 100%;
  }
  .main .right .img-list .img-box .arrow {
    display: none;
  }
  .main .right .img-list .img-box p {
    font-size: 0.4rem;
    color: #333;
    padding: 0.15rem;
    box-sizing: border-box;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    line-height: 1.5;
    overflow: hidden;
    height: 1.4rem;
  }
  .main .right .el-carousel__indicators {
    position: absolute;
    bottom: 0rem;
    transform: translateX(-50%);
    font-size: 0;
  }
  .main .right .el-carousel__indicator button {
    width: 0.2rem;
    height: 0.2rem;
    border: 1px solid #1fbc20;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
  }
  .main .right .el-carousel__indicator.is-active button {
    background: #1fbc20;
  }
}
