/* 产品详情页专用样式 */

/* 产品详情 */
.product-details {
    padding: 15px 20px;
    background-color: #fff;
    margin-bottom: 10px;
}

.product-details p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 8px 0;
    font-weight: normal;
}

.product-details span {
    font-weight: normal;
}

.product-details span.product-details-1 {
    color: #01427a !important;
    font-weight: normal;
}

/* 产品描述区域 */
.same {
    padding: 15px 20px;
    background-color: #fff;
    margin-bottom: 10px;
}

.same h2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    padding-left: 10px;
    border-left: 4px solid #004a8f;
}

.same div {
    background-color: #fff;
    padding: 10px 0;
}

.same p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* 按钮区域 */
.button {
    padding: 30px 20px 20px;
    text-align: center;
    background-color: transparent;
}

.button input[type="button"] {
    width: 100%;
    max-width: 600px;
    padding: 15px 0;
    background: linear-gradient(to bottom, #5dade2, #3498db);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.button input[type="button"]:hover {
    background: linear-gradient(to bottom, #6eb6e5, #4ca3e0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.button input[type="button"]:active {
    background: linear-gradient(to bottom, #3498db, #2980b9);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

/* 按钮区域的版权信息 */
.button div {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* 响应式设计 */
@media screen and (max-width: 640px) {
    #vm {
        width: 100%;
    }
    
    .logo2xnew {
        padding: 20px 15px;
    }
    
    .logo2xnew img {
        max-width: 80%;
    }
    
    .product-details,
    .same,
    .button {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .headTitle h1 {
        font-size: 16px;
    }
    
    .logo2xnew img {
        max-width: 90%;
    }
    
    .product-details p,
    .same p {
        font-size: 13px;
    }
}

