﻿@charset "UTF-8";
/*--公共部分--*/
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	touch-callout: none;
	cursor: pointer;
}

.hidden-fields-container{ border:0px; display:none;}
.wpcf7-response-output{ border:0px;}
.wpcf7-textarea{
	border-left:0px;
	border-top:0px;
	border-right:0px;
	border-bottom:#000 solid 1px;
	width:100%;
	height:0.5rem;
}

.wpcf7-submit {
    display: flex;
    align-items: center;
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    font-size: .16rem;
    cursor: pointer;
    font-weight: bold;
    color: #000;
}

.labell {
    width: 100%;
    margin-bottom: .16rem;
	padding-left:0.35rem;
}

.labell p {
    font-size: .15rem;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
    padding-top: 0rem;
    color: #666666;
    text-align: left;
}

.labell p i{
	float:right;
	margin-right: 0.25rem;
}

.xinput {
    height: .45rem;
    border-radius: 0px;
    background: none;
    border: none;
    outline: none;
    padding-left: .2rem;
    font-size: .15rem;
    color: #666;
    border-bottom: #ccc solid 1px;
    width: 100%;
}

.submit {
    padding: 0.1rem 0.2rem;
    border-radius: 0px;
    cursor: pointer;
    background: none;
    font-size: .17rem;
    text-transform: uppercase;
    border: #666 solid 1px;
    color: #000;
    border-radius: 0.55rem;
	margin-left:0.35rem;
}
 .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .subscription-popup {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            width: 40%;
            max-width: 90%;
            animation: fadeIn 0.3s ease-out;
        }
        
        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .popup-title {
            font-size: 22px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
        }
        
        .close-btn:hover {
            color: #666;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #555;
        }
        
        .temail {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
			background-image: url('assets/images/emh.png');
			  background-repeat: no-repeat;
			  background-position: 10px center;
			  padding-left:40px;
        }
        
        .submit-btn {
            background-color: #000;
            color: white !important;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #000;
        }
        

        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }