section.stock{
    padding-top: calc(70 * var(--rpx-50));;
    padding-bottom: calc(70 * var(--rpx-50));
}

.stock-ctn{
    display: flex;
    justify-content: space-between;
    width: clamp(900px, calc(62.5vw + 300px), 1500px);
}

.stock-ctn .left{
    width: clamp(320px, calc(22.9167vw + 100px), 540px);
    flex: 0 0 auto;
}

.stock-ctn .right{
    width: clamp(560px, calc(22.9167vw + 340px), 780px);
    flex: 0 0 auto;
}

.stock-ctn .right iframe{
    appearance: none;
    border: none;
}

.stock-ctn .inner-title{
    font-size: calc(24 * var(--rpx));
    margin-bottom: .5em;
}

.stock-ctn .desc{
    padding-left: .75em;
    position: relative;
}

.stock-ctn .desc::before{
    content: "";
    position: absolute;
    width: 2px;
    height: calc(100% - 1em);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(to bottom, var(--theme-navy), var(--theme-grass));
}

.stock-ctn .desc p{
    margin: 0;
    padding-top: .125em;
    padding-bottom: .125em;
}

section.reports{
    padding-top: calc(70 * var(--rpx-50));
    padding-bottom: calc(70 * var(--rpx-50));
}


section.notice{
    padding-top: calc(140 * var(--rpx-50));
    padding-bottom: calc(120 * var(--rpx-50));
    overflow: hidden;
    color: #fff;
}

.notice-list{
    margin-top: calc(40 * var(--rpx-50));
    align-items: stretch;
}

.notice-list .flex-item{
    border: 1px solid rgba(255, 255, 255, .2);
    padding: calc(30 * var(--rpx));

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: .3s;
}

.notice-list .flex-item:hover{
    border: 1px solid rgba(255, 255, 255, 1);
    background-color: #fff;
    color: var(--theme-navy);
}

.notice .month{
    font-size: calc(34 * var(--rpx));
}
.notice .year{
    font-size: calc(18rem / 16);
    margin-top: calc(4 * var(--rpx));
}
.notice .title{
    font-size: calc(22 * var(--rpx));
    font-weight: bold;
    line-height: calc(34em / 22);
    min-height: calc(68em / 22);
    margin-top: calc(36 * var(--rpx));
    color: #fff;
    transition: .3s;
}

.notice-list .flex-item:hover .title{
    color: #000;
}

.notice .btn-ctn{
    margin-top: calc(40 * var(--rpx-50));
    display: flex;
    justify-content: center;
}

.notice-list .flex-item i.arr{
    position: absolute;
    right: calc(30 * var(--rpx));
    top: calc(30 * var(--rpx));
    transform: translate(-50%, 50%) scale(1.5);
    opacity: 0;
    transition: .3s;
}


.notice-list .flex-item:hover i.arr{
    opacity: 1;
    transform: none;
}

.notice .link-more:hover{
    text-decoration: underline;
    font-weight: bold;
    color: inherit;
}

section.shareholders{
    padding-top: calc(140 * var(--rpx-50));
    padding-bottom: calc(120 * var(--rpx-50));
}

.shareholders .content-ctn{
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, calc(6.25vw - 40px), 80px);
}


.shareholders .content-ctn .left,
.shareholders .content-ctn .right{
    width: clamp(440px, calc(34.375vw + 110px), 770px);
    flex: 0 0 auto;
}

.shareholders .content-ctn .left img{
    display: block;
    width: 100%;
    height: auto;
}

.content-ctn .right a{
    color: var(--theme-navy);
}

.content-ctn .right a:hover{
    text-decoration: underline;
}

.swiper-report{
    overflow: visible;
}

.swiper-report .swiper-slide{
    margin-right: calc(60 * var(--rpx-50));
}

.swiper-report .controls{
    position: relative;
    margin-top: calc(50 * var(--rpx-50));
    display: flex;
    gap: calc(30 * var(--rpx));
    flex-direction: row;
    align-items: center;
}

@media (max-width: 960px) {
    .stock-ctn{
        display: block;
        width: 100%;
    }

    .stock-ctn .left{
        width: 100%;
    }

    .stock-ctn .right{
        width: 100%;
    }

    .shareholders .content-ctn{
        gap: 5%;
    }

    .shareholders .content-ctn .left{
        width: 45%;
    }

    .shareholders .content-ctn .right{
        width: 50%;
    }
}

@media (max-width: 750px) {
    .notice-list{
        --column: 1;
        --gap: calc(30 * var(--rpx));
    }

    .shareholders .content-ctn{
        flex-direction: column;
        gap: calc(30 * var(--rpx));
    }

    .shareholders .content-ctn .left,
    .shareholders .content-ctn .right{
        width: 100%;
    }

}

