/* 璁㈤槄妗� */
.subscribe-btn {
    position: fixed;
    right: 35px;
    top: 70%;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(24,88,233,1);
    border-radius:10px;
}
.subscribe-btn:hover {
    cursor: pointer;
}
.subscribe-btn:active {
    background: rgba(16,0,223,1);
}
.subscribe-btn__icon {
    position: relative;
    width: 32px;
    height: 24px;
    background: #ffffff;
}
.subscribe-btn__icon__dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(24,88,233,1);
    border-radius: 6px;
}
.subscribe-btn__icon__dot:nth-child(1) {
    left: 25%;
}
.subscribe-btn__icon__dot:nth-child(2) {
    left: 50%;
}
.subscribe-btn__icon__dot:nth-child(3) {
    left: 75%;
}
.subscribe-btn__icon:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%) rotateZ(45deg);
    bottom: 0;
    background: #ffffff;
    width: 8px;
    height: 8px;
}


.subscribe-window {
    opacity: 0;
    position: fixed;
    right: -450px;
    top: 70%;
    z-index: 99;
    height: max-content;
    background:rgba(255,255,255,1);
    border:1px solid rgba(212,212,212,1);
    border-radius:4px 0 0 4px;
}
.subscribe-window.show {
    opacity: 1;
    right: 135px;
    width: max-content;
}
.subscribe-window.show .subscribe-window__main__input {
    color:rgba(51,51,51,0);
}
.subscribe-window__text {
    position: relative;
    width: 100%;
    height: max-content;
    border-bottom: 1px solid rgba(212,212,212,1);
}
.subscribe-window__text label{
    position: relative;
    margin: 0 28px 0 60px;
    line-height: 50px;
    font-size:16px;
    font-weight:600;
    color:rgba(24,88,233,1);
}
.subscribe-window__text label:before {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-36%);
    content: url(../svg/subscribe.svg);
}
.subscribe-window__text:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%) rotateZ(45deg);
    content: "";
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-top: 1px solid rgba(212,212,212,1);
    border-right: 1px solid rgba(212,212,212,1);
}
.subscribe-window__main {
    width: 100%;
    padding: 10px 20px;
}
.subscribe-window__main input {
    width: 100%;
    height: 36px;
    outline: none;
    border-radius:4px;
}
input[name="email"] {
    margin-bottom: 10px;
    background:rgba(212,212,212,0.12);
    padding-left: 10px;
    border: 1px solid rgba(212,212,212,0);
}
input[name="email"]:hover,
input[name="email"]:focus {
    outline: none;
    border: 1px solid rgba(212,212,212,1);
}
input[name="submit"] {
    color: white;
    background: rgba(24,88,233,1);
    border: 1px solid rgba(24,88,233,1);
}
input[name="submit"]:hover {
    background: white;
    color: rgba(24,88,233,1);
}
input[name="submit"].res,
input[name="submit"].res:hover {
    color: white;
    background: rgba(194,194,194,1);
    border: 1px solid rgba(194,194,194,1);
}
.mobile .subscribe-window__text label{
    font-size: 24px;
    line-height: 60px;
}
.mobile .subscribe-window__text label:before {
    transform: translateY(-43%);
}
.mobile .subscribe-window__main {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile .subscribe-window__main input {
    margin: 10px auto;
    width: 330px;
    height: 42px;
    font-size: 24px;
    line-height: 42px;
    border-radius:4px;
}
.mobile .subscribe-result {
    width: 330px;
    font-size: 18px;
    height: 24px;
    line-height: 24px;
}