@charset 'utf-8';
.Guangbo_msg_full_wrapper {
      width: 100%;
      background-color: #ffffff;
      padding: 60px 20px;
    }

    .Guangbo_msg_container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .Guangbo_msg_inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }

    /* 左侧联系信息 */
    .Guangbo_msg_left_list {
      display: flex;
      flex-direction: column;
      gap: 50px;
    }

    .Guangbo_msg_contact_item {
      display: flex;
      gap: 16px;
    }

    .Guangbo_msg_icon_circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #2b42a9;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .Guangbo_msg_icon_circle svg {
      width: 24px;
      height: 24px;
      fill: #ffffff;
    }

    .Guangbo_msg_contact_text h4 {
      font-size: 18px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 8px;
    }

    .Guangbo_msg_contact_text p {
      font-size: 16px;
      color: #444444;
      line-height: 1.6;
    }

    /* 右侧表单卡片 */
    .Guangbo_msg_form_card {
      background: #ffffff;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
      border-radius: 12px;
      padding: 40px;
    }

    .Guangbo_msg_form_card h2 {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 16px;
    }

    .Guangbo_msg_form_intro {
      font-size: 16px;
      color: #444444;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 32px;
    }

    .Guangbo_msg_form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .Guangbo_msg_form_two_col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .Guangbo_form_group label {
      display: block;
      font-size: 16px;
      color: #222222;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .Guangbo_form_group input {
      width: 100%;
      border: 1px solid #cccccc;
      border-radius: 6px;
      padding: 12px 14px;
      font-size: 15px;
      outline: none;
      transition: border-color 0.25s;
    }

    .Guangbo_form_group input:focus {
      border-color: #dd2727;
    }

    /* 多选checkbox */
    .Guangbo_checkbox_wrap label {
      font-weight: normal;
      display: inline-flex;
      align-items: center;
      gap:6px;
      margin-right:14px;
      margin-bottom:0;
    }

    /* 文本域 */
    .Guangbo_form_group textarea {
      width: 100%;
      min-height:120px;
      border:1px solid #cccccc;
      border-radius:6px;
      padding:12px 14px;
      font-size:15px;
      resize: vertical;
      outline: none;
      transition: border-color 0.25s;
    }
    .Guangbo_form_group textarea:focus {
      border-color:#dd2727;
    }

    /* 文件上传 */
    .Guangbo_file_input_wrap {
      font-size:15px;
      color:#333;
    }

    /* 红色提交按钮 */
    .Guangbo_msg_submit_btn {
      width:100%;
      background-color: #2b42a9;
      color:#ffffff;
      border:none;
      border-radius:6px;
      padding:14px;
      font-size:18px;
      font-weight:700;
      cursor:pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .Guangbo_msg_submit_btn:hover {
      background-color:#c01f1f;
      transform: translateY(-2px);
    }

    /* 平板 */
    @media screen and (max-width:1200px) {
      .Guangbo_msg_inner {
        grid-template-columns: 1fr;
      }
    }
    /* 手机 */
    @media screen and (max-width:640px) {
      .Guangbo_msg_form_two_col {
        grid-template-columns: 1fr;
      }
      .Guangbo_msg_form_card {
        padding:24px 20px;
      }
      .Guangbo_msg_form_card h2 {
        font-size:24px;
      }
      .Guangbo_msg_full_wrapper {
        padding:40px 16px;
      }
    }
	
	
	.FormTitle h2{font-weight: 600;font-size: 26px;text-align: center;margin-bottom: 35px;}
	.MTcontactFormText {font-size: 16px;}