body{
    background-color: #ffffff;
}
.container-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: clamp(50px, 10vw, 150px);
    flex-wrap: wrap;
    max-width: 1120px;
    margin: 0 auto;
    padding:0 16px;
}

/* Logo styles */
.head-box{
    width: 86%;
    margin: 0 auto;
    padding: 42px 0;
}

/* Try Free Card styles */
.try-free-card {
    background-color: white;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.try-free-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.signup-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 13px;
    color: #7B7B7B;
}

.signup-btn:hover {
    background-color: #e0e0e0;
}

.signup-btn-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
}

.or-text {
    font-size: 12px;
    text-align: center;
    margin: 20px 0;
    color: #666;
}

.email-input, .password-input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-bottom: 15px;
    outline: none;
    font-size: 16px;
}
.input-error{
    border-color: #ff4d4f;
}

/* 勾选框样式 */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.custom-checkbox input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    outline: none;
    transition: border-color 0.3s;
}

.custom-checkbox input:checked {
    border-color: #2962ff;
    background-color: #2962ff;
}

.custom-checkbox input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

/* 文字样式 */
.terms-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.terms-text a {
    color: #2962ff;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

.signup-button {
    font-size: 20px;
    color: #757575;
    width: 100%;
    padding: 8px 20px;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}
.signup-button.el-button.is-disabled{
    background-color: #f0f0f0;
}
.signup-button.active-button{
    color: #ffffff;
    background-color: #2962ff;
}

.active-button:hover {
    color: #ffffff;
    background-color: #2962ff;
}

.login-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: #2962ff;
    text-decoration: underline;
}

/* Testimonial styles */
.testimonial-section {
    width: 100%;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin: 0 32px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
}

.author-company {
    font-size: 14px;
    color: #666;
}

.testimonial-stars {
    color: #ffc107;
    margin-left: 10px;
}

.testimonial-container {
    position: relative;
    width: 100%;
}

.testimonial-title {
    font-size: 18px;
    margin: 24px 0;
    text-indent: 1rem;
}

.testimonial-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Partner logos */
.partner-logos {
    margin-top: 20px;
    width: 100%;
}
.partner-logos img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.el-carousel__item.is-animating{
    display: flex;
    align-items: center;
}