/**====================================================*/
.yn-breadcrumb {}

.yn-breadcrumb a {
    color: var(--yn-font-color-main);
    text-decoration: unset;
    word-wrap: break-word;
}

.yn-breadcrumb a:hover {
    /* color: var(--yn-main-color); */
    text-decoration: underline;
}

.yn-breadcrumb .yn-breadcrumb-label {
    color: #333;
    text-decoration: unset;
    word-wrap: break-word;
}

.yn-breadcrumb .yn-breadcrumb-label:hover {
    /* color: var(--yn-main-color); */
    text-decoration: unset;
}

/**====================================================*/
.yn .plate {}

.yn .plate .img img {
    width: 100%;
    height: 160px;
    border-radius: 4px;
    object-fit: cover;
}

.yn .more {}

/**====================================================*/

.yn {}

.yn h1 {}

.yn h2 {
    color: var(--yn-font-color-main);
    /* height: 26px; */
    line-height: 26px;
}

.yn .arrow-marker {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}

/* 圆形背景 */
.yn .arrow-marker::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--yn-main-color);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 箭头部分 */
.yn .arrow-marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.yn h3 {}

.yn .text-1 {
    font-family: Roboto !important;
    color: #333;
    line-height: 1.6;
    width: 100%;
    min-width: 100%;
}

.yn-pc {
    display: block;
}

.yn-mobile {
    display: none;
}

.yn-style-center .sec-title {
    text-align: center;
}

.yn-style-center .sec-summary {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.yn-style-left .sec-title {
    text-align: left;
}

.yn-style-left .sec-summary {
    text-align: left;
}


@media (max-width: 479px) {
    .yn-pc {
        display: none;
    }

    .yn-mobile {
        display: block;
    }

    .sec-summary {
        max-width: 100%;
        margin: 0;
    }
}