* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Serif", sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
}

.adm-glyphicon span {
  background: url("./img/setting.png");
  background-size: cover;
  width: 12px;
  height: 12px;
  display: block;
  float: left;
}

:root {
  --main-color: #019241;
  --main-2-color: #019241BF;

  --primary-color: #000000;
  --second-color: #ffffff;
  --third-color: #FF0000;
  --fourth-color: #F5F5F5F5;
  --fifth-color: #FFBA00;
  --sixth-color: #F5F5F5;
  --seventh-color: #8F96A6;
  --eighth-color: #000D44;

  --border-color: #E3E3E3;

  --text-color: #333333;
}

ul, li {
  list-style: none;
  margin: 0;
}

a {
  color: var(--primary-color);
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.wrap-img {
  display: block;
}

.img-100 {
  position: relative;
  height: 0;
  overflow: hidden;
  display: block;
}

.img-100 > img {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
}

img.lazy {
  display: block;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

button {
  border: none;
  border-radius: 0;
}

.adm-glyphicon span {
	background: url('./img/setting.png');
	background-size: cover;
	width: 12px;
	height: 12px;
	display: block;
    float: left;
}

.wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.bg-main {
  background-color: var(--main-color) !important;
}

/* -----------header-------------------- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 11px 0;
  background-color: transparent;
  z-index: 11;
}

.header.home {
  position: relative;
  background-color: var(--main-color);
}

.logo-header img {
  height: 68px;
  width: auto;
}

.header-container {
  float: right;
}

.header-menu {
  float: left;
  padding-top: 23px;
  margin-right: 70px;
}

.header-menu li {
  float: left;
  margin-bottom: 7px;
  margin-right: 38px;
}

.header-menu li:last-child {
  margin-right: 0;
}

.header-menu li a {
  font-weight: 800;
  color: var(--second-color);
  transition: all .2s linear;
}

.header-menu li a:hover {
  color: var(--third-color);
}

.header-container .btn-main {
  float: right;
}

.btn-main {
  box-shadow: 0px 4px 4px 0px #45151566;
  background-color: var(--third-color);
  color: var(--second-color);
  transition: all .2s linear;
  height: 56px;
  line-height: 56px;
  padding: 0 40px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px;
  color: var(--second-color);
  display: inline-block;
}

.btn-main:hover {
  opacity: .8;
}

.header-container .btn-main {
  height: 35px;
  padding: 0 18px;
  font-size: 16px;
  line-height: 35px;
  box-shadow: none;
  margin-top: 14px;
}

.btn-menu {
  display: none;
}

/* ---------------------------menu-mobile-------------------------------- */
.menu-mobile {
  position: fixed;
  width: 300px;
  padding: 20px 30px;
  top: 0;
  right: -100%;
  background-color: var(--main-color);
  z-index: 9999;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
}

.menu-mobile.active {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.close-menu {
  position: absolute;
  top: 10px;
  left: -45px;
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--second-color);
  cursor: pointer;
}

.close-menu svg {
  color: var(--text-color);
}

.menu-mobile .logo-mb {
  text-align: center;
  margin-bottom: 20px;
}

.menu-mobile .logo-mb img {
  width: 120px;
}

.menu-mobile .header-search-box {
  display: block !important;
  height: 40px;
  margin-bottom: 20px;
  position: relative;
}

.menu-mobile .cate-m {
  float: left;
  width: 100%;
}

.menu-mobile .menu-m-list {
  float: left;
  width: 100%;
}

.menu-mobile .menu-m-item a {
  padding: 5px 0;
  line-height: 26px;
  display: block;
  color: var(--second-color);
}

.backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(24, 24, 24, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------banner-------------------------------- */
.slider-btn {
  position: absolute;
  bottom: 29px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.slider-btn .btn-main:first-child {
  margin-right: 30px;
}

/* ----------------------------------introduction-------------------------------- */
.introduction {
  padding: 80px 0;
}

.intro-content {
  padding-left: 44px;
}

.intro-content .btn-main {
  margin-top: 37px;
}

.content span {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--third-color);
  display: inline-block;
  margin-bottom: 36px;
}

.content h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 28px;
}

.content p {
  color: var(--text-color);
}

.content li {
  list-style: disc;
  margin-bottom: 15px;
}

.content ul {
  padding-left: 20px;
}

/* ----------------------------------event-------------------------------- */
.event {
  position: relative;
  background-color: var(--main-2-color);
}

.event-content {
  padding-right: 20px;
  padding-top: 121px;
  color: var(--second-color);
  padding-bottom: 93px;
}

.event-content span {
  color: var(--second-color);
}

.event-img {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  width: 50%;
  bottom: 0;
}

.event-img img {
  height: 100%;
}

/* ----------------------------------home-news-------------------------------- */
.home-news {
  padding: 80px 0;
}

.home-news-title {
  text-align: center;
  margin-bottom: 15px;
}

.home-news-tab ul {
  text-align: center;
  margin-bottom: 45px;
}

.home-news-tab li {
  display: inline-block;
  margin-right: 30px;
}

.home-news-tab li a {
  font-weight: 700;
}

.home-news-tab li.active a {
  color: var(--third-color);
}

.home-news-tab li.last {
  margin-right: 0;
}

.home-news-tab li svg {
  margin-bottom: -4px;
  margin-right: 10px;
}

.news-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.news-item .wrap-img {
  padding-bottom: 100%;
}

.news-item .news-content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--main-2-color);
  padding: 28px 46px 28px 21px;
}

.news-item .news-content h3 {
  color: var(--second-color);
  transition: all .2s linear;
}

.news-item:hover h3 {
  color: var(--third-color);
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: var(--main-color) !important;
  margin-right: 10px !important;
  transition: all .2s linear;
}

.owl-dots button.active {
  width: 20px;
}

.owl-dots button:last-child {
  margin-right: 0;
}

.owl-dots button:hover {
  background-color: var(--third-color) !important;
}

/* ----------------------------------counter-------------------------------- */
.counter {
  background-color: var(--fourth-color);
  padding: 80px 0;
  color: var(--second-color);
}

.counter-wrap {
  text-align: center;
}

.counter-box {
  background-color: var(--main-color);
  padding: 30px 55px;
  display: inline-block;
}

.counter-top {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-item {
  display: inline-block;
  margin-right: 14px;
  width: 120px;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding-top: 12px;
  padding-bottom: 14px;
  border-radius: 10px;
}

.counter-item p {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 4px;
}

.counter-item span {
  font-weight: 600;
}

.counter-btn {
  padding-left: 44px;
  margin-left: 30px;
  border-left: 1px solid var(--main-color);
}

.counter-btn .btn-main {
  font-weight: 600;
  font-size: 16px;
  padding: 0 32px;
  background-color: #FF4500;
}

.counter-bottom {
  display: flex;
  justify-content: space-between;
}

.counter-bottom-item {
  padding: 0 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.counter-bottom-item span {
  font-weight: 600;
  font-size: 24px;
  line-height: 45px;
}

.counter-bottom-item svg {
  margin-right: 5px;
}

#counter .clearfix {
  display: none;
}

/* ----------------------------------schedule-------------------------------- */
.schedule {
  padding: 80px 0;
}

.schedule-title {
  text-align: center;
  margin-bottom: 30px;
}

.schedule-tab ul {
  text-align: center;
  margin-bottom: 30px;
}

.schedule-tab li {
  margin-right: 30px;
  width: 220px;
  padding-top: 12px;
  padding-bottom: 16px;
  padding-left: 17px;
  padding-right: 22px;
  background-color: var(--sixth-color);
  border-radius: 10px;
  display: inline-block;
}

.schedule-tab li:last-child {
  margin-right: 0;
}

.schedule-tab-item {
  display: flex;
  align-items: center;
}

.schedule-tab-item span {
  font-weight: 500;
  font-size: 45px;
  line-height: 25px;
  margin-right: 10px;
} 

.schedule-date {
  text-align: left;
}

.schedule-tab li.active {
  background-color: var(--third-color);
}

.schedule-tab li.active .schedule-tab-item {
  color: var(--second-color);
}

.schedule-table {
  max-width: 720px;
  margin: 0 auto;
}

.schedule-table table {
  width: 100%;
}

.schedule-table table>thead>tr>th {
  padding: 19px 41px 15px 41px;
  background-color: var(--main-color);
  color: var(--second-color);
}

.schedule-table table>thead>tr>th svg {
  margin-right: 11px;
  margin-bottom: -4px;
}

.schedule-table table>tbody>tr>td {
  padding: 19px 41px 15px 41px;
  font-weight: 700;
}

.schedule-table table>tbody>tr:nth-child(2n) {
  background-color: var(--sixth-color);
}

.schedule-btn {
  text-align: center;
  margin-top: 40px;
}

.schedule-btn .btn-main:first-child {
  margin-right: 30px;
}

/* ----------------------------------contact-------------------------------- */
.contact {
  background-color: var(--main-2-color);
  padding: 80px 0;
}

.contact-title {
  text-align: center;
  color: var(--second-color);
  margin-bottom: 30px;
}

.contact-form {
  max-width: 755px;
  margin: 0 auto;
}

.contact-form .form-group {
  display: flex;
  justify-content: space-between;
}

.contact-form .form-group input:first-child,
.contact-form .form-group select:first-child
{
  margin-right: 15px;
}

.contact-form .form-group input,
.contact-form .form-group select
{
  width: 50%;
  border: 1px solid var(--second-color);
  padding: 9px 17px;
  background-color: transparent;
  color: var(--second-color);
}

.contact-form .form-group input::placeholder {
  color: var(--second-color);
}

.contact-form .btn-contact {
  width: 100%;
  height: 43px;
  background-color: var(--third-color);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  color: var(--second-color);
  transition: all .2s linear;
  margin-bottom: 30px;
}

.contact-form .btn-contact:hover {
  opacity: .8;
}

.contact-form p {
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  color: var(--second-color);
}

.contact-tab ul {
  text-align: center;
  margin-bottom: 30px;
}

.contact-tab ul li {
  display: inline-block;
  margin-right: 30px;
  text-align: center;
  width: 220px;
}

.contact-tab ul li:last-child {
  margin-right: 0;
}

.contact-tab ul li a {
  display: block;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  background-color: var(--sixth-color);
  color: var(--seventh-color);
}

.contact-tab ul li.active a {
  background-color: var(--fifth-color);
  color: var(--second-color);
}

.btn-group-wrap {
  display: flex;
}

.btn-group-wrap button:first-child {
  margin-right: 15px;
}

.contact-tab p {
  text-align: center;
  color: var(--second-color);
}

/* ----------------------------------team-------------------------------- */
.team {
  padding: 80px 0;
}

.team-title {
  text-align: center;
  margin-bottom: 30px;
}

.team-item {
  padding: 15px;
  background-color: var(--sixth-color);
  border-radius: 10px;
  margin-bottom: 30px;
}

.team-title {
  text-align: center;
}

.team-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-title h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 8px;
}

.team-btn {
  text-align: center;
  margin-top: 30px;
}

/* ----------------------------------history-------------------------------- */
.history {
  padding: 80px 0;
  background-color: var(--sixth-color);
}

.history-title {
  text-align: center;
  margin-bottom: 30px;
}

.history .history-bg {
  position: relative;
}

.history .history-bg::before {
  content: "";
  z-index: -1;
  position: absolute;
  right: 45%;
  bottom: -120px;
  width: 45vw;
  height: 120%;
  background: var(--bg-color);
  clip-path: polygon(0 20%, 100% 0, 100% 75%, 0 100%);
}

.history .history-time {
  position: relative;
  margin: 20px 0;
  padding-left: 100px;
  cursor: pointer;
}

.history .history-time.slick-current .history-icon::before {
  opacity: 1;
}

.history .history-time.slick-current .history-content h3 {
  color: var(--color-hover);
}

.history .history-time.slick-current .history-btn {
  left: 20px;
  opacity: 1;
  visibility: visible;
}

.history .history-icon {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  border-radius: 50%;
  margin-right: 50px;
  border: 1px solid var(--text-color);
  float: left;
}

.history .history-icon::before {
  content: "";
  width: 138%;
  height: 138%;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid var(--third-color);
}

.history .history-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  width: 10px;
  height: 10px;
  background: var(--text-color);
  line-height: 10px;
  border-radius: 50%;
  text-align: center;
}

.history .history-content {
  float: left;
  width: calc(100% - 120px);
}

.history .history-content h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 25px;
}

.history .history-content p {
  font-weight: 400;
  margin-bottom: 0;
  width: 100%;
  min-height: 44px;
}

.history .history-btn {
  position: absolute;
  top: 19px;
  left: 45px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.history .history-btn svg {
  color: var(--third-color);
}

.history-wrap {
  display: flex;
}

.history img {
  height: 530px;
}

/* ----------------------------------partner-------------------------------- */
.partner {
  padding: 80px 0;
}

.partner-title {
  text-align: center;
  margin-bottom: 30px;
}

.partner-wrap {
  margin-bottom: 50px;
}

.partner-wrap h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.partner-btn {
  text-align: center;
}

/* ----------------------------------footer-------------------------------- */
.footer {
  background-color: var(--main-color);
  padding: 60px 0;
  color: var(--second-color);
}

.footer h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
}

.footer-item {
  margin-bottom: 30px;
}

.footer-item h3 {
  font-weight: 400;
  margin-bottom: 17px;
}

.footer-item img {
  max-width: 92px;
}

.socials li {
  display: inline-block;
  margin-right: 26px;
}

.socials li:last-child {
  margin-right: 0;
}

.socials a {
  transition: all .2s linear;
}

.socials a {
  color: var(--second-color);
}

.socials a:hover {
  color: var(--third-color);
}

.footer-info {
  margin-bottom: 20px;
}

.footer-info a {
  color: var(--second-color);
  transition: all .2s linear;
}

.footer-info a svg {
  margin-bottom: -4px;
  margin-right: 36px;
}

.footer-info a:hover {
  color: var(--third-color);
}

.footer-right img {
  width: auto;
  margin-bottom: 14px;
}

.footer-right h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 22px;
}

.footer-left,
.footer-center
{
  margin-bottom: 30px;
}

/* ----------------------------------banner-page-------------------------------- */
.banner-page {
  position: relative;
  min-height: 505px;
}

.banner-page::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--main-color);
  opacity: .7;
  z-index: 1;
}

.breadcrumb-page li {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

.breadcrumb-page li a {
  color: var(--second-color);
}

.breadcrumb-page li:not(:last-child)::after {
  content: url(./image/next.png);
  margin: 0 5px;
}

.banner-title {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: var(--second-color);
  z-index: 2;
}

.banner-title h1 {
  margin-bottom: 10px;
  font-weight: 700;
}

/* ----------------------------------news-detail-------------------------------- */
.news-detail {
  padding-top: 38px;
  padding-bottom: 38px;
}

.news-detail-img {
  margin-bottom: 36px;
}

#content h1 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 15px;
  line-height: 40px;
}

#content h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 34px;
}

#content h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
}

#content h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 24px;
}

#content h5 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 20px;
}

#content p {
  margin-bottom: 10px;
}

#content p,
#content li,
#content a
{
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--seventh-color);
}

#content ul li {
  list-style: disc;
}

#content a:hover {
  color: var(--third-color);
}

#content ol li {
  list-style: decimal;
}

#content ul {
  padding-left: 20px;
}

#content ol {
  
  padding-left: 20px;
}

#content img {
  margin: 20px 0;
  border-radius: 10px;
}

.news-contact {
  padding-top: 42px;
  border-top: 1px solid var(--border-color);
}

.news-phone {
  margin-left: 30px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.news-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border-radius: 100%;
  background-color: var(--main-color);
  color: var(--second-color);
  margin-right: 14px;
}

.news-phone-title {
  display: inline-block;
}

.news-phone-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--seventh-color);
  margin-bottom: 7px;
}

.news-phone-title span {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
}

.news-phone a:hover {
  color: var(--third-color);
}

.sidebar h3 {
  font-weight: 600;
  font-size: 20px;
  text-decoration: underline;
  margin-bottom: 30px;
}

.news-related .news-item {
  margin-bottom: 15px;
}

.news-related .news-item .news-content h3 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.news-related .news-item .wrap-img {
  padding-bottom: 59.31%;
}

.news-related .news-item .news-content {
  background-color: #33333380;
  padding: 10px;
}

.news-partner {
  margin-top: 30px;
}

.news-partner img {
  margin-bottom: 15px;
}

.news-speaker {
  margin-top: 40px;
}

.news-speaker h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.speaker-item {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  margin-bottom: 20px;
}

.speaker-avatar {
  border-radius: 100%;
  overflow: hidden;
  width: 168px;
  height: 168px;
  margin-right: 30px;
}

.speaker-wrap {
  width: calc(100% - 198px);
}

.speaker-info {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.speaker-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.speaker-info p,
.speaker-content p
{
  color: var(--seventh-color);
}

.speaker-content p {
  font-size: 14px;
}

/* ----------------------------------award-------------------------------- */
.award {
  padding: 80px 0;
}

.award-item {
  text-align: center;
}

.award-item span {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 30px;
  display: inline-block;
}

.award-item span.active {
  color: var(--fifth-color);
}

.award-item img {
  border-radius: 10px;
  margin-bottom: 24px;
}

.award-item h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
}

@media (max-width: 940px) {
  .counter-item {
    width: 100px;
  }

  .counter-box {
    padding: 30px;
  }

  .counter-btn {
    padding-left: 20px;
    margin-left: 20px;
  }

  .counter-bottom-item span {
    font-size: 18px;
  }
}


@media (max-width: 769px) {
  .header {
    padding: 0;
  }

  .logo-header {
    line-height: 60px;
  }

  .logo-header img {
    height: auto;
  }
  
  .header-container {
    display: none;
  }

  .btn-menu {
    display: block;
    float: right;
    line-height: 60px;
  }

  .btn-menu svg {
    margin-bottom: -7px;
    color: var(--second-color);
  }

  /* --------------------------------------slider------------------------- */
  .slider {
    min-height: 400px;
  }

  .slider img {
    min-height: 400px;
  }

  .btn-main {
    height: 32px;
    line-height: 32px;
    padding: 0 20px;
    font-size: 16px;
  }

  .slider-btn .btn-main:first-child {
    margin-right: 10px;
  }

  /* ----------------------------------introduction-------------------------------- */
  .intro-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .content span {
    margin-bottom: 20px;
  }

  .content h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  /* ----------------------------------event-------------------------------- */
  .event-content {
    padding-top: 80px;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .event-img {
    position: relative;
    width: 100%;
  }

  /* ----------------------------------home-news-------------------------------- */
  .home-news-tab ul {
    text-align: left;
  }

  .home-news-tab li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .home-news-tab li.last {
    margin-bottom: 0;
  }

  /* ----------------------------------counter-------------------------------- */
  .counter-item {
    margin-bottom: 14px;
  }

  .counter-item:last-child,
  .counter-item:nth-child(2)
  {
    margin-right: 0;
  }

  .counter-top,
  .counter-bottom,
  #counter .clearfix
  {
    display: block;
  }

  .counter-btn {
    padding-left: 0;
    margin-left: 0;
    border: none;
  }

  .counter-bottom-item {
    margin-bottom: 10px;
    padding: 12px 14px;
  }

  .counter-bottom-item span {
    line-height: 22px;
  }
  
  /* ----------------------------------schedule-------------------------------- */
  .schedule-tab li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .schedule-table table>thead>tr>th,
  .schedule-table table>tbody>tr>td
  {
    padding: 14px;
  }

  .schedule-btn {
    text-align: center;
  }
  
  .schedule-btn .btn-main:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }

  /* ----------------------------------history-------------------------------- */
  .slick-slider {
    margin-top: 30px;
  }

  .history .history-btn {
    display: none;
  }

  .history .history-time {
    padding-left: 0;
  }

  .history img {
    height: auto;
  }

  .history .history-icon {
    margin-right: 25px;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    margin-top: 10px;
  }

  .history .history-content {
    width: calc(100% - 75px);
  }

  /* ----------------------------------footer-------------------------------- */
  .footer {
    text-align: center;
  }

  /* ----------------------------------news-detail-------------------------------- */
  .news-phone {
    margin-left: 0;
    margin-top: 20px;
  }

  .speaker-item {
    display: block;
  }

  .speaker-wrap {
    width: 100%;
    margin-top: 20px;
  }
  
  .speaker-avatar {
    margin: 0 auto;
  }

  .partner-img img {
    margin-bottom: 15px;
  }

  .sidebar {
    margin-top: 30px;
  }
  
  /* ----------------------------------award-------------------------------- */
  .award-item {
    margin-bottom: 20px;
  }

  /* ----------------------------------contact-------------------------------- */
  .contact-tab ul li {
    margin-right: 0;
    margin-bottom: 20px;
  }

}

