/* 按钮样式 1*/
.btn_style_1{
        position: relative;
        background-color: rgba(35, 35, 35, 0.65);
        color: rgba(255, 255, 255, 0.9);
}
.btn_style_1 span{
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
        z-index: 2;
        transition: all .5s cubic-bezier(0.165,0.84,0.44,1);
}
.btn_style_1::after{
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0.05rem;
        background-color: rgb(199 142 102);
        z-index: 1;
        transition: all .5s cubic-bezier(0.165,0.84,0.44,1);
}
.btn_style_1:hover span{
        color: #fff;
}
.btn_style_1:hover::after{
        height: 100%;
}

/* 按钮样式 2*/
.btn_s1{
        position: relative;
}
.btn_s1::after {
    bottom: 0px;
    left: 0;
    height: 3px;
    position: absolute;
    content: '';
    transition: transform .55s cubic-bezier(0.165,0.84,0.44,1);
    transform: scaleX(0);
    transform-origin: right;
    background-color: #bf906c;
    width: 100%;
}
.btn_s1:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.btn_s1 .a_h1, .btn_s1 .a_h2{
        transform-origin: 0% 0%;
        transition: transform 0.3s;
}
.btn_s1:hover .a_h1{
        transform: translateY(-100%);
}
.btn_s1:hover .a_h2{
        transform: translateY(-100%);
}

/* 头部移入按钮 */
.hp_fb.active .btn_s1::after {
    transform: scaleX(1);
    transform-origin: left;
}
.hp_fb.active .btn_s1 .a_h1{
        transform: translateY(-100%);
}
.hp_fb.active .btn_s1 .a_h2{
        transform: translateY(-100%);
}


.btn_s2 circle{
        stroke: #bf906c;
        stroke-width: 1px;
        fill: none;
        stroke-dashoffset: 70;
        stroke-dasharray: 70;
        transition: all 0.8s;
}
.btn_s2:hover circle{
        stroke-dashoffset: 0;
}



/* button 4 */
.btn_4{
        position: relative;
        cursor: pointer;
        width: auto;
}
.btn_4_d{
        display: flex;
        align-items: center;
        position: relative;
}
.btn_4_d div{
        font-size: 0.16rem;
        line-height: 0.16rem;
        color: rgb(199 142 102);
}
.btn_4_i{
        position: absolute;
        right: -0.5rem;
        width: 0.3rem;
        margin-left: 0rem;
        overflow: hidden;
}
.btn_4_d img{
        width: 0.1rem;
        transition: left 1s, opacity 0.6s;
}
.btn_4_d img:nth-of-type(1){
        position: relative;
        left: 0.1rem;
        opacity: 1;
}
.btn_4_d img:nth-of-type(2){
        position: absolute;
        top: 0;
        left: -0.5rem;
        opacity: 0;
}
.btn_4:hover .btn_4_d img:nth-of-type(1){
        left: 0.5rem;
        opacity: 0;
}
.btn_4:hover .btn_4_d img:nth-of-type(2){
        left: 0.1rem;
        opacity: 1;
}
.btn_4_d::after{
        content: '';
        width: calc(100% + 0.4rem);
        height: 1px;
        background-color: rgb(199 142 102);
        bottom: -0.15rem;
        position: absolute;
}
.btn_4_d::before{
        content: '';
        width: 0%;
        height: 1px;
        background-color: rgb(199 142 102);
        bottom: -0.15rem;
        position: absolute;
}
.btn_4:hover .btn_4_d::after{
        width: 0%;
}
.btn_4:hover .btn_4_d::before{
        width: calc(100% + 0.4rem);
        transition: all 1s;
}

@media (max-width: 767px){
        .btn_style_1::after{
                height: 0.06rem;
        }
        .btn_style_1:hover::after{
                height: 0.06rem;
        }
}



/* 按钮样式 */
.HotspotPoint__point__3GEmahoi {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: scale(0);
  border: 1px solid transparent;
  transition: border 300ms; }
  .HotspotPoint__point__3GEmahoi:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    transition: transform 300ms, background 300ms;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid transparent; }
    .HotspotPoint__point__3GEmahoi:before {
      border-color: #fff; }

.HotspotPoint__hidden__2I1UO_ir {
  pointer-events: none; }
  .HotspotPoint__hidden__2I1UO_ir:before {
    transform: translate(-50%, -50%) scale(0); }

.HotspotPoint__opened__17jxY6X7 {
  border-color: #fff; }

.HotspotPoint__opened__17jxY6X7:before {
  transform: translate(-50%, -50%) scale(2); }
  
  .HotspotPoint__opened__17jxY6X7:before {
    background: #fff; }

.HotspotPoint__pulsing__1MVjgpDF:before {
  width: 22px;
  height: 22px; }

.HotspotPoint__pulsing__1MVjgpDF::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  margin-left: -13px;
  transform-origin: center;
  border-radius: 50%;
  box-sizing: border-box;
  animation: HotspotPoint__pulse__1erxfkPR 2s infinite;
  border: 2px solid #fff; }
  
  .HotspotPoint__pulsing__1MVjgpDF::after {
    color: #fff;
    border: 2px solid #fff; }

@keyframes HotspotPoint__pulse__1erxfkPR {
  0% {
    opacity: 0;
    border-width: 2px;
    transform: scale(0.5, 0.5);
    background-color: rgba(255,255,255,.8); }
  50% {
    opacity: 1;
    transform: scale(0.8, 0.8);
    border-width: 2px;
    background-color: rgba(255,255,255,.8); }
  100% {
    opacity: 0;
    border-width: 1px;
    background-color: rgba(255,255,255,.1);
    transform: scale(2.5, 2.5); } }
/* Brochure dropdown styles */
.brochure-wrap {
    position: relative;
    display: inline-flex !important;
}
.brochure-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 0.12rem;
    cursor: pointer;
    color: #fff;
}
.brochure-toggle img {
    width: 0.24rem !important;
    height: 0.24rem !important;
    display: inline-block !important;
    flex-shrink: 0;
    opacity: 0.9;
}
.brochure-toggle span {
    font-size: 0.18rem;
    color: #fff;
    font-family: 'GE-Hili', Montserrat-Bold;
    white-space: nowrap;
    letter-spacing: 0.01rem;
}
.brochure-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.08rem;
    min-width: 100%;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 0.12rem;
    overflow: visible;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.brochure-wrap:hover .brochure-dropdown,
.brochure-wrap.open .brochure-dropdown {
    display: block;
}
.brochure-dropdown a {
    display: block;
    padding: 0.14rem 0.3rem;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.16rem;
    font-family: 'GE-Hili', Montserrat-Regular;
    white-space: nowrap;
    transition: background 0.2s;
}
.brochure-dropdown a:hover {
    background: rgba(255,255,255,0.15);
}

