@keyframes breath {
  0% {
    opacity: 1;
    transform: scale(1.4);
  }
  25% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  75% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.4);
  }
}
/* pc端 */
@media screen and (min-width: 576px) {
  .banner {
    width: 100%;
    font-size: 0;
  }
  .banner img {
    width: 100%;
  }
  /* main */
  .main {
    background: #F7F8FC;
    padding-top: 50px;
  }
  .main .container {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
  }
  .main .tab-nav {
    width: 300px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  .main .tab-nav .icon {
    display: none;
  }
  .main .tab-nav .band {
    width: 300px;
    height: 195px;
  }
  .main .tab-nav .band img {
    width: 100%;
    height: 100%;
  }
  .main .tab-nav .tab-nav-item {
    color: #333333;
    font-size: 20px;
    display: block;
    width: 300px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: #F6F8FD;
    border-top: 1px solid #fff;
    cursor: pointer;
  }
  .main .tab-nav .tab-nav-item:hover,
  .main .tab-nav .tab-nav-item.active {
    background: #D3EFCF;
    border-color: #D3EFCF;
  }
  .main .tab-content {
    flex-grow: 1;
    overflow: hidden;
  }
  .main .tab-content .tab-content-item {
    margin-bottom: 42px;
  }
  .main .tab-content .head {
    height: 195px;
    text-align: center;
    padding-top: 58px;
    box-sizing: border-box;
  }
  .main .tab-content .head .title {
    color: #333333;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .main .tab-content .head .sub-title {
    color: #999999;
    font-size: 20px;
    position: relative;
    text-transform: uppercase;
  }
  .main .tab-content .head .sub-title::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #5ABD4A;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }
  /*message*/
  .main .message .public-panel {
    margin-bottom: 56px;
  }
  .main .message .body li {
    margin-bottom: 69px;
    margin-right: 18px;
  }
  .main .message .body .title {
    color: #333333;
    font-size: 20px;
    margin-bottom: 37px;
    position: relative;
  }
  .main .message .body .title::after {
    content: '';
    width:40px;
    height:4px;
    background:#1FBC20;
    border-radius:2px;
    position: absolute;
    left: 0;
    bottom: -16px;
  }
  .main .message .body p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
  }
  /* vision */
  .main .vision .public-panel {
    margin-bottom: 67px;
  }
  .main .vision .body li {
    margin-bottom: 69px;
    margin-right: 18px;
  }
  .main .vision .body .title {
    color: #333333;
    font-size: 20px;
    margin-bottom: 37px;
    position: relative;
  }
  .main .vision .body .title::after {
    content: '';
    width:40px;
    height:4px;
    background:#1FBC20;
    border-radius:2px;
    position: absolute;
    left: 0;
    bottom: -16px;
  }
  .main .vision .body p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
  }
  .main .vision .body dl {
    margin-top: 30px;
    color: #666666;
    font-size: 16px;
  }
  .main .vision .body dd {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }
  .main .vision .body dd::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #1fbc20;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  /* path */
  .main .path {
    width: 880px;
    margin-top: 80px;
    margin-bottom: 123px;
  }
  .main .path li {
    width: 440px;
    position: relative;
    padding-top: 54px;
  }
  .main .path li .dot-container {
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 10;
    top: 64px;
    background: #fff;
    
  }
  .main .path li:nth-child(2n-1) .dot-container {
    left: -10px;
  }
  .main .path li:nth-child(2n) .dot-container {
    right: -10px;
  }
  .main .path li .dot {
    width: 13px;
    height: 13px;
    background: #8CDE8C;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    animation: breath 6s linear infinite;
  }
  .main .path li .dot::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1FBC20;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
  .main .path .title {
    margin-bottom: 16px;
  }
  .main .path .title b {
    color: #333333;
    font-size: 38px;
    margin: 0 10px;
  }
  .main .path .title span {
    color: #333333;
    font-size: 14px;
  }
  .main .path .desc {
    color: #666666;
    font-size: 13px;
    line-height: 1.5;
  }
  .main .path .img {
    font-size: 0;
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
  }
  .main .path li:nth-child(2n-1) {
    float: right;
    margin-right: 1px;
    padding-left: 37px;
    padding-right: 136px;
    box-sizing: border-box;
    /* border-left: 1px solid #CCCCCC; */
  }
  .main .path li:nth-child(2n-1)::before {
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: #ccc;
    position: absolute;
    z-index: 1;
  }
  .main .path li:nth-child(2n) {
    clear: both;
    padding-right: 37px;
    box-sizing: border-box;
    /* border-right: 1px solid #CCCCCC; */
  }
  .main .path li:nth-child(2n)::after {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: #ccc;
    position: absolute;
    z-index: 1;
  }
  .main .path li:nth-child(2n-1) .img {
    right: 0;
  }
  .main .path li:nth-child(2n-1) .title b {
    margin-left: 0;
  }
  .main .path li:nth-child(2n) .title {
    text-align: right;
  }
  .main .path li:nth-child(2n) .desc {
    text-align: right;
  }
  /* news */
  .main .news li {
    margin-bottom: 50px;
  }
  .main .news li a {
    display: block;
    overflow: hidden;
    padding: 10px 14px;
    margin-left: 14px;
    box-sizing: border-box;
    border-bottom: 1px solid #EDEDED;
  }
  .main .news li a:hover {
    box-shadow: 0px 0px 20px #EDEDED;
    border-radius: 12px 0 0 12px;
  }
  .main .news .thumb {
    width: 154px;
    height: 154px;
    border-radius: 30% 0 30% 0;
    overflow: hidden;
    float: left;
  }
  .main .news .thumb img {
    max-width: 100%;
    min-height: 100%;
  }
  .main .news .content {
    float: left;
    margin-left: 30px;
  }
  .main .news .content .title {
    color: #333333;
    font-size: 20px;
    margin: 50px 0 28px 0;
  }
  .main .news .content .time {
    color: #B3B3B3;
    font-size: 20px;
  }
  .main .news .bottom {
    text-align: right;
    clear: both;
  }
  .main .news .bottom a {
    display: inline-block;
    line-height: 50px;
    text-align: center;
    width:160px;
    height:50px;
    border:1px solid rgba(90,189,74,1);
    border-radius:25px;
    color: #5ABD4A;
    font-size: 18px;
    background: none;
    cursor: pointer;
    margin-right: 42px;
  }
}

/* mobile端 */
@media screen and (max-width: 575.98px) {
  .banner {
    width: 10rem;
    overflow: hidden;
    font-size: 0;
    padding-top: 50px;
  }
  .banner img {
    width: 10rem;
  }
  .main {
    background: #F7F8FC;
    padding-top: 0.3rem;
  }
  .main .container {
    width: 9.4rem;
    margin: 0 auto;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
  }
  .main .tab-nav .icon {
    position: fixed;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
  }
  .main .tab-nav .icon #toggleSlideBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
  }
  .main .tab-nav embed {
    width: 1rem;
    height: 1rem;
  }
  .main .tab-nav ul {
    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 .tab-nav li {
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
  }
  .main .tab-nav li a {
    color: #333;
    display: block;
  }
  .main .tab-nav .band {
    display: none;
  }
  .main .tab-content {
    width: 100%;
  }
  .main .tab-content .head {
    text-align: center;
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
    box-sizing: border-box;
  }
  .main .tab-content .head .title {
    color: #333333;
    font-size: 0.5rem;
    margin-bottom: 0.2rem;
  }
  .main .tab-content .head .sub-title {
    color: #999999;
    font-size: 0.4rem;
    position: relative;
    text-transform: uppercase;
  }
  .main .tab-content .head .sub-title::after {
    content: '';
    width: 1rem;
    height: 2px;
    background: #5ABD4A;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    bottom: -0.3rem;
    transform: translateX(-50%);
  }
  /* message */
  .main .message .public-panel {
    margin-bottom: 0.4rem;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .main .message .public-panel .left {
    width: 4rem;
    float: left;
    font-size: 0;
    margin-right: 0.4rem;
  }
  .main .message .public-panel .left img {
    width: 100%;
  }
  .main .message .public-panel .right {
    width: 100%;
    /* float: right;
    overflow: hidden; */
  }
  .main .message .public-panel .right .content {
    /* width: 4.8rem; */
  }
  .main .message .public-panel .right .title {
    color: #333;
    font-size: 0.5rem;
    margin-bottom: 0.2rem;
    margin-top: 0.2rem;
    font-weight: 600;
  }
  .main .message .public-panel .right .job {
    color: #666;
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
  .main .message .public-panel .right .dark {
    color: #666;
    font-size: 0.4rem;
    word-break: break-all;
  }
  .main .message .public-panel .right .desc p{
    color: #666;
    font-size: 0.4rem;
    line-height: 1.8;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre-wrap;
  }
  .main .message .body {
    padding: 0 10px;
    box-sizing: border-box;
  }
  .main .message .body li {
    margin-bottom: 0.6rem;
  }
  .main .message .body .title {
    color: #333333;
    font-size: 0.5rem;
    margin-bottom: 0.4rem;
    position: relative;
    font-weight: 500;
  }
  .main .message .body .title::after {
    content: '';
    width:1rem;
    height:2px;
    background:#1FBC20;
    border-radius:2px;
    position: absolute;
    left: 0;
    bottom: -0.2rem;
  }
  .main .message .body p {
    color: #666;
    font-size: 0.4rem;
    line-height: 1.8;
    word-break: break-all;
    white-space: pre-wrap;
  }
  .main .vision .public-panel {
    margin-bottom: 0.4rem;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .main .vision .public-panel .left {
    width: 6rem;
    margin: 0 auto;
    font-size: 0;
  }
  .main .vision .public-panel .left img {
    width: 100%;
  }
  .main .vision .public-panel .right p {
    color: #666;
    font-size: 0.4rem;
    line-height: 1.8;
    word-break: break-all;
  }
  .main .vision .public-panel .right .dark p {
    color: #333;
  }
  .main .vision .body {
    padding: 0 10px;
    box-sizing: border-box;
  }
  .main .vision .body li {
    margin-bottom: 1rem;
  }
  .main .vision .body .title {
    color: #333333;
    font-size: 0.5rem;
    margin-bottom: 0.4rem;
    position: relative;
  }
  .main .vision .body .title::after {
    content: '';
    width: 1rem;
    height: 2px;
    background:#1FBC20;
    border-radius:2px;
    position: absolute;
    left: 0;
    bottom: -0.2rem;
  }
  .main .vision .body p {
    color: #666;
    font-size: 0.4rem;
    line-height: 1.8;
  }
  .main .vision .body dl {
    margin-top: 0.8rem;
    color: #666666;
    font-size: 0.4rem;
  }
  .main .vision .body dd {
    margin-bottom: 0.3rem;
    position: relative;
    /* padding-left: 20px; */
    line-height: 1.5;
  }
  .main .vision .body dd::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #1fbc20;
    border-radius: 50%;
    float: left;
    margin-right: 0.18rem;
    margin-top: 0.12rem;
    /* position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); */
  }
  /* path */
  .main .path {
    margin-bottom: 0.8rem;
  }
  .main .path li {
    min-height: 2rem;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 0.3rem;
  }
  .main .path .title {
    margin-bottom: 0.2rem;
  }
  .main .path .title b {
    color: #333;
    font-size: 0.6rem;
  }
  .main .path .title span {
    color: #333;
    font-size: 0.4rem;
  }
  .main .path .desc {
    color: #666;
    font-size: 0.3rem;
    line-height: 1.8;
  }
  .main .path .img {
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .main .path .img img {
    width: 2rem;
    height: 2rem;
  }
  .main .path li:nth-child(2n-1) {
    padding-right: 2.5rem;
    text-align: left;
  }
  .main .path li:nth-child(2n-1) .img {
    right: 10px;
  }
  .main .path li:nth-child(2n) {
    padding-left: 2.5rem;
    text-align: right;
  }
  .main .path li:nth-child(2n) .img {
    left: 10px;
  }
  /* news */
  .main .news li a {
    display: block;
    padding: 0.3rem 0.5rem;
    box-sizing: border-box;
    border-bottom: 1px solid #EDEDED;
    overflow: hidden;
  }
  .main .news .thumb {
    width: 2rem;
    height: 2rem;
    border-radius: 20% 0 20% 0;
    overflow: hidden;
    float: left;
  }
  .main .news .thumb img {
    width: 100%;
    height: 100%;
  }
  .main .news .content {
    height: 2rem;
    float: left;
    margin-left: 0.5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .main .news .content .title {
    color: #333333;
    font-size: 0.5rem;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .main .news .content .time {
    color: #B3B3B3;
    font-size: 0.4rem;
  }
  .main .news .bottom {
    text-align: right;
    clear: both;
  }
  .main .news .bottom a {
    display: inline-block;
    line-height: 0.8rem;
    text-align: center;
    width:3rem;
    height:0.8rem;
    border:1px solid rgba(90,189,74,1);
    border-radius: 1rem;
    color: #5ABD4A;
    font-size: 0.4rem;
    background: none;
    cursor: pointer;
    margin-right: 0.2rem;
  }
}