/* 首页样式 */

a {
    color: #000;
}

/* 第三行：交易商标志展示区 */
.brokers-section {
    background-color: #f9f9f9;
    width: 100%;
    padding: 20px 0;
}

.brokers-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 115px;
}

.broker-logo {
    width: 182px;
    height: 95px;
    /*background-color: red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;

    padding: 3px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(117,117,117,0.1);
    border-radius: 4px;
    border: 1px solid #F0F0F0;
}

.broker-logo img {
    width: 182px;
    height: 95px;
}

.index1_container {
    width: 820px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 0px 20px 0px 0px;
}

/* 搜索区域样式 */
.index1_search-area {
    display: flex;
    align-items: center;
    border: 2px solid #0DACA7;
    border-radius: 4px;
    margin-bottom: 20px;
    height: 70px;
}

.index1_search-icon {
    width: 30px;
    height: 30px;
    /*background-color: red;*/
    margin: 0 10px;
}

.index1_search-icon img {
    width: 27px;
    height: 27px;

}


.index1_search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
}

.index1_search-btn {

    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    height: 55px;
    width: 103px;
    margin-right: 10px;
    font-size: 19px;
    background: #0DACA7;
    border-radius: 4px;
}

/* 公告区域样式 */
.index1_notice-area {
    background: linear-gradient(to right, #0DACA7, #f4fbfa);
    padding-left: 10px;
    margin-top: 50px;
    font-size: 14px;
    color: #fff;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    position: relative;
    width: 450px;
}

.index1_notice-content {
    position: absolute;
    width: 100%;
    transition: transform 0.5s ease;
}


.index1_notice-item {
    height: 40px;
    line-height: 40px;
}


/* 浏览历史样式 */
.index1_history-area {


    padding: 15px 25px;
    background: #fafafa;
    /*margin-top: 25px;*/
    /*min-height: 50px;*/
    /*height: auto;*/
    /*overflow: hidden;*/
    background: #F2F5F8;
    border-radius: 4px;
}

.index1_history-title {
    font-size: 18px;
    color:#666;
    margin-bottom: 14px;
    margin-top: 0px;
}

.index1_history-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    /*min-height: calc(3 * (20px + 10px));*/
}

.index1_history-item {
    display: flex;
    align-items: center;
    width: calc(16.666% - 8.33px);
    margin-bottom: 5px;
    font-size: 14px;
}

.index1_history-item {
    display: flex;
    align-items: center;
}

.index1_history-item-icon {
    width: 20px;
    height: 20px;
    /*background-color: red;*/
    margin-right: 5px;
}

.index1_history-item-icon img {
    width: 20px;
    height: 20px;

}


/* 监管区域样式 */
.index1_regulatory-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.index1_regulatory-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0);
    border-radius: 4px;
    border: 1px solid #D2D2D2;
}

.index1_regulatory-icon {
    width: 40px;
    height: 20px;
    /*background-color: red;*/
    margin-right: 10px;
}

.index1_regulatory-icon img {
    width: 40px;
    height: 20px;

}


.index1_regulatory-name {
    margin-right: 10px;
    font-size: 14px;
}

.index1_regulatory-companies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.index1_regulatory-company {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-right: 13px;
}

.index1_regulatory-company-icon {
    width: 20px;
    height: 20px;
    /*background-color: red;*/
    margin-right: 5px;
}

.index1_regulatory-company-icon img {
    width: 20px;
    height: 20px;

}

/* 首页资讯样式 开始 */

.index_news_container {
    width: 820px;
    background: #fafafa;
    margin: 0 auto;
    /* padding: 20px; */
    padding-top: 40px;;
}

/* 标题和Tab容器 */
.index_news_header-container {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

/* 板块标题样式 */
.index_news_section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-right: 20px;
    padding-bottom: 10px; /* 与Tab项对齐 */
}

/* Tab 栏样式 */
.index_news_tab-nav {
    display: flex;
    /* border-bottom: 2px solid #e5e5e5; */
    flex: 1; /* 让Tab栏占据剩余空间 */
}

.index_news_tab-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
    position: relative;
}

.index_news_tab-item a{
    color:#333;
}
.index_news_tab-item.active {
    color: #000;
    font-weight: bold;
}

.index_news_tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00bfa5;
}

/* 新闻列表样式 */
.index_news_news-list {
    display: flex;
    width: 98%;
    flex-direction: column;
    gap: 15px;
}

.index_news_news-item {
    padding: 15px;

    display: flex;
    gap: 15px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(117,117,117,0.1);
    border-radius: 4px;
}

.index_news_news-content {
    flex: 1;
}

.index_news_news-tag {
    display: inline-block;
    color: #ffffff;
    padding: 2px 7px;
    margin-right: 4px;
    font-size: 12px;
    margin-bottom: 5px;
    background: #4468E2;
    border-radius: 2px;
}

.index_news_news-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.index_news_news-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.index_news_news-footer {
    display: flex;
    align-items: center;
    font-size: 12px;

}

.index_news_news-category {
    border: 1px solid #95a7e6;
    background-color: #dce2f8;
    color: #2d48aa;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 10px;

}



.index_news_news-category2 {

    color: #000;
    padding: 2px 0px;
    border-radius: 3px;

}

.index_news_news-time {
    margin-left: auto;
    color: #999;
}

.index_news_news-img {
    width: 200px;
    height: 120px;
    background-color: #f5f5f5;
    flex-shrink: 0;
    overflow: hidden;
}

.index_news_news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.index_news_news-loadmore {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
}

.index_news_news-loadmore a{
    font-weight: 400;
    font-size: 20px;
    color: #4468E2;
    line-height: 21px;
}

.index_news_news-loadmorejiantou{
    display: inline-block; /* 让旋转生效 */
    transform: rotate(90deg); /* 旋转90度 */
    transform-origin: bottom; line-height: 8px; /* 设置旋转中心点（可选） */
}

/* 首页资讯样式 结束 */


/*首页右侧广告*/

.index_you1_container {
    width: 380px;
    margin: 0 auto;
    padding: 20px;
}

.index_you1_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.index_you1_img-box {
    width: 345px;
    height: 190px;
    margin: 0 auto;
}

.index_you1_img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.index_you1_text {
    font-size: 15px;
    line-height: 23px;
    font-weight: 600;
    color: #333;
    padding: 10px;


}

/*首页右侧广告 结束*/


/*首页曝光*/
.index_baoguang_container {
    width: 380px;
    margin: 0 auto;
    padding: 10px;
}

.index_baoguang_list-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.index_baoguang_exposure-list {
    position: relative;
    padding-left: 20px;
}

.index_baoguang_exposure-list::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-dot;
    background-image: radial-gradient(circle, #000 1px, transparent 1px);
    background-size: 2px 8px;
}

.index_baoguang_exposure-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 10px;
}

.index_baoguang_exposure-item::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 5px;

    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #333;
    width: 10px;
    height: 10px;
}

.index_baoguang_exposure-tag {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    margin-right: 5px;
    background: #4468E2;
    border-radius: 2px;
}

.index_baoguang_exposure-type {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
}

.index_baoguang_exposure-title {
    margin-bottom: 8px;
    margin-top: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #666666;
    line-height: 18px;
}

.index_baoguang_exposure-img {
    width: 311px;
    height: 137px;
    margin-bottom: 8px;
}

.index_baoguang_exposure-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.index_baoguang_exposure-info {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.index_baoguang_exposure-info .icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-color: #000;
    border-radius: 50%;
}

.index_baoguang_exposure-info .name {
    margin-right: 15px;
}

.index_baoguang_exposure-info .region {
    margin-right: 15px;
}

.index_baoguang_exposure-info .date {
    margin-left: auto;
}

.index_baoguang_icon {
    width: 20px;
    height: 20px;
    margin: 0px 10px;
}

.index_baoguang_icon img {
    height: 20px;
    width: 20px;
}

.index_baoguang_region {
    margin-left: 20px;
}

.index_baoguang_date {
    margin-left: 20px;
}

/*首页曝光 结束*/

/* 首页样式 结束 */