html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

body {
    background: var(--color-grayest);
    color: var(--color-text);
    --font-size-xs: 12px;
    --font-size-sm: .87em;
    --font-size-md: 1.2em;
    --font-size-lg: 1.33em;
    --font-size-lger: 1.47em;
    --font-size-lgest: 1.67em;
    min-height: 100vh;
    background: var(--color-background);
    transition: color .5s, background-color .5s;
    line-height: 1.2;
    font-family: Urbanist, sans-serif;
    font-size: var(--font-size-base);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.catalog-type {
    padding: 2em calc(var(--main-padding) + 50px);
}

.container .col-main h1 {
    margin-bottom: .5em;
    font-size: 2.47em;
    text-align: center;
}

.container main > div:not(.page-body):not(.header-display-section):not(.advantage) {
    padding: 2em 0;
}

.container main > div {
    position: relative;
}

.page-body {
    margin: 0 auto;
    padding: 0 var(--page-body-padding);
    max-width: calc(var(--page-content-width) + 17vw);
    width: 100%;
    height: 100%;
}

.container main h2 {
    margin-bottom: 1em;
    font-size: 1.47em;
    text-align: center;
}

.goodslist {
    --img-height: 20em;
    --columns: 4;
    --title-line: 2;
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    gap: clamp(1em, 1.5vw, 2em);
    container: goodslist/inline-size;
}

.goodslist > li {
    border-radius: .5em;
    padding: 1em;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;

}

.goodslist > li:has(>footer) {
    padding: 0;
}

.goodslist.border > li {
    border: .1em solid var(--border-color, var(--color-grayer));
}

.goodslist > li > .discount{
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 7%;
    background-color: #11a66a;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.goodslist .img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.goodslist .img {
    aspect-ratio: 1/1;
    min-height: 10em;
    max-height: var(--img-height);
    margin-bottom: 1em;
    border: .1em solid var(--border-color, var(--color-grayer));
    border-radius: .5em;
    padding: 1em;
    overflow: hidden;
}

.goodslist.border > li .img {
    margin-bottom: 0;
    border: none;
}

.page-patches .pin-type .img {
    border: none;
}

.goodslist img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goodslist > li:has(>footer) > footer {
    --bg-color: #eaeaea;
    flex: 1;
    padding: 1em;
    background-color: var(--bg-color, var(--color-grayest));
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    flex-direction: column;
}

.goodslist h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--title-line);
    line-clamp: var(--title-line);
}

.page-patches h4 {
    font-size: 1.2em;
    font-weight: 400;
}

.page-patches .pin-type .attr, .page-patches .pin-type .desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5em;
    margin: 1em 0;
    font-size: .67em;
}

.page-patches .btn-quote {
    --padding: .3em;
    font-size: 1.2em;
    white-space: nowrap;
}

.btn {
    position: relative;
    padding: var(--padding) calc(var(--padding) * 2);
    background-color: var(--bg-color);
    border: .1em solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--color-text);
    fill: #000;
    cursor: pointer;
}

.main main.page-patches .sample {
    padding: .5em 0;
    background-color: #5d84b3;
    color: #fff;
}

.page-patches .sample h2 {
    margin-bottom: 0;
    font-size: 1.85em;
    text-align: left;
}

.page-patches .sample .btn {
    --padding: .2em;
    --border-color: #fff;
    --bg-color: transparent;
    color: #fff;
    font-size: 1.33em;
}

.container main > div.dark {
    background-color: #001f50;
    color: #fff;
}

.page-patches .made-patches {
    padding: 1em 0;
}

.page-patches .made-patches .page-body {
    gap: 5%;
    align-items: center;
}

.page-patches .made-patches .page-content {
    flex: 1;
}

.page-patches .made-patches .img {
    width: 50%;
}

.page-patches h2 {
    font-weight: 400;
}

.page-patches .made-patches h2 {
    margin-bottom: .5em;
    text-align: left;
    font-size: 2em;
    font-weight: 400;
}

.page-patches .made-patches .page-content .desc {
    line-height: 1.5;
}

.page-patches .btn-quote {
    --padding: .3em;
    font-size: 1.2em;
    white-space: nowrap;
}

.page-patches .made-patches .btn-quote {
    width: 12em;
    font-size: 1.33em;
}

.goodslist.center {
    text-align: center;
}

.page-patches .lapel-pins header p {
    margin: 0 auto;
    max-width: 60em;
    text-align: center;
}

.page-patches .lapel-pins footer .desc {
    margin: 1em 0 0;
}

.page-patches .lapel-pins footer {
    padding: 1.5em;
    background-color: #fafafa;
}

.page-patches .breadcrumb {
    padding-bottom: 0;
}

.container main > .page-body:has(.el-breadcrumb) {
    padding-top: 1vw;
}

.page-patches .order-rush.dark {
    background: #000 url(/media/abzeichenstimmt/image/banner_rush_coins.jpg) no-repeat center/cover;
}

.page-patches .order-rush .page-body {
    gap: 5%;
}

.page-patches .order-rush .page-content {
    width: 45%;
}

.page-patches .order-rush .swiper {
    margin-top: 1em;
}

.page-patches .order-rush h2 {
    text-align: left;
}

.page-patches .order-rush .el-carousel {
    height: 24em;
}

.page-patches .order-rush .thumbs {
    scrollbar-width: 0;
    -ms-overflow-style: none;
}

.page-patches .order-rush .thumbs {
    margin-top: 1em;
}

.page-patches .order-rush .thumbs {
    height: 5.63em;
    max-width: calc(100vw - var(--page-body-padding) * 2);
    overflow-x: auto;
    scroll-behavior: smooth;
}

.page-patches .order-rush .swiper .el-carousel__arrow {
    font-size: 2em;
    border-radius: 50%;
    background-color: #00000080;
}

.page-patches .order-rush .el-carousel .el-image {
    width: 100%;
    height: 100%;
}

.page-patches .order-rush .thumbs ul {
    display: flex;
    align-items: center;
}

.page-patches .order-rush .thumbs ul {
    gap: .5em;
    margin: 0 auto;
    height: 100%;
    width: fit-content;
}

.page-patches .order-rush .thumbs li {
    flex-shrink: 0;
    width: 9em;
    height: 5em;
    border: .15em solid transparent;
    border-radius: .5em;
    background-color: #0000004d;
}

.page-patches .order-rush .thumbs li.active {
    border-color: var(--color-highlight);
}

.page-patches .order-rush .thumbs img {
    height: 100%;
    width: 100%;
    object-fit: scale-down;
}

.page-patches .order-rush .thumbs li img {
    display: block;
    margin: 0 auto;
}

.page-patches .order-rush .btn-freequote {
    width: 15em;
}

.page-patches .difference h2 {
    margin-bottom: 2em;
}

.page-patches .difference .page-content {
    gap: 5%;
}

.page-patches .difference .left, .page-patches .difference .right {
    width: 25%;
}

.page-patches .difference .center {
    flex: 1;
}

.page-patches .difference .img {
    position: relative;
    margin: 0 auto;
    width: 80%;
}

.page-patches .difference .img:after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: -8em;
    width: 11em;
    height: 11em;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJ4AAACaCAMAAABvygFfAAAAQlBMVEUAAADSRgDQRQDPQADTRQDSRQDSRgDSRgDRRQDSRgDRRgDQRQDRRQDSRgDTSADRRQDTRADTRgDWRQDSRgDURgDSRgBgCPR9AAAAFXRSTlMA3x8Qv39v72CfTzA/j0DPQK8/z1+j55E2AAADVElEQVR42uzY3W6jMBAF4DNj/IMNBdKe93/VzS6tUNLUGVTo9sLfTaRIKJNh5pgETdM0TdM0TdM0TdM0TdM0v5crKSmKD7ngl3FpnHjV45V/dUHxW7jQcRUzvHDVDfgdhFfSh6L4x13WegP+u5clQB7cS01CD8VGh5yGQfGDXjpyglM8UpA4Ka40FAS+m/qMk23FUSoflkjRf5MZ4bmZ4XA2XUjKgBpPSuTVCFz0qlzCIlFnyhtOFSIZE+pct6aMw61MnlvgSNI71L0IryZ8dulIiuIsHTvFE45k15MzHijTWfVpJ6oFz3UywEV2eCgcXd92yzKeURH3sR6ustg4WCA5GqojB/zlInMleHAo15NxMFWXsMqh9lUdDqQTOam5ulV5c/hCHnAgFXJ0eGq6eR54Zag9iikOopH0eM6T/jaEagEqDsdIjMmy2uRyW0Gsnsv+mEApSAUGcpcXmdRawLPge7b8sjXvtsdK5urEdIdUJ86YPQG3yFAP0nxEdQoLN+Ce1HNcdmzHt89H4Yw7r+xRMdu349un4ws5fJ7+HjUdo8Mm9A57FHt16CmolGdoX9o5ixor1VluZF4KzO2zj+J2cYGRIxPuOYe6mdtEZDJhjyAZm/2j5+RpO5KvTEdVeMPGUp4+eK/ALHI84LCwlWfvxzJia79ZJicY1A4wYW8Jh/m9HRFmuh3vRpH+c/+L5bpue/qyElKxS8/uUz974xDtHT1PBuyjXgFsijCqLZH8+pJhlMgeu7nXabj5XZet6bpt+RmDt005ZfEphTFAGAeYzOQMJHtQ9NuO75KEH0rxii+pqrtbDk/Zu4T75X6KJOXZg8rVNBasPKPDYl/cEnCquz/JCxnQcYFJGB3OpflyCUsk2etH5Am9Pf5/gktCytt79FmTbNva83mSI+Cks8ZeIhN+jAo56Tp/g7F5+EGuJ0Xxp107WGEYBsE4bjXZSGlhF9//VTd26WUwW0r08P89gQj5iCa2xlK5n468WybVxd011OwhUx2PDLGxVmW27l/y3/TmHfU9Q8d2kwS7h5bNqzdJ0ULliUkOjeTZY6gkeQXKW7xLlr0FZsdNstiI7JjyWM3Q+6h10bvG3Ot8kflBS1cHAAAAAAAAAAAAAAAAAKjlDXznLStGnQf8AAAAAElFTkSuQmCC) no-repeat center/contain;
}

.page-patches .difference .list {
    border-radius: .5em;
    background-color: var(--color-grayest);
}

.page-patches .difference .list li {
    position: relative;
    height: 5em;
    padding: 5%;
    border-radius: .5em;
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-patches .difference .list li:not(:last-child):after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 0;
    height: .1em;
    background-color: var(--color-gray);
}

.page-patches .difference .tips {
    gap: .5em;
    padding: .5em 0;
}

.page-patches .difference .center img {
    width: 100%;
}

.page-patches .difference .right .img:after {
    right: auto;
    left: -8em;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKEAAACdCAMAAADrN+hSAAAAP1BMVEUAAAAAZs0AY88AZM8AZc0AZswAZswAZs0AZcwAZswAZc0AZcoAZc0AZskAZs0AZcwAZswAZ80AZMwAZcwAZsyGFaPmAAAAFHRSTlMA3xAgfz+/n+/PXzBQH49vr4+gkL0Hk8MAAANISURBVHja7NfbjuIwEATQ6vY9di6zU///rQvsMGIgEGc2iXjweUJCKCU7LtpomqZpmqZpmqZpmqZpmqZpmg1pGcOUMfpgi8PbUet5FiC88B9vldJ5nsU0ZRTvIy9kxLuwPPFjjyt14xRJD9f1eAcTo1XcczaDZDg4o5bOnoyKq8/Um04xb+CxGUsQfhnhUyiAerLgOROOzFh4IWdGeSIhkUHxignHHBrnJWeRoev1bkEHnCxn9NiV8STLTOzKLTSJHor9jM/2SShCimKRUxPFYSd/ONsmQEc6YxkVFRxJi118kslgTqIHYBQ+9VjUCSk9tmfJCbMM2V0/SEbViYkdttaRSTFL5frNSMaMZeMeO50oBotyrItohPQ9NmWTwTwV0ZuIde+YmcgJBylk/nFURVHBbrrPRuyrR8W7d2xAnTF12Igw4amJ/n6OcagykXazc9zhqXS3ZioMtVuzUUQjFDwXae/7zuDYiJY0eG5mgU05NKIhw+uvH/Kk6seatEHEQJrXCR3ueEZU0nPEXZcQZmaXHelQSYV0azPZvn4JAZl5QOSw5iAWrOMpWr2EgMnzHVmvR+nXjtL2tgvNQsKPx4gDBSsUxnUR/c24bBkWy0jmOh71rvNGPXdbIE6X/3HyQsLa6bNeokc1jbQL08QySw5Y4ftWZGLCovD4Fnn69de0EYse+yyQVY3pHzahwzqayIwlj31WN6YMfBgeCtYycXn0feyzUln3/sf9sogo1ivktKYSI04CBTV0Iie44lwZQySpWGd9iToyA0qG6oHeKq+8w690GdWU7K5NV0uFZzI4/No0oJZwACYKvmj34cXbhYx93+N/5BWVM3GCfreoCZEX2Jln7Ovf2u+LsH7yREIII3aW689zR15PshMy2oxDWNJVl1OfGP79hoPiICpM1bN/+duOvaQwDMNAGJaf4ISatsz9z9rgbTfyRmnh/05gEBaaqaNYfkvOzjQim39nzDykni3SOk49kl6P9cBpsZo3+w1J50qK0bqSt/VRl6qFO0f15vjLtN9VdRl2i2fyluGpWDh/H3BIKnaP6Vo4R/Av2a99mpLtiB9zC57xfh4o1bbEr8RsAAAAAAAAAAAAAAAAAAAA/+oDzdksBl/MzbIAAAAASUVORK5CYII=);
}

.page-patches .lapel-vs-acrylic .page-content {
    gap: 5%;
}

.page-patches .lapel-vs-acrylic figcaption {
    margin: .5em 0;
    font-size: 1.2em;
    text-align: center;
    font-weight: 700;
}

.page-patches .lapel-vs-acrylic ul {
    padding: 0 2em;
    list-style: disc;
}

.page-patches .lapel-vs-acrylic ul li {
    margin: .5em 0;
}

.page-patches .lapel-vs-acrylic .btn {
    margin-top: 2em;
    width: 17em;
}

.page-patches .fabrication {
    padding-top: 3em;
}

.page-patches .fabrication .el-tabs {
    --el-font-size-base: 1.2em;
    gap: 1em;
    container: scrollbar/inline-size;
}


.goodslist.bg > li {
    padding: 2em 1em;
    background-color: var(--bg-color, var(--color-grayest));
    color: var(--color-text);
}

.goodslist.bg-img-gradient .img {
    background: linear-gradient(var(--bg-deg, 165deg), #fafafa 50%, #eef0f0 50%);
}

.goodslist.box .img, .goodslist.plain .img {
    border: none;
}

.page-patches .fabrication img {
    mix-blend-mode: darken;
}

.page-patches .fabrication .el-tabs .el-tabs__nav-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-patches .fabrication .btn-quote {
    width: 12em;
    font-size: 1.07em;
}

.page-patches .create-steps hgroup {
    padding: 0 10%;
    text-align: center;
}

.page-patches .create-steps h2 {
    font-size: 1.67em;
    font-weight: 600;
}

.page-patches .create-steps .el-steps {
    --el-color-primary: #000;
    padding-top: 20em;
}

.page-patches .create-steps .el-steps .el-step__line {
    top: 50%;
    border-color: var(--color-grayer);
    background-color: var(--color-grayer);
}

.page-patches .create-steps .el-steps .el-step__icon {
    width: 3.53em;
    height: 3.53em;
    font-size: 1em;
    border: .2em solid var(--color-grayer);
}

.page-patches .create-steps .el-steps .el-step__icon .el-step__icon-inner {
    font-size: 1.47em;
}

.page-patches .create-steps .el-steps .el-step__title {
    margin-top: 1em;
    font-size: 1.2em;
    line-height: 1;
}

.page-patches .create-steps .el-steps .el-step__description {
    font-size: 1em;
}

.page-patches .create-steps img {
    position: absolute;
    top: -17em;
    left: 50%;
    transform: translate(-50%);
    width: 16em;
}

.page-patches .create-steps .el-steps .el-step__icon {
    width: 3.53em;
    height: 3.53em;
    font-size: 1em;
    border: .2em solid var(--color-grayer);
}

.characteristic {
    padding: 1em 0 !important;
}

.offer-list.default {
    --reverse-color: #fff;
    background-color: #fff;
}

.offer-list ul {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.offer-list ul {
    gap: 1em;
}

.characteristic ul {
    margin: 0 auto;
    padding: 0 var(--page-body-padding);
    max-width: calc(var(--page-content-width) + 6vw);
    width: 100%;
}

.characteristic ul {
    padding: .5em;
}

.offer-list li {
    display: flex;
    align-items: center;
}

.offer-list li {
    gap: .5em;
    white-space: nowrap;
}

.offer-list li svg, .offer-list li img {
    width: 2em;
    height: 2em;
    fill: currentColor;
}

.page-patches .patches footer {
    padding: 1em 1.5em;
}

.page-patches .patches footer > .flex {
    justify-content: space-between;
}

.price {
    display: flex;
    align-items: center;
}

.price {
    display: inline-flex;
    gap: .5em;
}

.price span, .price strong {
    color: var(--color-fail);
}

.page-patches .backing {
    --bg-color: #fff;
}

.page-patches .measure .page-content {
    gap: 8%;
}

.page-patches .measure .page-content .left {
    flex: 1;
}

.page-patches .measure .page-content .right {
    width: 40%;
}

.page-patches .measure .img img {
    max-width: 38em;
}

.page-patches .measure .img figcaption {
    font-size: .8em;
    text-align: center;
}

.page-patches .backing li {
    padding: .1em;
}

.goodslist.bg .img {
    border: none;
}

.goodslist.bg-img .img {
    padding: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--img-bg-color, var(--color-grayer));
}

.page-patches .backing .img {
    height: 10em;
}

.page-patches .measure .img img {
    max-width: 38em;
}

.page-patches .backing .img img {
    border-radius: .5em .5em 0 0;
}

.page-patches h4 {
    font-size: 1.2em;
    font-weight: 400;
}

.page-patches .backing h4 {
    font-weight: 700;
    text-align: center;
    font-size: 1em;
}

.page-patches .backing dl {
    padding: .5em 1em;
    font-size: .8em;
    line-height: 1.5;
}

.page-patches .backing dl dt {
    font-weight: 700;
    gap: .2em;
    display: flex;
    align-items: center;
}

.page-patches .backing dl dt:before {
    content: "";
    flex-shrink: 0;
    width: .4em;
    height: .4em;
    border-radius: 50%;
    background-color: var(--color-text);
}

.page-patches .backing .btn-view {
    font-size: 1.07em;
    color: var(--color-bg-light);
}

.page-patches .made-patches .img iframe {
    width: 100%;
    height: 100%;
    min-height: 20em;
}

.page-patches h2 {
    font-weight: 400;
}

.page-patches .difference .list li.active, .page-patches .difference .list li:hover {
    background-color: var(--color-bg-light);
    color: #fff;
}
.pin-type-new{
    padding-top: 0 !important;
}

.pin-type-new .goodslist .img {
    padding: 0;
    border-radius: 0;
}

.page-patches .goodslist h4 {
    text-align: center;
    font-weight: bold;
}

.pin-type-new .goodslist footer p.as-low {
    margin: 1em 0;
}

.pin-type-new .goodslist footer .quote-box {
    gap: 1em;
    font-weight: bold;
}

.pin-type-new .goodslist footer .quote-box> .btn-quote {
    color: #fff;
}
.pin-type-new .goodslist footer .quote-box> a {
    color: #5d84b3;
    display: inline-block;
    cursor: pointer;
    --bg-color: #5d84b3;
}

.pin-type-new .goodslist footer .quote-box span a {
    color: #5d84b3;
}

.pin-type-new .goodslist > li:has(>footer) > footer {
    --bg-color: #00000000;
}

@media (max-width: 1280px) {

    .goodslist {
        --columns: 3;
    }
}


/* 头部展示图 */
.header-display-section{
    background-image: url(/media/abzeichenstimmt/image/catalog/custom-patches.jpg);
    /* background-color: #5d84b3; */
    background-size: cover;
    min-height: 35.75em;
    width: 100%;
    padding: 1em;
    display: flex;
    align-items: center;
    padding-bottom: 90px;
}
.header-content{
    margin-left: 40px;
    margin-top: -105px;
}
.header-content-title{
    color: #fff;
    font-size: 3.5em;
    font-weight: bold;
}
.header-content-val{
    color: #fff;
    font-size: 1.2em;
}
.header-content-val > li{
    padding: 5px 0px;
    font-weight: 600;
}
.header-content-button{
    width: 64%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #D24600;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}
.header-content-button > a {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}

.header-content-logo{
    color: #fff;
    padding: 5px 0px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* 优势 */
.advantage{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background-color: #000;
}
.advantage-content{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    color: #fff;
}

/* 案例画廊 */
.case-gallery-box{
    width: 100%;
    background-color: #fff;
}
.case-gallery-title{
    color: #000;
    text-align: center;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
}
.case-gallery{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.case-gallery > img {
    width: 100%;
}
.case-gallery-val{
    padding: 10px;
    max-width: 250px;
    min-height: 200px;
    margin: 0 10px;
    border-radius: 5px;
}
/* case-gallery-val除了最后一个元素以外 */
.case-gallery-val:not(:last-child){
    height: 200px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0;
}
.case-gallery-val > a {
    height: 100%;
}
.case-gallery-val > a > img {
    height: 100%;
    border-radius: 5px;
}
.case-gallery-val:last-child{
    background-color: #f0eeee;
}
.case-gallery-btn1{
    width: 100%;
    background-color: #D24600;
    padding: 5px 10px;
    border-radius: 5px;
}
.case-gallery-btn1 > button{
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: large;
}
.case-gallery-btn2{
    width: 100%;
    margin-top: 10px;
    background-color: #0066CC;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.case-gallery-btn2 > button{
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: large;
    cursor: pointer;
}
.case-gallery-logo{
    margin: 5px auto 0;
    display: flex;
    justify-content: center;
    width: 189px;
    height: 60px;
}
.case-gallery-text{
    margin-top: 5px;
    font-size: 1em;
}

/* 图片点击切换 */
.size-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 30px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.tab-btn {
    padding: 12px 25px;
    margin: 0 10px;
    background: #f1f1f1;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #ff8c42;
    color: white;
}

.tab-btn.active {
    background: #ff6b00;
    color: white;
}

.size-guide {
    display: none;
    padding-left: 15px;
    padding-right: 15px;
    animation: fadeIn 0.5s ease forwards;
}

.size-guide.active {
    display: block;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.image-item {
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.image-item:hover {
    z-index: 2; 
}

.image-container {
    min-height: 200px;
    overflow: hidden;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.image-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: absolute;
}

.image-container:hover .image-placeholder {
    transform: scale(1.08);
    transition: all 0s ease;
    position: absolute;
}

.image-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
    margin-top: 40px;
}

.image-desc {
    color: #666;
    font-size: 14px;
}

.quote-btn {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 15px;
    background: #ff6b00;
    color: white;
    text-align: center;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* 权威自媒体 */
.authoritative_media h2 {
    color: #257C79;
    font-size: 3em;
}

.authoritative_media .desc {
    text-align: center;
    margin: 2em 0;
    color: #6B7280;

}

.authoritative_media ul {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: .5em;
}

.authoritative_media li {
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.authoritative_media li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 材料介绍 */
.material-use {
    background: #5d84b3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.material-use-title {
    color: white;
    padding: 20px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

.material-use-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 0fr));
    gap: 25px;
    padding: 30px;
    justify-content: center;
}

.material-use-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaecef;
}

.material-use-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.material-use-item-img {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.material-use-item-img img {
    width: 230px;
    height: 180px;
    object-fit: contain;
}

.material-use-item-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.1)" x="0" y="0" width="25" height="25"/><rect fill="rgba(255,255,255,0.1)" x="50" y="50" width="25" height="25"/></svg>');
    background-size: 10%;
}

.material-use-item-title {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-top: 15px;
}

.material-use-item-val {
    padding-top: 15px;
    color: black;
    text-align: center;
    font-size: 0.8rem;
}

/* 产品优势 */
.product-advantage {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    background-color: #5d84b3;
}

.product-advantages-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-advantages-val {
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 600;
}

.product-advantages-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 0fr));
    gap: 30px;
    justify-content: center;
}

.product-advantages-content-item {
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-advantages-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.product-advantages-content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}
.product-item-val{
    padding: 10px;
    background-color: #fff;
    margin-top: -45px;
    min-height: 350px;
    border-radius: 10px;
}
.product-item-top{
    /* 正方形 */
    width: 40%;
    height: 0;
    padding-bottom: 40%;
    background-color: red;
    border-radius: 50%;
    margin-left: 30%;    
}

.product-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-align: center;
}


.product-item-content {
    padding: 0 10px;
    background-color: #5d84b3   ;
}

.product-item-img {
    text-align: center;
    margin-top: -55px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.product-item-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.product-advantages-content-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-advantages-content-item li {
    padding: 8px 20px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.product-advantages-content-item li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.product-item-bottom {
    height: 20px;
    border-radius: 1rem 1rem 0.25rem 0.25rem;
    margin-top: -10px;
    width: 50%;
    margin-left: 25%;
}

.product-advantages-content-item:nth-child(1) .product-item-top {
    background-color: #ccc;
}

.product-advantages-content-item:nth-child(2) .product-item-top {
    background-color: #F4E9DD;
}

.product-advantages-content-item:nth-child(3) .product-item-top {
    background-color: #00BCFB;
}

.product-advantages-content-item:nth-child(4) .product-item-top {
    background-color: #F7C332;
}

.product-advantages-content-item:nth-child(1) .product-item-bottom {
    background: #ccc;
}

.product-advantages-content-item:nth-child(2) .product-item-bottom {
    background: #F4E9DD;
}

.product-advantages-content-item:nth-child(3) .product-item-bottom {
    background-color: #00BCFB;
}

.product-advantages-content-item:nth-child(4) .product-item-bottom {
    background: #F7C332;
}

.product-advantages-btn{
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-advantages-btn a {
    margin-top: 20px;
    padding: 10px 35px;
    background-color: #000000;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}


/* 展示视频 */
.demo-video {
    display: flex;
    background: white;
    overflow: hidden;
    min-height: 500px;
}

.left-section {
    width: 30%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-section {
    width: 70%;
    background: #f1f3f6;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-txt{
    text-align: center;
}

.video-txt h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.video-desc {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #5a6b7e;
    line-height: 1.8;
    max-width: 400px;
}

.video-btn {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 16px 42px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3); */
    border: none;
    cursor: pointer;
    text-align: center;
    width: fit-content;
}

.video-btn:hover {
    /* background: #d35400; */
    transform: translateY(-3px);
    /* box-shadow: 0 7px 20px rgba(230, 126, 34, 0.4); */
}

.video-box {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.video-box iframe {
    width: 49%;
    height: 100%;
    min-height: 320px;
    border: none;
    border-radius: 12px;
    padding: 0 20px;
}


/* 客户评价 */
.comments-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px;
}

.comments-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 50px 60px;
}

.features {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-title {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-desc {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.comments {
    flex: 2;
    min-width: 300px;
}

.comment-card {
    background: white;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3494e6, #ec6ead);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}

.user-details {
    flex-grow: 1;
}

.user-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 18px;
}

.stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

.comment-text {
    color: #546e7a;
    line-height: 1.6;
    font-size: 16px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}


/* 定制介绍 */
.customize-container {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #5d84b3;
}

.customize-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 0px;
    padding: 30px 100px;
}

.customize-text-content {
    flex: 1;
    min-width: 300px;
}

.customize-image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.customize-image-content img {
    min-width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1); */
    /* transition: transform 0.3s ease; */
}

.customize-image-content img:hover {
    transform: scale(1.02);
}

.customize-text-content > h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #000;
}

.customize-text-content > ul {
    list-style-type: none;
}

.customize-text-content > ul > li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
    color: #fff;
}
/* 除了第一个元素外，其他元素的前面加一个 ✔ */
.customize-text-content > ul > li:not(:first-child)::before {
    content: "";
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.customize-cta-button {
    display: inline-block;
    background: linear-gradient(to right, #ffcc00, #fff);
    color: #000;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    /* box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4); */
}

.customize-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.customize-highlight {
    color: #000;
    font-weight: bold;
}

.customize-badge {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* 社媒链接 */
.social-media-container{
    width: 100%; 
    height: auto;
    position: relative; 
    background-color: #032154; 
    padding: 10px 0;
}
.social-media-wrapper {
    align-items: center;
    display: flex
}
.heading-social {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.75rem;
    display: inline-block
}
.socialmedia-icon-group {
    align-items: center;
    display: flex
}
.socialmedia-link {
    width: 60px;
    height: 60px;
    margin-left: 30px;
    transition: all .2s
}

.socialmedia-link:hover {
    transform: translateY(-10px)
}
.w-inline-block {
    max-width: 100%;
    display: inline-block
}
.w-embed:before,
.w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-embed:after {
    clear: both
}

/* 常见问题 */
.container main > div.faq-text {
    padding: 1em 20em 2em;
    background: #F2F2F2;
}

@media (max-width: 1280px) {
    .container main > div.faq-text {
        padding: 1em 7em;
    }
}

@media (max-width: 960px) {
    .container main > div.faq-text {
        padding: 1em 0em;
    }
}

.faq-text .faq-box {
    padding: 1em;
    background: #fff;
    border-radius: .5em;
}
.custom-product .page-body {
    --page-body-padding: 20em;
}

@media (max-width: 1280px) {
    .custom-product .page-body {
        --page-body-padding: 5em;
    }
}

@media (max-width: 960px) {
    .custom-product .page-body {
        --page-body-padding: 0;
    }
}
.faq-video .faq-box {
    padding: 1em;
    background: #fff;
    border-radius: .5em;
}
.faq-text .faq-box {
    padding: 1em;
    background: #fff;
    border-radius: .5em;
}
.faq-video .faq-title {
    border-bottom: 1px solid #E4E4E4;
}
.faq-video .faq-title h2 {
    font-weight: bold;
    text-align: center;
    margin: .5em 0;
    font-size: 2em;
}
.faq-trigger .question span.faq-title {
    color: rgb(0, 112, 192);
}
.faq-group > li {
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    cursor: pointer;
}

.faq-group > li {
    border: none;
    border-bottom: 1px solid #e4e4e4;
    box-shadow: 0 0 0 0;
}

.faq-group .faq-trigger {
    font-size: .9em;
    font-weight: 300;
    color: #000;
    padding: 0 1em;
    position: relative;
    display: block;
    margin: 5px;
    overflow: hidden;
}
.faq-group .faq-trigger p {
    margin: 5px 0;
    font-size: 1.2em;
    color: rgb(0, 0, 0);
    font-weight: bold;
    word-break: break-all
}

.faq-group .faq-content p {
    word-break: break-all
}
.faq-group .faq-content {
    padding: 0 1.5em 1em;
}
.faq-trigger span.question::after {
    display: block;
    content: "+";
    position: absolute;
    right: 15px;
    top: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 25px;
    width: 30px;
    height: 30px;
    text-align: center;
}
.faq-trigger span.question {
    width: 95%;
    float: left;
}
.faq-trigger .question span.faq-title {
    color: rgb(0, 112, 192);
}
.content-visible .faq-trigger span.question::after {
    content: "-";
}

/* 博客展示 */
.footer-section {
  background-color: #ffffff;
  padding: 40px 0;
  font-family: 'Rubik', sans-serif;
}

.footer-section >h1 {
    font-weight: 600;
}

.footer-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  text-align: center;
}

.footer-section-value {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.footer-section-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 auto;
  padding: 0 20px;
  width: 80%;
}
.show-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.blog-post-item {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog-post-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.blog-post-item div:last-child {
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: center;
}
.blog-post-view-all {
  text-align: center;
  margin-top: 40px;
}

.blog-post-view-all button {
  background-color: #000; /* 主色调绿色 */
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.blog-post-view-all button:hover {
  background-color: #365a3d; /* 深一点的绿色 */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 112, 76, 0.3);
}

.blog-post-view-all button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(69, 112, 76, 0.3);
}

.blog-post-view-all button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.blog-post-view-all button:focus:not(:active)::after {
  animation: ripple 0.6s ease-out;
}

/* Coins-one CSS样式效果*/
/* 工艺创新 */
.process-innovation{
    background-image: url(https://image.maxemblem.com/maxemblem/image/cms/0871ca1117164f0a3ab58250734506e1.jpg);
}
.process-innovation-txt > h1{
    color: #fff;
    font-weight: 600;
}
.process-innovation-img{
    display: flex;
    justify-content: center;
}

/* 画廊集装箱 */
.process-innovation-example{
    background-color: #171412;
    padding-bottom: 100px !important;
}
.process-innovation-example-title{
    color: white;
    width: 70%;
    padding: 10px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: bold;
}
.process-innovation-example-gallery{
    width: 70%;
    padding: 20px;
    margin: 0 auto;
}
.gallery-container {
    display: flex;
    height: 350px;
    gap: 10px;
    margin-bottom: 40px;
}

.card {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover {
    flex: 3;
}

.card:hover img {
    transform: scale(1.05);
}

.card:not(:hover) {
    flex: 1;
    opacity: 1;
}

.process-innovation-example-btn{
    display: flex;
    justify-content: center;
}
.process-innovation-example-btn > a {
    background-color: #D24600;
    color: rgb(23, 23, 25);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
}

/* 定制挑战硬币列表 */
.customize-coin-list {
    background-image: url("https://static-oss.gs-souvenir.com/web/quoteManage/20240715/style_20240715NyrsaJ.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 5.6em;
    padding-top: 6em;
    overflow: visible;
    z-index: 9;
    position: relative;
    margin: 0 auto;
    background-color: white;
    width: 100%;
}

.customize-coin-list > h1 {
    font-weight: 600;
}

/* 卡片容器 */
.customize-coin-box {
    width: 100%;
    padding: 0 1rem;
}

.customize-coin-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

/* 卡片样式 */
.coin-card {
    width: 380px;
    flex-direction: column;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.coin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* 图片框样式 */
.coin-card-image-box {
    height: 280px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
    position: relative;
}

.coin-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 卡片内容 */
.coin-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: white;
    z-index: 9;
    gap: 12px;
    height: 220px;
}
.coin-card-content >div:first-child {
    display: flex;
    justify-content: space-between;
}

.coin-card-content >div:first-child >h4{
    width: 75%;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coin-card-title {
    font-weight: bold;
    font-size: 1.3rem;
    color: #2d3748;
}

.coin-card-subtitle {
    color: #3182ce;
    font-weight: bold;
}

.coin-card-subtitle a {
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
}

.coin-card-subtitle a:hover {
    text-decoration: underline;
}

.coin-card-text {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
    flex-grow: 1;
}

.coin-card-btn {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.coin-card:hover .coin-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.coin-card-btn > a {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.coin-card-btn > a:first-child {
    background-color: #d24600;
    color: white;
}

.coin-card-btn > a:last-child {
    background-color:white;
    border: 1px solid #d24600;
    color: #d24600;
}

.coin-card-more{
    padding: 20px 0;
    width: 80%;
    border-bottom: 5px solid #D24600;
    margin: 0 auto 50px auto;
}

.coin-card-btn-more{
    flex-wrap: wrap;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 30px 0;
    width: 60%;
    margin: 0 auto;
}


.coin-card-btn-more > a {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

.coin-card-btn-more > a:first-child {
    background-color: #d24600;
    color: white;
}

.coin-card-btn-more > a:last-child {
    background-color:white;
    border: 1px solid #d24600;
    color: #d24600;
}

/* 自定义补丁coins */
.custom-Patches-modal-box {
    background-color: rgb(243, 244, 245);
    padding: 2rem;
    margin: 0 auto;
}

.custom-Patches-modal-box > div >h1 {
    font-weight: 600;
}

.custom-Patches-sub-title {
    margin-bottom: -1em;
    padding-bottom: 1.75em;
    border-bottom: 2px solid rgb(128, 128, 128);
    text-align: center;
    color: #666;
}

.custom-Patches-highlight-title {
    font-size: 1.5em;
    font-weight: 700;
    padding: 0 2em;
    background-color: rgb(243, 244, 245);
    display: inline-block;
    color: #3b82f6; /* 假设 --btn-second 的颜色 */
    margin-top: 0rem;
    margin-bottom: 2rem;
}

/* 卡片容器 */
.custom-Patches-card-box {
    width: 80%;
    margin: 0 auto;
}

.custom-Patches-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
    justify-content: space-between;
    margin-bottom: 2rem;
}

/* 卡片样式 */
.custom-Patches-card {
    width: 25%;
    flex-direction: column;
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.2s ease;
}

.custom-Patches-card:hover {
    transform: translateY(-5px);
}

.custom-Patches-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-Patches-card .custom-Patches-card-content {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.custom-Patches-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0.5rem 0;
    padding: 0 10% 0;
}

.custom-Patches-card-subtitle {
    color: #666;
    margin: 0.5rem 0;
}

.custom-Patches-price-list {
    color: #3b82f6;
    font-weight: bold;
    margin: 0.5rem 0;
}

.custom-Patches-card-btn {
    margin-top: 1rem;
}

.custom-Patches-card-btn button {
    color: #3b82f6;
    background-color: transparent;
    border: 2px solid #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: calc(1em + 2px);
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-Patches-card-btn button:hover {
    background-color: #3b82f6;
    color: white;
}

/* 底部按钮 */
.custom-Patches-btn-box {
    text-align: center;
    margin-top: 2rem;
}

.custom-Patches-btn-box button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.custom-Patches-btn-box button:hover {
    background-color: #2563eb;
}

/* 探索更多--图片轮播 */
.carousel-modal-box {
    background-color: #5D84B3;
    /* border-radius: 16px; */
    padding: 30px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-sub {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.carousel-sub-title{
    width: 60%;
}
.carousel-sub-title > div:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.carousel-sub-title > div:last-child {
    margin-top: 20px;
    font-size: 1rem;
    color: #fff;
}
.carousel-nav{
    display: flex;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 80%;
    margin: 20px auto;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 40px 20px 0;
}

.nav-arrow:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.cards-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 10px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 auto;
    width: 200px; 
    height: 200px; 
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    display: flex;
}

.carousel-card.active {
    width: 550px;
    height: 200px; 
}

.carousel-card-image {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card:hover .carousel-card-image img {
    transform: scale(1.08);
}

.carousel-card-content {
    display: none;
    padding: 20px;
    width: 350px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease 0.1s;
}

.carousel-card.active .carousel-card-content {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
}

.carousel-card-title {
    font-size: 18px;
    color: #2c6af0;
    margin: 0;
    font-weight: 600;
}

.carousel-card-text {
    font-size: 14px;
    line-height: 1.3;
    color: #555;
    margin: 0;
    overflow: hidden;
}

.carousel-card.active .carousel-card-text {
    display: block;
}
.carousel-order-btn {
    background: transparent;
    border: 2px solid #2c6af0;
    color: #2c6af0;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    align-self: flex-start;
}

.carousel-order-btn:hover {
    background-color: #2c6af0;
    color: white;
}

/* 给没有灵感却想购买的客户提供解决方案 */
.solution {
    width: 100%;
    margin: 0 auto;
}

.solution-content {
    width: 38%;
    margin-left: auto;
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease;
}

.solution-content:hover {
    transform: translateY(-5px);
}

.solution-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.solution-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

.solution-btn {
    margin-bottom: 25px;
}

.solution-btn button {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.solution-btn button:hover {
    background: #2980b9;
}

.solution-or {
    text-align: center;
    color: #fff;
    position: relative;
    padding: 15px 0;
}

.solution-or:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #ddd;
}

.solution-or:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #ddd;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Abzeichenstimmt给你带来的好处 Start */
.service-intro {
    background-color: #171719;
    position: relative;
    overflow: hidden;
    padding: 40px 0px;
}

.service-intro-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.service-intro-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    width: 70%;
    margin: 0 auto;
    padding: 0 20px;
}

.service-intro-item {
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-intro-item-icon {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #5d84d3, #2d5d9f); */
}

.service-intro-item-icon img {
    width: 70%;
    height: auto;
    max-height: 80%;
}

.service-intro-item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px 20px 20px;
}

.service-intro-item-text p {
    margin-bottom: 12px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: #2d5d9f;
}

.service-intro-item-text span {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

/* pins Start */
.lapel-pins-modal-box {
    display: grid;
    grid-template-columns: 44% 1fr;
    align-items: center;
    column-gap: 2.5rem;
    padding: 2rem;
    margin: 0 auto;
    background-color: rgb(23, 23, 25);
}

.lapel-pins-modal-box > h2 {
    font-size: 2.25rem !important;
    font-weight: bold;
    margin-bottom: 0.5rem;
    order: 2;
    text-align: left;
    color: #fff;
}

.lapel-pins-sub-title {
    margin: 0.5em 0px 0px;
    order: 3;
    text-align: left;
    padding-bottom: 1rem;
    border-bottom: 1px solid #313131;
    font-size: 1em;
    color: #ccc;
}

/* 图标区域样式 */
.lapel-pins-icons {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    max-width: 50%;
    position: absolute; 
    left: 46.5%;
    width: 100%;
    bottom: 27px;
}

.lapel-pins-icon-item {
    flex: 0 0 13.75em;
    border: 3px solid transparent;
    border-radius: 0.625rem;
    overflow: hidden;
    height: 13.75em;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lapel-pins-icon-item:hover, .lapel-pins-icon-item.active {
    border-color: #4a90e2;
}

.lapel-pins-icon-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 主展示区域样式 */
.lapel-pins-swipers {
    position: relative;
    grid-row-start: span 3;
    height: 37.5em;
    overflow: hidden;
    margin-top: 20px;
}

.lapel-pins-swiper-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1.25rem;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.lapel-pins-swiper-item.active {
    opacity: 1;
    z-index: 10;
}

.lapel-pins-image-box {
    border-radius: 0.625em;
    overflow: hidden;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2c;
}

.lapel-pins-image-box img {
    width: 90%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.lapel-pins-content {
    width: 96%;
    color: #fff;
    padding: 1.5em;
    background-color: #2a2a2c;
    border-radius: 0 0 10px 10px;
    margin-top: 10px;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lapel-pins-content-title {
    font-size: 1.4em;
    margin-bottom: 0.8rem;
    color: #fff;
}

.lapel-pins-content-text {
    margin-top: 0.5em;
    margin-bottom: 1.25em;
    color: #ccc;
    line-height: 1.6;
}

.lapel-pins-content button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1.25em;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.lapel-pins-content button:hover {
    background-color: #357abd;
}

/* 导航按钮 */

.lapel-pins-nav-btn{
    position: absolute;
    z-index: 999;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.lapel-pins-nav-btn:last-child {
    right: 0;
}

.lapel-pins-prev-btn {
    left: 10px;
}

.lapel-pins-next-btn {
    right: 10px;
}


/* 红人合作的款和图片 */
.cooperation-container {
    width: 100%;
}

.cooperation-modal-box {
    background-color: #5D84B3;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2.875em 2.875em;
    gap: 1.375em 0.5em;
    align-items: center;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cooperation-modal-box > h1 {
    font-weight: 600;
    grid-row: 1 / 2;
}

.cooperation-nav-button {
    font-size: 0.6em;
    grid-row: 1 / 2;
    height: 2.875rem;
    text-align: center;
    line-height: 2.875rem;
    width: 2.875rem;
    border: 1px solid #fff;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cooperation-nav-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cooperation-nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cooperation-card-box {
    padding: 0.5em 0;
    grid-column: 1 / 4;
    overflow: hidden;
}

.cooperation-cards-container {
    display: flex;
    justify-content: space-around;
    transition: transform 0.5s ease;
    width: 80%;
    column-gap: 1.875em;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.cooperation-card {
    width: 30%;
    padding: 2em 1.125em 1.125em;
    flex-direction: column;
    color: #333;
    background-color: #fff;
    border-radius: 0.875em;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cooperation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cooperation-card .cooperation-content {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

.cooperation-card-title {
    margin-top: -3rem;
    margin-left: 4rem;
    font-size: 1em;
    order: 3;
    font-weight: 600;
}

.cooperation-img-list {
    order: 2;
    display: unset;
}

.cooperation-list-box {
    display: flex;
    row-gap: 0.5em;
    flex-direction: column;
    align-items: flex-start;
}

.cooperation-list-box img:first-child {
    max-width: 95%;
    border: none;
    border-radius: 0px;
    width: unset;
    height: unset;
    margin-bottom: 10px;
}

.cooperation-list-box img:last-child {
    max-width: 95%;
    border: none;
    border-radius: 0px;
    width: 3.5em;
    height: 3.5em;
    margin-top: 0.375em;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.cooperation-card-subtitle {
    margin-left: 4rem;
    order: 4;
    opacity: 0.7;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.cooperation-card-text {
    opacity: 1;
    order: 1;
    margin-bottom: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cooperation-corner-label {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #4a90e2;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* 本月亮点优惠 */
.discount-page {
    z-index: 10;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
}

.discount-page-title {
    z-index: 10;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    text-align: center;
    margin: 2vh auto 0;
}

.discount-page-content {
    z-index: 10;
    display: flex;
    width: 100%;
    padding: 0 30px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.discount-item-left {
    z-index: 10;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.discount-item-left-image {
    width: 100%;
    margin: 2vh auto;
    /* max-width: 800px; */
    display: flex;
    justify-content: space-around;
}

.discount-item-left-image > img {
    /* width: 100%; */
    /* height: auto; */
    height: 15vh;
    object-fit: cover;
}

.discount-item-text-left {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 600;
}

.discount-item-text-left > div {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.discount-item-right {
    z-index: 10;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 20px;
    cursor:pointer;
    font-weight: 600;
}

.discount-item-right-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2vh auto;
}

.discount-item-right-image > img {
    width: 200px;
    height: auto;
    max-height: 15vh;
    object-fit: contain;
}

.discount-item-right-text {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    font-size: 20px;
}

@media (min-width: 768px) {
    .discount-item-left {
        width: 100%;
    }
    
    .discount-item-right {
        width: 30%;
        margin-top: 0;
    }
    
    .discount-item-text-left > div {
        width: 30%;
    }

    .discount-page-content{
        padding: 0;
    }
}

@media (min-width: 992px) {
    .discount-item-left {
        width: 55%;
    }
    
    .discount-item-right {
        width: 25%;
    }
}

.size-display {
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    text-align: center;
    border-radius: 15px;
    padding-top: 0;
}

.size-display h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 600;
}

.size-display-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.size-display-content > div {
    flex: 1;
    min-width: 400px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.size-display-content > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.size-display-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #eaeaea;
}

.size-display-btn {
    margin-top: 20px;
}

.size-display-btn button {
    background: #000;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 1px;
}

.comments {
    max-height: 600px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

.comment-value {
    line-height: 1.6;
    padding: 5px 15px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}

.comment-title {
    font-size: 18px;
    font-weight: 600;
}

.comment-desc {
    color: #546e7a;
    font-size: 16px;
}

.comment-images {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.comment-images > img {
    width: auto;
    height: 50px;
    object-fit: cover;
}

.rating:not(:checked) > input {
    position: absolute;
    appearance: none;
}

.rating:not(:checked) > label {
    float: right;
    cursor: pointer;
    font-size: 15px;
    fill: #666;
}

.rating:not(:checked) > label > svg {
    fill: #666; 
    transition: fill 0.3s ease;
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
    fill: #e58e09;
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    fill: #ff9e0b;
}

.rating > input:checked ~ label > svg {
    fill: #ffa723; 
}

.wrapper_icon {
    width: 150px;
    height: 30px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
    0% {
        top: 40px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
}

.circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.9);
    position: absolute;
    top: 40px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

/* 新版banner start */
/* Hero Section */
.catalog-hero {
    position: relative;
    min-height: clamp(400px, 34.5vw, 500px);
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 50%, #c5c5c5 100%);
    overflow: hidden;
}

.catalog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(400px, 34.5vw, 500px);
    /* background-image: url('https://picsum.photos/1920/765?1'); */
    background-image: url('https://picsum.photos/1920/765?2');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.catalog-hero-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(60px, 5vw, 80px) clamp(30px, 3vw, 40px);
    /* display: flex;
    align-items: center; */
}

.catalog-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: clamp(40px, 4vw, 60px);
}

/* Left Content */
.catalog-hero-left {
    flex: 0 0 45%;
    margin-left: 7%;
    /* max-width: clamp(450px, 38vw, 550px); */
    margin-top: 0%;
}

.catalog-hero-title {
    font-size: clamp(32px, 3vw, 40px) !important;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: clamp(18px, 1.7vw, 24px);
    text-align: left !important;
    margin: 0 !important;
    margin-bottom: clamp(18px, 1.7vw, 24px) !important;
}

.catalog-hero-subtitle {
    font-size: clamp(14px, 1vw, 16px) !important;
    color: #000000;
    line-height: 1.6;
    margin-bottom: clamp(24px, 2.2vw, 32px);
    max-width: clamp(350px, 29vw, 420px);
}

.catalog-hero-cta {
    display: inline-flex;
    background: #2C61AD;
    color: #fff;
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 600;
    width: clamp(240px, 19.5vw, 280px);
    height: clamp(40px, 3.3vw, 47px);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 8%;
    justify-content: center;
    align-items: center;
}

.catalog-hero-cta:hover {
    background: #1e4a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 97, 173, 0.3);
    text-decoration: none !important;
}

/* Trust Badge */
.catalog-trust-badge {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.1vw, 16px);
}

.catalog-stars {
    display: flex;
    gap: 4px;
}

.catalog-star {
    color: #ffc107;
    font-size: clamp(13px, 1vw, 16px);
}

.catalog-trust-text {
    font-size: clamp(13px, 19vw, 16px);
    color: #000000;
}

.catalog-trustpilot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(11px, 0.9vw, 13px);
    color: #00b67a;
    font-weight: 600;
}

.catalog-trustpilot-icon {
    width: clamp(16px, 1.25vw, 18px);
    height: clamp(16px, 1.25vw, 18px);
    background: #00b67a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-trustpilot-icon i {
    color: #fff;
    font-size: clamp(8px, 0.7vw, 10px);
}


/* Features Bar */
.catalog-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(7px, 0.5vw, 10px) 0;
    z-index: 10;
    background-color: #2c61ad;
}

.catalog-features-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
    padding: 0 clamp(30px, 3vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-feature-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.8vw, 12px);
}

.catalog-feature-icon {
    width: clamp(32px, 2.5vw, 36px);
    height: clamp(32px, 2.5vw, 36px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-feature-icon > svg > path {
    fill: #fff;
}

.catalog-feature-text {
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
/* 新版banner end */
