/**
 * 可信企业认定页面样式
 * 完全匹配原始页面的视觉效果
 */

/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.5;
}

/* 主容器 */
.rd_body {
    padding: 0 30px;
    background-image: url('rd_bg.jpg');
    background-size: 100%;
    background-repeat: repeat-y;
    background-position: 0% 0%;
    min-height: 100vh;
}

/* 间距工具类 */
.u-gap {
    background-color: transparent;
    margin-top: 0;
    margin-bottom: 0;
}

/* 文本样式 */
.u-text {
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.u-text span {
    font-size: 15px;
    color: #303133;
}

.u-text--info span {
    color: #909399;
}

/* 公司名称 */
.company-name {
    justify-content: center;
}

.company-name span {
    font-weight: bold;
    font-size: 24px;
    color: #3585e8;
}

/* 认定标签 */
.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 10000px;
    border: 1px solid #5abb56;
}

.tag span {
    font-size: 14px;
    color: #5abb56;
    margin-left: 5px;
}

/* 分隔线 */
.line {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #ccc;
}

/* 区块标题 */
.section-title span {
    font-weight: bold;
    font-size: 18px;
    color: #303133;
}

/* 行布局 */
.u-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
}

/* 列布局 */
.u-col {
    padding-left: 0;
    padding-right: 0;
    display: block;
    text-align: left;
}

.u-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    margin-left: 0;
}

.u-col-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
    margin-left: 8.33333%;
}

/* 说明文字 */
.description-text span {
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .rd_body {
        padding: 0 15px;
    }

    .u-row {
        flex-wrap: nowrap;  /* 不换行,保持同一行 */
    }

    .u-col-3 {
        flex: 0 0 30%;  /* 标签占30% */
        max-width: 30%;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .u-col-8 {
        flex: 0 0 70%;  /* 值占70% */
        max-width: 70%;
        margin-left: 0;
        margin-bottom: 10px;
        word-break: break-all;  /* 长文本自动换行 */
    }
}
