@charset "utf-8";

/* CSS Document */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(180deg, #f7faff 0%, #f4f7fb 100%);
    color: #12213a;
    line-height: 1.6;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
}

/* avrOverview.css */

.card {
    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(20, 53, 120, 0.06);
}

/* 顶部主视觉 */
.hero {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
    gap: 20px;
    padding: 32px;
    margin-bottom: 18px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.hero-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2f7cff, #165dff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(31, 111, 255, 0.24);
}

.hero-icon img {
    width: 28px !important;
    height: 28px !important;
    fill: white !important;
}

.hero-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: #11284d;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(14px, 1.5vw, 22px);
    color: #42516d;
    margin-left: 70px;
    margin-bottom: 28px;
}

.hero-desc {
    max-width: 620px;
    font-size: clamp(14px, 1.2vw, 18px);
    color: #2a3650;
}

.hero-desc p+p {
    margin-top: 8px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 两列信息区 */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.section-card {
    padding: 24px 24px 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    margin-bottom: 18px;
    color: #10284f;
}

.section-title .section-icon .section-title-text {
    margin: 0;
}

.section-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2f7cff, #165dff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon img {
    width: 18px !important;
    height: 18px !important;
    fill: #fff !important;
}

.feature-list,
.env-list,
.func-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.feature-list li,
.env-list li,
.func-list li {
    position: relative;
    padding-left: 24px;
    color: #30415e;
    font-size: clamp(14px, 1.1vw, 17px);
}

.feature-list li::before,
.env-list li::before,
.func-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1f6fff;
    font-weight: 800;
}

/* 表格 */
.table-card {
    padding: 24px;
    margin-bottom: 18px;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 8px;
    border-radius: 14px;
    border: 1px solid #e7edf5;
}

table {
    width: 100%;
    border-collapse: collapse;
/*    min-width: 680px;*/
    background: #fff;
}
table,
tbody,
tr{
	border:none
}


th,
td {
    padding: 16px 18px;
    text-align: center;
    border-bottom: 1px solid #e7edf5;
    border-right: 1px solid #e7edf5;
    font-size: clamp(14px, 1vw, 16px);
    color: #243552;
}

th:last-child,
td:last-child {
    border-right: none;
}

th {
    background: #f5f9ff;
    font-weight: 700;
    color: #1b3159;
}

tr:last-child td {
    border-bottom: none;
}

.note {
    margin-top: 10px;
    font-size: 13px;
    color: #7b879c;
}

/* 功能概述 */
.func-card {
    padding: 24px;
}

.func-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin-top: 4px;
}

/* 平板 */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-subtitle {
        margin-left: 70px;
    }

    .hero-right img {
        max-width: 260px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .func-grid {
        grid-template-columns: 1fr;
    }
}

/* 手机 */
@media (max-width: 768px) {
    body {
        padding: 12px;
    }

    .hero {
        padding: 20px;
        gap: 18px;
    }

    .hero-header {
        gap: 12px;
    }

    .hero-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .hero-subtitle {
        margin-left: 58px;
        margin-bottom: 18px;
    }

    .section-card,
    .table-card,
    .func-card {
        padding: 18px;
    }

    th,
    td {
        padding: 14px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-header {
        align-items: flex-start;
    }

    .hero-header-text {
        display: flex;
        flex-direction: column;
    }

    .hero-right img {
        max-width: 220px;
    }
}


/* avrSpecifications.css */


/* 顶部头图 */
.hero1 {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border-radius: 22px;
    box-shadow: 0 8px 20px rgba(32, 72, 145, 0.06);
    border: 1px solid #f0f3f8;
    overflow: hidden;
    padding: 34px 32px;
    min-height: 220px;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 55%;
}

.hero1 h1 {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.hero1 p {
    font-size: clamp(16px, 1.7vw, 24px);
    color: #333;
    font-weight: 600;
}

.hero-image {
    position: absolute;
    right: 36px;
    bottom: 10px;
    width: min(30vw, 290px);
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.hero-circle {
    position: absolute;
    right: 18px;
    top: 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1463ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 3;
}

.hero-bg {
    position: absolute;
    right: 40px;
    bottom: -20px;
    width: 240px;
    height: 120px;
    background: rgba(20, 99, 255, 0.08);
    border-radius: 120px 120px 0 0;
    z-index: 1;
}

/* 中间网格 */
.content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.left-col,
.right-col {
    display: grid;
    gap: 20px;
}

.card1 {
    background: #ffffff;
    border: 1px solid #f1f3f8;
    border-radius: 22px;
    box-shadow: 0 8px 20px rgba(32, 72, 145, 0.06);
    overflow: hidden;
}

.spec-card {
    padding: 22px 24px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 800;
    color: #111;
}

.icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1463ff;
    flex-shrink: 0;
}

.icon img {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr+tr td {
    padding-top: 12px;
}

.spec-table td {
    vertical-align: top;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.55;
}

.spec-table td:first-child {
    width: 140px;
    color: #111;
    font-weight: 700;
    white-space: nowrap;
    padding-right: 16px;
}

.spec-table td:last-child {
    color: #222;
    font-weight: 500;
}

/* 右侧特点卡 */
.feature-card {
    padding: 18px 22px;
}

.feature-brand {
    color: #1463ff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.feature-top {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon-wrap {
    text-align: center;
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 8px;
    border: 1px solid #edf3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1463ff;
    box-shadow: inset 0 0 0 6px #fbfdff;
}

.feature-icon-circle img {
    width: 34px !important;
    height: 34px !important;
    fill: currentColor !important;
}

.feature-small {
    font-size: 13px;
    color: #111;
    font-weight: 700;
    line-height: 1.3;
}

.feature-title {
    font-size: clamp(14px, 2vw, 34px);
    line-height: 1.25;
    font-weight: 800;
    color: #111;
	margin: -32px 0 0 10px;
}

.feature-desc {
    font-size: clamp(14px, 1vw, 16px);
    color: #222;
    line-height: 1.7;
    font-weight: 500;
    padding-left: 94px;
}


/* 平板 */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        width: 60%;
    }
}

/* 手机 */
@media (max-width: 768px) {
    body {
        padding: 12px;
    }


    .hero1 {
        padding: 24px 18px 18px;
        min-height: auto;
        display: block;
    }

    .hero-content {
        width: 100%;
    }

    .hero-image {
        position: static;
        width: 180px;
        margin: 18px auto 0;
    }

    .hero-bg {
        right: 50%;
        transform: translateX(50%);
        width: 180px;
        height: 90px;
        bottom: 8px;
    }

    .hero-circle {
        top: 16px;
        right: 16px;
    }

    .spec-card,
    .feature-card {
        padding: 18px 16px;
    }

    .card-title {
        font-size: 24px;
    }

    .spec-table td:first-child {
        width: 92px;
    }

    .feature-top {
        grid-template-columns: 66px 1fr;
        gap: 12px;
    }

    .feature-icon-circle {
        width: 58px;
        height: 58px;
    }

    .feature-desc {
        padding-left: 0;
        margin-top: 8px;
    }
	
	table,
	tbody,
	tr{
		boder:none;
	}

}

@media (max-width: 480px) {
    .hero1 h1 {
        font-size: 24px;
    }

    .hero1 p {
        font-size: 15px;
    }

    .spec-table td {
        display: block;
        width: 100% !important;
    }

    .spec-table td:first-child {
        padding-bottom: 4px;
    }

    .spec-table tr {
        display: block;
        padding-bottom: 8px;
    }
	
	table,
	tbody,
	tr{
		boder:none;
	}
	
	tr,td{
		padding: 0px;
	}
}