/* banner */
.home-banner {
    position: relative;
}

.home-swiper .swiper-slide {
    height: 100vh;
}

.home-swiper {
    overflow: hidden;
}

.home-swiper .swiper-slide {
    position: relative;
}


.banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner-text2 {
    position: absolute;
    top: 3.6rem;
    left: 50%;
    transform: translateX(-50%);
}

.banner-text img {
    display: block;
}

.link-banner-btn {
    position: absolute;
    left: 50%;
    bottom: 2.4rem;
    height: 0.6rem;
    width: 1.8rem;
    border: 1px solid #fff;
    transform: translateX(-50%);
    border-radius: 12px;
}

.link-banner-btn a {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.link-banner-btn a span {
    color: #fff;
    font-size: 16px;
}

.link-banner-btn a img {
    transition: all 0.4s ease;
    margin-left: 6px;
}

.link-banner-btn a:hover img {
    transform: translateX(6px);
}


/* 股票容器 */
.stock-container {
    width: 5rem;
    height: 2.2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    display: flex;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0.3rem;
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    z-index: 9;
    min-width: 500px;
    min-height: 220px;
}

/* 左侧数据区域 */
.stock-data {
    height: 100%;
    position: relative;
}

/* 股票头部信息 */
.stock-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}

.stock-code {
    font-size: 0.16rem;
    color: #000;
    font-weight: 400;
    margin-right: 8px;
}

.stock-symbol {
    font-size: 0.22rem;
    color: rgba(51, 51, 51, 1);
    font-weight: 700;
}

/* 价格区域 */
.price-section {
    margin-bottom: 0.16rem;
    display: flex;
    align-items: center;
}

.current-price {
    font-size: 0.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

/* 价格涨跌颜色 */
.price-up {
    color: #e74c3c !important;
    /* 红色 */
}

.price-down {
    color: #2ecc71 !important;
    /* 绿色 */
}

.price-change {
    display: flex;
    align-items: flex-end;
}

.change-amount {
    font-size: 0.18rem;
    font-weight: 600;
    color: #333;
}

.change-percent {
    font-size: 0.16rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 2px;
    color: #fff;
    margin-left: 4px;
}

/* 涨跌百分比背景色 */
.change-up {
    background-color: #2ecc71 !important;
    /* 绿色背景 */
}

.change-down {
    background-color: #e74c3c !important;
    /* 红色背景 */
}

/* 股票详情数据 */
.stock-details {
    display: flex;
    font-size: 0.16rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    padding: 2px 0;
    margin-right: 0.2rem;

    min-width: 88px;
    align-items: center;
}

.detail-label {
    color: #999;
    font-weight: 400;
}

.detail-value {
    font-weight: 600;
    font-size: 0.16rem;
}

/* 数据颜色 */
.text-up {
    color: #e74c3c !important;
    /* 红色 */
}

.text-down {
    color: #2ecc71 !important;
    /* 绿色 */
}

.text-normal {
    color: #333 !important;
    /* 黑色 */
}

/* 右侧图表区域 */
.stock-chart {
    display: flex;
    flex-direction: column;
}

.update-time {
    font-size: 0.16rem;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 0.26rem;
    font-weight: 400;
    padding: 0 5px;
    text-align: right;
    margin-top: 5px;
}

.chart-image {
    width: 2.2rem;
    height: 1.2rem;
    display: block;
    min-width: 220px;
    min-height: 120px;
}

/* 公司介绍 */
.Company-Introduction {
    background-image: url(/ycig/lib/home/images/gsjj-bg.png);
    background-size: cover;
    padding-top: 1.4rem;
    padding-bottom: 1px;
}

.Company-Introduction h2 {
    margin-bottom: 0.2rem;
    color: rgba(0, 104, 207, 1);
    font-size: 0.32rem;

}

.Company-Introduction .text {
    width: 8.22rem;
}

.Company-Introduction .text p {
    color: rgba(69, 74, 77, 1);
    font-size: 0.18rem;
    line-height: 0.3rem;
    margin-bottom: 0.2rem;
}

.Company-Introduction .parameter {
    margin-top: 0.8rem;
    width: 6.78rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.Company-Introduction .parameter .item .num {
    font-size: 0.5rem;
    display: block;
    color: rgba(0, 104, 207, 1);
}

.Company-Introduction .parameter .item .description {
    color: rgba(102, 102, 102, 1);
    font-size: 16px;
    margin-top: 0.12rem;
}

.Company-Introduction .link-btn {
    margin-bottom: 0.95rem;
}

/* 网站板块展示 */
.Web-section-part {
    padding: 1rem 0 1.2rem 0;
}

.Web-section-part .top-part {
    display: flex;
    justify-content: center;
}

.Web-section-part .top-part .left {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.Web-section-part .top-part .level-1 {
    width: 10.6rem;
    height: 3.2rem;
    border-radius: 0.12rem;
    position: relative;
    transition: all 0.4s;
    background-repeat: no-repeat;
    background-size: cover;
}

.Web-section-part .top-part .level-1 p {
    font-size: 0.4rem;
    font-weight: 700;
    color: #fff;
    bottom: 0.5rem;
    left: 0.4rem;
    position: absolute;
}

.Web-section-part .top-part .level-1 p a {
    font-size: 0.4rem;
    font-weight: 700;
    color: #fff;
}

.Web-section-part .top-part .level-1:hover,
.Web-section-part .top-part .level-2 .item:hover,
.Web-section-part .top-part .right:hover,
.Web-section-part .development-report:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 5px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}



.Web-section-part .top-part .level-1 img {
    position: absolute;
    left: 0.4rem;
    bottom: 0.7rem;
    width: 2.24rem;
    height: 1.82rem;
}

.Web-section-part .top-part .level-2 {
    width: 5.2rem;
}

.Web-section-part .top-part .level-2 .item {
    width: 100%;
    height: 3.2rem;
    border-radius: 0.12rem;
    position: relative;
    transition: all 0.4s;
}

.Web-section-part .top-part .level-2 .item p {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    bottom: 0.5rem;
    left: 0.4rem;
    position: absolute;
}

.Web-section-part .top-part .level-2 .item p a {
    font-size: 0.4rem;
    font-weight: 700;
    color: #fff;
    bottom: 0.5rem;
}

.Web-section-part .top-part .right {
    width: 5.2rem;
    height: 6.6rem;
    border-radius: 0.12rem;
    position: relative;
    transition: all 0.4s;
    margin-left: 0.2rem;
}

.Web-section-part .top-part .right p a {
    font-size: 0.4rem;
    font-weight: 700;
    color: rgba(255, 223, 171, 1);
    bottom: 0.5rem;
    left: 0.4rem;
    position: absolute;
}

.Web-section-part .development-report {
    width: 16rem;
    height: 3.2rem;
    margin: 0 auto;
    margin-top: 0.2rem;
    border-radius: 0.12rem;
    position: relative;
    transition: all 0.4s;
}

.Web-section-part .development-report p {
    font-size: 0.4rem;
    font-weight: 700;
    color: #fff;
    bottom: 0.5rem;
    left: 0.4rem;
    position: absolute;
}

/* 产品 */
.re-boast {
    background-image: url(/ycig/lib/home/images/boat-bg.png);
    background-size: cover;
    padding-bottom: 0.8rem;
}

.re-boast h5 {
    text-align: center;
    font-size: 0.4rem;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 0.2rem;
}

.bt-text {
    width: 12rem;
    margin: 0 auto;
}

.bt-text p {
    text-align: center;
    color: rgba(69, 74, 77, 1);
    font-size: 0.18rem;
    line-height: 0.3rem;
}

.bt-text p:nth-child(2) {
    margin-bottom: 0.2rem;
}

.re-boast .text-top {
    display: flex;
    justify-content: center;
    margin-top: 0.6rem;
}

.re-boast .text-top .top-l,
.re-boast .text-top .top-r {
    background-size: cover;
    width: 2.2rem;
    height: 0.6rem;
}

.re-boast .text-top .top-l a,
.re-boast .text-top .top-r a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: rgba(0, 128, 226, 1);
}

.re-boast .text-top .top-l {
    background-image: url(/ycig/lib/home/images/arrow-left.png);
    margin-right: 0.1rem;
    background-size: cover;
}

.re-boast .text-top .top-r {
    background-image: url(/ycig/lib/home/images/arrow-right.png);
    margin-left: 0.1rem;
    background-size: cover;
}

.re-boast .text-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-content-mb {
    display: none;
}

.text-content-mb .top,
.text-content-mb .center,
.text-content-mb .bottom {
    display: flex;
    justify-content: space-around;
    margin: 10px 0;
}

.text-content-mb .top a,
.text-content-mb .center a,
.text-content-mb .bottom a {
    color: rgba(0, 128, 226, 1);
}

.re-boast .text-content .center {
    width: 11rem;
    height: 7.2rem;
    background-image: url(/ycig/lib/home/images/arrow-center.png);
    background-size: cover;
    position: relative;
}

.re-boast .text-content .center .left {
    left: 0.6rem;
    position: absolute;
    top: 4rem;
    padding-top: 0;
}

.re-boast .text-content .center .left a {
    font-size: 0.24rem;
    color: #FFF;
    font-weight: 700;
}

.re-boast .text-content .center .right {
    right: 0.6rem;
    position: absolute;
    top: 4rem;
    padding-top: 0;
}

.re-boast .text-content .center .right a {
    font-size: 0.24rem;
    color: #FFF;
    font-weight: 700;
}

.re-boast .text-content .center .item-center {
    top: 3.8rem;
    position: absolute;
    right: 41%;
}

.re-boast .text-content .center .item-center a {
    display: block;
    width: 2rem;
    color: rgba(0, 128, 226, 1);
    font-size: 0.3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

.re-boast .text-content .center .top {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

.re-boast .text-content .center .top a {
    font-size: 0.24rem;
    color: #FFF;
    font-weight: 700;
}

.re-boast .text-content .left {
    padding-top: 1.68rem;
}

.re-boast .text-content .right {
    padding-top: 1.68rem;
}

.re-boast .text-content .left .top-l,
.re-boast .text-content .right .top-r {
    background-size: cover;
    width: 2.2rem;
    height: 0.6rem;
    margin-bottom: 0.2rem;
}

.re-boast .text-content .left .top-l {
    background-image: url(/ycig/lib/home/images/arrow-left.png);
}

.re-boast .text-content .right .top-r {
    background-image: url(/ycig/lib/home/images/arrow-right.png);
}

.re-boast .text-content .left .top-l a,
.re-boast .text-content .right .top-r a {
    width: 100%;
    height: 100%;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    color: rgba(0, 128, 226, 1);
    justify-content: center;
    align-items: center;
}

/* 新闻 */
.News-Center {
    padding: 1rem 0 0.8rem 0;
}

.News-Center h5 {
    color: rgba(51, 51, 51, 1);
    font-size: 0.4rem;
    font-weight: 700;
    text-align: center;
}

.News-Center .news-content {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.News-Center .news-swiper {
    width: 6.4rem;
    height: 4.8rem;
    overflow: hidden;
    position: relative;
}

.News-Center .news-swiper .swiper-slide {
    background-size: cover;
    height: 100%;
    border-radius: 0.12rem;
    overflow: hidden;
    transition: all 0.4s;
}

.News-Center .news-swiper .swiper-slide:hover {
    transform: scale(1.04);
}

.News-Center .news-swiper a {
    display: block;
    position: relative;
    height: 100%;
}

.News-Center .news-swiper .news-text {
    width: 6.4rem;
    height: 2.1rem;
    background-image: url(/ycig/lib/home/images/text-shadow.png);
    position: absolute;
    bottom: 0;
    padding-top: 0.8rem;
}

.News-Center .news-swiper .news-text .news-date {
    color: #fff;
    margin-bottom: 6px;
    font-size: 0.22rem;
    padding-left: 0.3rem;
    font-weight: 700;
}

.News-Center .news-swiper .news-text .news-title {
    color: #fff;
    width: 4.9rem;
    margin-left: 0.3rem;
    font-size: 0.22rem;
    font-weight: 700;
    line-height: 0.32rem;
}

.News-Center .first-news,
.News-Center .list-news {
    width: 4.6rem;
    height: 4.8rem;
    border-radius: 0.12rem;
    background-color: rgba(245, 245, 245, 1);
}



.News-Center .news-swiper .news-swipe-pagination {
    width: 70px;
    right: 0.28rem;
    bottom: 0.64rem;
    left: inherit;
}


.News-Center .news-swiper .news-swipe-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

.News-Center .news-swiper .news-swipe-pagination .swiper-pagination-bullet-active {
    width: 26px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
}



.News-Center .first-news .nr-content {
    padding: 0.2rem;
    transition: all 0.4s;
}

.News-Center .first-news .nr-content:hover {
    transform: scale(1.02);
}

.News-Center .first-news .news-date {
    color: rgba(153, 153, 153, 1);
    font-size: 0.18rem;
}

.News-Center .first-news .news-title {
    margin-top: 6px;
    font-size: 0.18rem;
    color: rgba(51, 51, 51, 1);
    height: 0.6rem;
}

.News-Center .first-news img {
    width: 100%;
    height: 3.2rem;
    transition: all 0.4s;
}

.News-Center .first-news img:hover {
    transform: scale(1.02);
}

.News-Center .first-news .btn a {
    color: rgba(153, 153, 153, 1);
}

.News-Center .list-news {
    padding: 0 0.2rem;
}

.News-Center .list-news .news-item {
    height: 1.4rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

.News-Center .list-news .news-item:nth-child(1) {
    display: none;
}

.News-Center .list-news .news-item:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.News-Center .list-news .news-item:last-child {
    border-bottom: 1px dashed rgba(0, 0, 0, 0);
}

.News-Center .list-news .news-item .news-date {
    color: rgba(153, 153, 153, 1);
    font-size: 0.18rem;
    margin-top: 0.2rem;
}

.News-Center .list-news .news-item .news-title {
    margin-top: 6px;
    font-size: 0.18rem;
    color: rgba(51, 51, 51, 1);
    height: 0.6rem;
}

.News-Center .list-news .news-item .btn {
    display: flex;
    margin-bottom: 0.1rem;
}

.News-Center .list-news .news-item .btn a {
    color: rgba(153, 153, 153, 1);
    font-size: 0.2rem;
}

.news-link-btn {
    margin: 0 auto;
    margin-top: 0.6rem;
    background-color: transparent;
    border: 1px solid rgba(196, 196, 196, 1);
}

.news-link-btn a span {
    color: rgba(153, 153, 153, 1);
}

@media screen and (max-width: 750px) {
    #stockContainer {
        display: none;
    }

    .re-boast .text-content {
        display: none;
    }

    .text-content-mb {
        display: flex;
        margin-top: 12px;
        flex-wrap: wrap;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
      .text-content-mb div{
          background-color: #ffffff;
          color: #004588;
          border-radius: 8px;
          font-weight: 500;
          text-align: center;
          transition: all 0.3s ease;
          flex-grow: 1;
          width: 90%;
          padding: 8px 5px;
          border: 1px solid #c3c3c3;
      }
  .text-content-mb  a{
      text-align:center;
      display:block;
      padding:4px;
      color: #004588;
  }
    .home-swiper .swiper-slide {
        height: 50vh;
    }

    .banner-text img,
    .banner-text2 img {
        width: 80vw !important;
    }

    /* 公司介绍部分字体调整 */
    .Company-Introduction h2 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .Company-Introduction .text {
        width: 96%;
    }

    .Company-Introduction .text p {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 12px;
        text-indent: 20px;
    }

    .Company-Introduction .parameter {
        margin-top: 30px;
        width: 96%;
        margin-bottom: 40px;
    }

    .Company-Introduction .parameter .item .num {
        font-size: 36px;
    }

    .Company-Introduction .parameter .item .description {
        font-size: 14px;
        margin-top: 8px;
    }

    .Company-Introduction .link-btn {
        margin-bottom: 45px;
    }

    /* 网站板块展示字体调整 */
    .Web-section-part {
        padding: 15px 0 30px;
    }

    .Web-section-part .top-part .level-1 p a {
        font-size: 22px;
    }

    .Web-section-part .top-part .level-2 {
        flex-direction: column;
        width: 100%;
        height: 20vh;
        margin: 0 auto;
        border-radius: 12px;
    }

    .Web-section-part .top-part .level-2 a {
        width: 100%;
    }

    .Web-section-part .top-part .level-2 .item {
        width: 100%;
        height: 100%;
        background-size: cover;
        border-radius: 12px;
    }
.Web-section-part .top-part .level-1 p{
    font-size:26px;
}
    .Web-section-part .top-part {
        flex-direction: column;
    }

    .Web-section-part .top-part .left {
        width: 100%;
        padding: 4px;
        flex-direction: column;
    }

    .Web-section-part .top-part .level-1 {
        width: 100%;
        height: 20vh;
        margin: 0 auto;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .Company-Introduction {
        background-size: inherit;
    }

    .Web-section-part .top-part .level-2 .item p,
    .Web-section-part .top-part .right p,
    .Web-section-part .development-report p {
        font-size: 22px;
    }

    .Web-section-part .top-part .right p a,
    .Web-section-part .top-part .level-2 .item p a {
        font-size: 22px;
    }

    .Web-section-part .development-report {
        background-size: cover;
        height: 20vh;
        margin: 0 auto;
        width: 98%;
        border-radius: 12px;
        margin-top: 5px
    }

    .Web-section-part .top-part .level-1 img {
        width: 40%;
        height: 80%;
    }

    .Web-section-part .top-part .right {
        width: 98%;
        margin: 0 auto;
        height: 20vh;
        background-size: cover;
        border-radius: 12px;
    }

    /* 产品部分字体调整 */
    .re-boast {
        padding: 28px 0 50px;
    }

    .re-boast h5 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .bt-text {
        width: 96%;
    }

    .bt-text p {
        font-size: 14px;
        line-height: 22px;
        text-align: left;
    }

    .re-boast .text-top {
        margin-top: 24px;
        display: none;
    }

    .re-boast .text-top .top-l a,
    .re-boast .text-top .top-r a {
        font-size: 20px;
    }

    .re-boast .text-content .center .left a,
    .re-boast .text-content .center .right a,
    .re-boast .text-content .center .top a {
        font-size: 24px;
    }

    .re-boast .text-content .center .item-center a {
        font-size: 32px;
        line-height: 34px;
    }

    .re-boast .text-content .left .top-l a,
    .re-boast .text-content .right .top-r a {
        font-size: 20px;
    }

    .re-boast .text-top .top-l {
        margin-right: 5px;
    }

    .re-boast .text-top .top-r {
        margin-left: 5px;
    }

    .re-boast .text-top .top-l,
    .re-boast .text-top .top-r {
        width: 140px;
        height: 38px;
    }

    /* 新闻中心字体调整 */
    .News-Center {
        padding: 40px 0 32px;
    }

    .News-Center .news-content {
        flex-direction: column;
    }

    .News-Center h5 {
        font-size: 24px;
    }

    .News-Center .news-swiper {
        width: 100%;
        height: 40vh;
    }

    .News-Center .news-swiper .news-text {
        width: 100%;
        height: 100px;
    }


    .News-Center .news-swiper .news-swipe-pagination {
        bottom: 8px;
    }

    .News-Center .news-swiper .news-text .news-date,
    .News-Center .news-swiper .news-text .news-title {
        font-size: 16px;
    }

    .News-Center .news-swiper .news-text .news-title {
        line-height: 24px;
        width: 100%;
    }

    .News-Center .first-news .news-date,
    .News-Center .list-news .news-item .news-date {
        font-size: 14px;
    }

    .News-Center .first-news .news-title,
    .News-Center .list-news .news-item .news-title {
        font-size: 14px;
        height: 40px;
    }



    .News-Center .list-news .news-item .btn a {
        font-size: 16px;
    }

    .news-link-btn {
        margin-top: 24px;
    }

    .News-Center .first-news {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .News-Center .first-news img {
        height: 38vh;
        margin: 5px;
        width: 98%;
    }

    .News-Center .list-news {
        width: 100%;
        height: auto;
        background-color: #fff;
    }

    .News-Center .list-news .news-item {
        height: auto;
        background-color: rgba(245, 245, 245, 1);
        padding: 5px;
        margin-bottom: 10px;
    }

    /* 股票相关字体调整 */
    .stock-code {
        font-size: 14px;
    }

    .stock-symbol {
        font-size: 18px;

    }

    .current-price {
        font-size: 24px;

    }

    .change-amount {
        font-size: 16px;

    }

    .change-percent {
        font-size: 14px;

    }

    .stock-details {
        font-size: 14px;
    }

    .link-banner-btn {
        height: 42px;
        width: 148px;
    }

    .link-banner-btn a span {
        font-size: 15px;
    }

    .link-btn {
        height: 40px;
        width: 160px;
    }

    .link-btn a span {
        font-size: 15px;
    }


}