.loginPanel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 310px;
  height: 100%;
  max-height: 360px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
}
.loginPanel > * {
  width: 70%;
  height: 33px;
  margin-top: 28px;
}
.loginPanel > span {
  font-size: 12px;
  margin-top: 3px;
  color: #B69C9C;
}
.loginPanel .phoneNumber {
  padding-left: 5px;
  border: 1px solid #4F4F4F;
  border-radius: 3px;
}
.loginPanel .verCode {
  position: relative;
  margin-top: 8px;
}
.loginPanel .verCode input {
  width: 100%;
  height: 100%;
  padding-left: 5px;
  border: 1px solid #4F4F4F;
  border-radius: 3px;
}
.loginPanel .verCode button {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-1px);
  display: block;
  width: 41%;
  height: calc(100% - 2px);
  background-color: #EFEFEF;
  border: 0;
  border-left: 1px solid #4F4F4F;
  margin-top: 1px;
  cursor: pointer;
}
.loginPanel .verCode button:hover {
  color: #30318B;
}
.loginPanel .closeButton {
  width: 24px;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  align-self: flex-end;
  background-color: #EFEFEF;
  margin-right: 22px;
  text-align: center;
  border: 1px solid #4F4F4F;
  border-radius: 3px;
  margin-top: -30px;
  margin-bottom: 13px;
  cursor: pointer;
}
.loginPanel .loginSubmit {
  border: 1px solid #4F4F4F;
  border-radius: 3px;
  background-color: #EFEFEF;
  margin-top: 33px;
  cursor: pointer;
}
.loginPanel .loginSubmit:hover {
  color: #30318B;
}
.loginPanel .agreement {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  margin-top: 0;
}
.loginPanel .agreement input {
  cursor: pointer;
}
.loginPanel .agreement span {
  margin-left: 10px;
}
.loginPanel .agreement a {
  color: #0000EE;
}
.backgroundBlind {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
}
.noticeFrame {
  width: 500px;
  height: 300px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -250px;
  border: 1px solid #000;
  border-radius: 10px;
  box-shadow: 4px 4px 15px #bbb7b7;
  background-color: #fff;
}
.noticeFrame div {
  margin-top: 91px;
  font-weight: 500;
  font-size: 21px;
  color: red;
}
.noticeFrame button {
  width: 160px;
  height: 47px;
  margin-top: 21px;
  margin-right: 5px;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 100%;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .logo {
    display: none;
  }
  .nav {
    /* 头部导航 */
    display: none;
    width: 150px;
    position: absolute;
    z-index: 1;
    top: 38px;
    background-color: #fff;
  }
  .nav li {
    border-bottom: 1px solid;
  }
  .nav li:last-child {
    border-bottom: 0;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .nav:hover {
    display: block;
  }
  .cartSmall {
    width: 15%;
    height: 36px;
    line-height: 36px;
    text-align: center;
    float: left;
    margin: 0 1%;
    margin-top: 2px;
  }
  .cartSmall svg {
    width: 100%;
    height: 100%;
  }
  .cartTag {
    position: absolute;
    left: 28vw;
    top: -7px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .navButton {
    float: left;
    width: 18%;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
  }
  .navButton div {
    width: 80%;
    height: 29px;
    border-top: 4px solid #30318B;
    border-bottom: 4px solid #30318B;
    margin: 7px auto 0;
  }
  .navButton .navButtonCenter {
    width: 100%;
    height: 4px;
    background-color: #30318B;
    margin-top: 9px;
    border: 0;
  }
  .topSearch {
    float: right;
    width: 65%;
    height: 40px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 414px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    display: none;
  }
  .footDiv .footImgLi {
    display: block;
    width: 50%;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
    margin: 35px auto 0;
  }
  .footDiv .footImgLi img {
    width: 100%;
  }
  .copyRight {
    display: none;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
    margin-top: 50px;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
  }
}
@media screen and (min-width: 576px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 560px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 31px;
    margin: 5px auto;
  }
  .nav {
    /* 头部导航 */
    display: none;
    width: 150px;
    position: absolute;
    z-index: 1;
    top: 38px;
    background-color: #fff;
  }
  .nav li {
    border-bottom: 1px solid;
  }
  .nav li:last-child {
    border-bottom: 0;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .nav:hover {
    display: block;
  }
  .cartSmall {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    float: left;
    margin-top: 2px;
    margin-right: 14px;
  }
  .cartSmall svg {
    width: 100%;
    height: 100%;
  }
  .cartTag {
    position: absolute;
    left: 102px;
    top: -6px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .navButton {
    float: left;
    width: 10%;
    height: 40px;
    margin-right: 17px;
    border-radius: 4px;
    cursor: pointer;
  }
  .navButton div {
    width: 100%;
    height: 29px;
    border-top: 4px solid #30318B;
    border-bottom: 4px solid #30318B;
    margin: 7px auto 0;
  }
  .navButton .navButtonCenter {
    width: 100%;
    height: 4px;
    background-color: #30318B;
    margin-top: 9px;
    border: 0;
  }
  .topSearch {
    float: right;
    width: 225px;
    height: 40px;
    margin-left: 12px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 414px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    display: none;
  }
  .footDiv .footImgLi {
    display: block;
    margin: 36px auto 0 170px;
    width: 228px;
    height: 228px;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    display: none;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
    margin-top: 50px;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 750px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 36px;
    margin: 2px auto;
  }
  .cartSmall {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    float: left;
    margin-top: 2px;
    margin-right: 14px;
  }
  .cartSmall svg {
    width: 100%;
    height: 100%;
  }
  .cartTag {
    position: absolute;
    left: 125px;
    top: -6px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .nav {
    /* 头部导航 */
    display: none;
    width: 150px;
    position: absolute;
    z-index: 1;
    top: 38px;
    background-color: #fff;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .nav li {
    border-bottom: 1px solid;
  }
  .nav li:last-child {
    border-bottom: 0;
  }
  .nav:hover {
    display: block;
  }
  .navButton {
    float: left;
    width: 10%;
    height: 40px;
    margin-right: 21px;
    border-radius: 4px;
    cursor: pointer;
  }
  .navButton div {
    width: 100%;
    height: 29px;
    border-top: 4px solid #30318B;
    border-bottom: 4px solid #30318B;
    margin: 7px auto 0;
  }
  .navButton .navButtonCenter {
    width: 100%;
    height: 4px;
    background-color: #30318B;
    margin-top: 9px;
    border: 0;
  }
  .topSearch {
    float: right;
    width: 361px;
    height: 40px;
    margin-top: 2px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 367px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    display: unset;
    float: left;
    margin-right: 50px;
    margin-top: 35px;
  }
  .footDiv li a {
    display: block;
    color: #837a7a;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .footDiv li a:hover {
    color: #D82019;
  }
  .footDiv li .footTitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
  }
  .footDiv .footImgLi {
    float: right;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
    margin: 35px auto;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    display: block;
    margin: 50px 0 10px;
    color: #837a7a;
    text-align: center;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 960px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 40px;
    margin: 20px auto;
    position: relative;
  }
  .header .navButton {
    display: none;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 28px;
    margin: 6px auto;
  }
  .cartSmall {
    display: none;
  }
  .nav {
    /* 头部导航 */
    display: block;
    float: left;
    margin-left: 10px;
    position: unset;
    width: unset;
    top: unset;
    background-color: unset;
    z-index: unset;
  }
  .nav li {
    float: left;
    border-bottom: unset;
  }
  .nav a {
    display: block;
    height: 40px;
    padding: 0 12px;
    line-height: 40px;
    font-size: 16px;
    color: #050505;
  }
  .nav a svg {
    margin-top: 15px;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .cartTag {
    position: absolute;
    left: 681px;
    top: -2px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .topSearch {
    float: right;
    width: 157px;
    height: 40px;
  }
  .topSearch input {
    float: left;
    width: calc(100% - 36px);
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
    margin: 2px auto;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    margin: 2px auto;
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 367px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    float: left;
    margin-right: 70px;
    margin-top: 50px;
  }
  .footDiv li a {
    display: block;
    color: #837a7a;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .footDiv li a:hover {
    color: #D82019;
  }
  .footDiv li .footTitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
  }
  .footDiv .footImgLi {
    float: right;
    width: 120px;
    height: 120px;
    margin-right: 0;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    text-align: center;
    margin: 50px 0 10px;
    color: #837a7a;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  * {
    /* 去除所有内外边距 */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .w {
    /* 版心 */
    width: 1200px;
    margin: auto;
  }
  a {
    /* a标签的下划线去掉 */
    text-decoration: none;
  }
  input {
    /* input获得焦点时的边框去掉 */
    outline: none;
  }
  li {
    /* 去掉li前面的点 */
    list-style: none;
  }
  .footDiv ul::after {
    /* 伪元素清除浮动 */
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .header {
    /* 头部尺寸 */
    height: 50px;
    margin: 25px auto;
    position: relative;
  }
  .header .navButton {
    display: none;
  }
  .logo {
    float: left;
  }
  .logo img {
    height: 38px;
    margin: 5px auto;
  }
  .cartSmall {
    display: none;
  }
  .nav {
    /* 头部导航 */
    display: block;
    float: left;
    margin-left: 37px;
  }
  .nav li {
    float: left;
  }
  .nav a {
    display: block;
    height: 50px;
    padding: 0 15px;
    line-height: 50px;
    font-size: 16px;
    color: #050505;
  }
  .nav a svg {
    margin-top: 15px;
  }
  .nav a:hover {
    border-bottom: 2px solid #18073d;
    font-size: 18px;
  }
  .cartTag {
    position: absolute;
    left: 812px;
    top: 3px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-color: #30318B;
    color: white;
    text-align: center;
    font-size: 10px;
    border-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .topSearch {
    float: right;
    width: 247px;
    height: 50px;
  }
  .topSearch input {
    float: left;
    width: 200px;
    height: 36px;
    border: 1px solid #18073d;
    border-right: 0;
    font-size: 14px;
    padding-left: 10px;
    margin: 8px auto;
  }
  .topSearch button {
    float: left;
    width: 36px;
    height: 36px;
    border: 0;
    background: url(/images/searchButton.jpg);
    margin: 8px auto;
    cursor: pointer;
  }
  .footDiv {
    /* 底部div */
    height: 367px;
    width: 100%;
    border-top: 1px solid #D82019;
    background-color: #F1F4F9;
  }
  .footDiv li {
    float: left;
    margin-right: 80px;
    margin-top: 50px;
  }
  .footDiv li a {
    display: block;
    color: #837a7a;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .footDiv li a:hover {
    color: #D82019;
  }
  .footDiv li .footTitle {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
  }
  .footDiv .footImgLi {
    float: right;
    width: 120px;
    height: 120px;
    margin-right: 0;
    text-align: center;
    font-size: 14px;
    color: #837a7a;
  }
  .footDiv .footImgLi img {
    width: 100%;
    height: 100%;
  }
  .copyRight {
    text-align: center;
    margin: 50px 0 10px;
    color: #837a7a;
  }
  .ICP {
    display: block;
    color: #837a7a;
    text-align: center;
  }
  .ICP:hover {
    color: #D82019;
  }
  .startOnlineChatButton {
    /*在线客服按钮*/
    position: fixed;
    bottom: 50px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #30318B;
  }
  .startOnlineChatButton img {
    width: 100%;
    height: 100%;
  }
}
.pagePath {
  height: 35px;
  background-color: #ecebf0;
  margin-bottom: 20px;
}
.pagePath div {
  line-height: 35px;
  font-size: 14px;
}
.pagePath div a {
  color: #515152;
}
.titleDiv {
  /* 大标题 */
  margin: 35px auto;
}
.titleDiv h1 {
  /* 大标题中文 */
  font-size: 30px;
  font-weight: 300;
}
.titleDiv h2 {
  /* 大标题英文 */
  color: #D82019;
  font-size: 30px;
  font-weight: 700;
}
.imgDiv {
  float: left;
  width: 560px;
  height: 240px;
}
.imgDiv img {
  width: 100%;
  height: 100%;
}
.text {
  float: left;
  margin-left: 70px;
}
.main::after {
  /* 伪元素清除浮动 */
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.text p {
  margin-bottom: 18px;
  color: #929292;
  font-size: 14px;
}
.text .uTitle {
  color: #d82019;
  font-size: 24px;
}
.map {
  margin: 20px auto;
}
.map img {
  width: 100%;
}
@media screen and (max-width: 575px) {
  .pagePath {
    text-align: center;
    height: 45px;
  }
  .pagePath div {
    line-height: 45px;
    font-size: 18px;
  }
  .titleDiv {
    text-align: center;
  }
  .imgDiv {
    width: 100%;
  }
  .text {
    margin-left: unset;
  }
}
@media screen and (min-width: 576px) {
  .pagePath {
    text-align: center;
    height: 45px;
  }
  .pagePath div {
    line-height: 45px;
    font-size: 18px;
  }
  .titleDiv {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .pagePath {
    text-align: unset;
    height: 35px;
  }
  .pagePath div {
    line-height: 35px;
    font-size: 14px;
  }
  .titleDiv {
    text-align: unset;
  }
  .imgDiv {
    width: 360px;
    height: 240px;
  }
  .text {
    width: 360px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 992px) {
  .imgDiv {
    width: 465px;
    height: 240px;
  }
  .text {
    width: 465px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .imgDiv {
    width: 560px;
    height: 240px;
  }
  .text {
    width: unset;
    margin-left: 70px;
  }
}
/*# sourceMappingURL=contact.css.map */