@charset "utf-8";
/* html5 css file, Peter Lubbers, Kaazing */

        .container {
            width: 94%;
            max-width: 400px;
           margin: 0 auto;
		   padding: 15px 0px;
           /* border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            padding: 20px;*/
        }



        .tip {
            background-color: #eef5ff;
            border-left: 4px solid #409eff;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        /* 小度语音图标样式 */
        .tip-icon {
            width: 20px;
            height: 24px;
            margin-right: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .tip-icon::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 14px;
            background: linear-gradient(45deg, #409eff, #69c0ff);
            border-radius: 5px 5px 0 0;
            bottom: 0;
        }
        
        .tip-icon::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 8px;
            background: linear-gradient(45deg, #409eff, #69c0ff);
            border-radius: 8px 8px 0 0;
            top: 0;
        }

        .tip-text {
            font-size: 14px;
            color: #606266;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            font-size: 16px;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #dcdfe6;
            border-radius: 4px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #59b595;
            box-shadow: 0 0 0 2px rgba(106, 90, 205, 0.2);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .required-asterisk {
            color: #ff4d4f;
            margin-left: 4px;
        }

        .error-message {
            color: #ff4d4f;
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }

        .success-message {
            color: #52c41a;
            font-size: 14px;
            margin-top: 10px;
            display: none;
        }

        .image-upload {
            display: flex;
            align-items: center;
        }

        .image-preview {
            width: 60px;
            height: 60px;
            margin-right: 10px;
            border: 1px solid #dcdfe6;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .image-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .remove-image {
            position: absolute;
            top: 0px;
            right: 0px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #333;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 10px;
            opacity: 1; /* 始终显示删除按钮 */
            box-shadow: 0 0 4px rgba(0,0,0,0.3);
            transition: transform 0.2s;
            z-index: 10; /* 确保在图片上方 */
        }

        .remove-image:hover {
            transform: scale(1.1); /* 悬停时略微放大 */
        }

        .add-image {
            width: 60px;
            height: 60px;
            border: 1px dashed #dcdfe6;
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #909399;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s;
        }

        .add-image:hover {
            border-color: #59b595;
            color: #59b595;
        }

        .submit-btn {
           /* width: 100%;
            padding: 6px;
            background-color: #66ba9d;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            box-shadow: 0 4px 6px rgba(106, 90, 205, 0.1);*/
			width: 100%;
			padding: 14px 0;
			background-color: #6dbda1;
			color: white;
			border: none;
			border-radius: var(--border-radius);
			font-size: 16px;
			font-weight: 500;
			cursor: pointer;
			transition: all var(--transition-time);
			display: flex;
			justify-content: center;
			align-items: center;
			    border-radius: 5px;
        }

        .submit-btn:hover {
            background-color: #6dbda1;
            box-shadow: 0 4px 6px rgba(72, 61, 139, 0.2);
        }

        .submit-btn:active {
            transform: translateY(1px);
        }

        /* 自定义上传按钮 */
        .custom-file-input {
            display: none;
        }
		   /* 悬浮咨询按钮样式 */
    .floating-consult-btn {
      position: fixed;
      bottom: 10%;
      right: 10px;
      z-index: 20;
      animation: float 3s ease-in-out infinite;
    }

    .floating-consult-btn a {
      display: block;
    }

    .floating-consult-btn img {
      width: 180px;
      height: auto;
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .floating-consult-btn img:hover {
      transform: scale(1.05);
    }
.policy-type-taba{
	    background-color: #fff;
		color:#333;
}